/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19-11.4.9-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: activ8commerce_wp174
-- ------------------------------------------------------
-- Server version	11.4.9-MariaDB

/*!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 utf8mb4 */;
/*!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' */;
/*M!100616 SET @OLD_NOTE_VERBOSITY=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */;

--
-- Table structure for table `wpqk_actionscheduler_actions`
--

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

--
-- Dumping data for table `wpqk_actionscheduler_actions`
--

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

--
-- Table structure for table `wpqk_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wpqk_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_actionscheduler_claims`
--

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

--
-- Table structure for table `wpqk_actionscheduler_groups`
--

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

LOCK TABLES `wpqk_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wpqk_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wpqk_actionscheduler_groups` VALUES
(1,'action-scheduler-migration');
/*!40000 ALTER TABLE `wpqk_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_actionscheduler_logs`
--

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

--
-- Dumping data for table `wpqk_actionscheduler_logs`
--

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

--
-- Table structure for table `wpqk_commentmeta`
--

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

--
-- Dumping data for table `wpqk_commentmeta`
--

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

--
-- Table structure for table `wpqk_comments`
--

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

--
-- Dumping data for table `wpqk_comments`
--

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

--
-- Table structure for table `wpqk_itsec_lockouts`
--

DROP TABLE IF EXISTS `wpqk_itsec_lockouts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_itsec_lockouts` (
  `lockout_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `lockout_type` varchar(20) NOT NULL,
  `lockout_start` datetime NOT NULL,
  `lockout_start_gmt` datetime NOT NULL,
  `lockout_expire` datetime NOT NULL,
  `lockout_expire_gmt` datetime NOT NULL,
  `lockout_host` varchar(20) DEFAULT NULL,
  `lockout_user` bigint(20) unsigned DEFAULT NULL,
  `lockout_username` varchar(20) DEFAULT NULL,
  `lockout_active` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`lockout_id`),
  KEY `lockout_expire_gmt` (`lockout_expire_gmt`),
  KEY `lockout_host` (`lockout_host`),
  KEY `lockout_user` (`lockout_user`),
  KEY `lockout_username` (`lockout_username`),
  KEY `lockout_active` (`lockout_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_itsec_lockouts`
--

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

--
-- Table structure for table `wpqk_itsec_log`
--

DROP TABLE IF EXISTS `wpqk_itsec_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_itsec_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `log_type` varchar(20) NOT NULL DEFAULT '',
  `log_function` varchar(255) NOT NULL DEFAULT '',
  `log_priority` int(11) NOT NULL DEFAULT 1,
  `log_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_host` varchar(20) DEFAULT NULL,
  `log_username` varchar(20) DEFAULT NULL,
  `log_user` bigint(20) unsigned DEFAULT NULL,
  `log_url` varchar(255) DEFAULT NULL,
  `log_referrer` varchar(255) DEFAULT NULL,
  `log_data` longtext NOT NULL,
  PRIMARY KEY (`log_id`),
  KEY `log_type` (`log_type`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_itsec_log`
--

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

--
-- Table structure for table `wpqk_itsec_temp`
--

DROP TABLE IF EXISTS `wpqk_itsec_temp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_itsec_temp` (
  `temp_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `temp_type` varchar(20) NOT NULL,
  `temp_date` datetime NOT NULL,
  `temp_date_gmt` datetime NOT NULL,
  `temp_host` varchar(20) DEFAULT NULL,
  `temp_user` bigint(20) unsigned DEFAULT NULL,
  `temp_username` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`temp_id`),
  KEY `temp_date_gmt` (`temp_date_gmt`),
  KEY `temp_host` (`temp_host`),
  KEY `temp_user` (`temp_user`),
  KEY `temp_username` (`temp_username`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_itsec_temp`
--

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

--
-- Table structure for table `wpqk_links`
--

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

--
-- Dumping data for table `wpqk_links`
--

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

--
-- Table structure for table `wpqk_nextend2_image_storage`
--

DROP TABLE IF EXISTS `wpqk_nextend2_image_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_nextend2_image_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hash` varchar(32) NOT NULL,
  `image` text NOT NULL,
  `value` mediumtext NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_nextend2_image_storage`
--

LOCK TABLES `wpqk_nextend2_image_storage` WRITE;
/*!40000 ALTER TABLE `wpqk_nextend2_image_storage` DISABLE KEYS */;
INSERT INTO `wpqk_nextend2_image_storage` VALUES
(1,'a2085ea74c9b5a46452c6c696887469c','$upload$/2017/08/marketing_2.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),
(2,'7148fa26ad6dd9ee953b6c3f5f30c99d','https://smartslider3.com/sample/programmer.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),
(3,'6681af77aa8c9f342a3f8a98939dca43','https://smartslider3.com/sample/free1.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),
(4,'2ebcc61fcb32c829e4927fbfd782ff7a','https://smartslider3.com/sample/photographer.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),
(5,'fb6398a3282d8443eb0c95eb597f98ab','$upload$/2017/08/emailtracking.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),
(6,'d41d8cd98f00b204e9800998ecf8427e','','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),
(7,'8e4dd06c6f80831955074bdd527c36b5','$upload$/2017/01/DataMining_6.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),
(8,'2562298eac482fc7eb38bff1f2c0dc3f','$upload$/2017/10/Tutorial_1.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ==');
/*!40000 ALTER TABLE `wpqk_nextend2_image_storage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_nextend2_section_storage`
--

DROP TABLE IF EXISTS `wpqk_nextend2_section_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_nextend2_section_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `application` varchar(20) NOT NULL,
  `section` varchar(128) NOT NULL,
  `referencekey` varchar(128) NOT NULL,
  `value` mediumtext NOT NULL,
  `system` int(11) NOT NULL DEFAULT 0,
  `editable` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `application` (`application`,`section`,`referencekey`),
  KEY `application_2` (`application`,`section`)
) ENGINE=InnoDB AUTO_INCREMENT=15863 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_nextend2_section_storage`
--

LOCK TABLES `wpqk_nextend2_section_storage` WRITE;
/*!40000 ALTER TABLE `wpqk_nextend2_section_storage` DISABLE KEYS */;
INSERT INTO `wpqk_nextend2_section_storage` VALUES
(10000,'system','global','n2_ss3_version','3.3.11r2910',1,1),
(10001,'smartslider','tutorial','free','1',0,1),
(10002,'smartslider','sliderChanged','2','1',0,1),
(10003,'smartslider','update','version','3.5.1.30',0,1),
(10004,'smartslider','update','lastcheck','1762725579',0,1),
(10005,'smartslider','tutorial','hideContentMode','1',0,1),
(10006,'smartslider','license','key','x+t9I4BNW9NAp9Xqt/hbMJ08EZ3FySFMAi52WsMNf+Y=',0,1),
(10007,'smartslider','license','isActive','0',0,1),
(10008,'smartslider','sliderChanged','3','0',0,1),
(10009,'smartslider','sliderChanged','4','0',0,1),
(10010,'smartslider','sliderChanged','5','1',0,1),
(15851,'cache','notweb/n2-ss-4','data.manifest','{\"generator\":[]}',0,1),
(15852,'cache','notweb/n2-ss-4','variations.manifest','1',0,1),
(15853,'cache','notweb/n2-ss-4','slideren_US1.manifest','{\"hash\":\"\",\"nextCacheRefresh\":1821660357,\"currentPath\":\"77e8adf5c51c0d58957373da92023181\",\"version\":\"3.3.11\"}',0,1),
(15854,'cache','notweb/n2-ss-4','slideren_US1','{\"html\":\"<div class=\\\"n2-section-smartslider\\\"><style>div#n2-ss-4{width:1200px;float:left;margin:0px 0px 0px 0px;}html[dir=\\\"rtl\\\"] div#n2-ss-4{float:right;}div#n2-ss-4 .n2-ss-slider-1{position:relative;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;height:500px;border-style:solid;border-width:0px;border-color:#3e3e3e;border-color:RGBA(62,62,62,1);border-radius:0px;background-clip:padding-box;background-repeat:repeat;background-position:50% 50%;background-size:cover;background-attachment:scroll;}div#n2-ss-4 .n2-ss-slider-background-video-container{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;}div#n2-ss-4 .n2-ss-slider-2{position:relative;width:100%;height:100%;}.x-firefox div#n2-ss-4 .n2-ss-slider-2{opacity:0.99999;}div#n2-ss-4 .n2-ss-slider-3{position:relative;width:100%;height:100%;overflow:hidden;outline:1px solid rgba(0,0,0,0);z-index:10;}div#n2-ss-4 .n2-ss-slide-backgrounds,div#n2-ss-4 .n2-ss-slider-3 > .n-particles-js-canvas-el,div#n2-ss-4 .n2-ss-slider-3 > .n2-ss-divider{position:absolute;left:0;top:0;width:100%;height:100%;}div#n2-ss-4 .n2-ss-slide-backgrounds{z-index:10;}div#n2-ss-4 .n2-ss-slider-3 > .n-particles-js-canvas-el{z-index:12;}div#n2-ss-4 .n2-ss-slide-backgrounds > *{overflow:hidden;}div#n2-ss-4 .n2-ss-slide{position:absolute;top:0;left:0;width:100%;height:100%;z-index:20;display:block;-webkit-backface-visibility:hidden;}div#n2-ss-4 .n2-ss-layers-container{position:relative;width:1200px;height:500px;}div#n2-ss-4 .n2-ss-parallax-clip > .n2-ss-layers-container{position:absolute;right:0;}div#n2-ss-4 .n2-ss-slide{-webkit-perspective:1000px;perspective:1000px;}div#n2-ss-4[data-ie] .n2-ss-slide{-webkit-perspective:none;perspective:none;-webkit-transform:perspective(1000px);transform:perspective(1000px);}div#n2-ss-4 .n2-ss-slide-active{z-index:21;}div#n2-ss-4 .nextend-arrow{cursor:pointer;overflow:hidden;line-height:0 !important;z-index:20;}div#n2-ss-4 .nextend-arrow img{position:relative;min-height:0;min-width:0;vertical-align:top;width:auto;height:auto;max-width:100%;max-height:100%;display:inline;}div#n2-ss-4 .nextend-arrow img.n2-arrow-hover-img{display:none;}div#n2-ss-4 .nextend-arrow:HOVER img.n2-arrow-hover-img{display:inline;}div#n2-ss-4 .nextend-arrow:HOVER img.n2-arrow-normal-img{display:none;}div#n2-ss-4 .nextend-arrow-animated{overflow:hidden;}div#n2-ss-4 .nextend-arrow-animated > div{position:relative;}div#n2-ss-4 .nextend-arrow-animated .n2-active{position:absolute;}div#n2-ss-4 .nextend-arrow-animated-fade{transition:background 0.3s, opacity 0.4s;}div#n2-ss-4 .nextend-arrow-animated-horizontal > div{transition:all 0.4s;left:0;}div#n2-ss-4 .nextend-arrow-animated-horizontal .n2-active{top:0;}div#n2-ss-4 .nextend-arrow-previous.nextend-arrow-animated-horizontal:HOVER > div,div#n2-ss-4 .nextend-arrow-next.nextend-arrow-animated-horizontal .n2-active{left:-100%;}div#n2-ss-4 .nextend-arrow-previous.nextend-arrow-animated-horizontal .n2-active,div#n2-ss-4 .nextend-arrow-next.nextend-arrow-animated-horizontal:HOVER > div{left:100%;}div#n2-ss-4 .nextend-arrow.nextend-arrow-animated-horizontal:HOVER .n2-active{left:0;}div#n2-ss-4 .nextend-arrow-animated-vertical > div{transition:all 0.4s;top:0;}div#n2-ss-4 .nextend-arrow-animated-vertical .n2-active{left:0;}div#n2-ss-4 .nextend-arrow-animated-vertical .n2-active{top:-100%;}div#n2-ss-4 .nextend-arrow-animated-vertical:HOVER > div{top:100%;}div#n2-ss-4 .nextend-arrow-animated-vertical:HOVER .n2-active{top:0;}div#n2-ss-4 .n2-style-82a9512fb86c6205f14b532f1f7e161a-heading{background: #ffffff;background: RGBA(255,255,255,0);opacity:0.65;padding:0px 0px 0px 0px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-4 .n2-ss-layer .n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph{font-family: \'Roboto\',\'Arial\';color: #cccccc;color: RGBA(204,204,204,0.8);font-size:218.75%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-aaa538665ee274252e790b3abe9631cd-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:218.75%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-aaa538665ee274252e790b3abe9631cd-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-aaa538665ee274252e790b3abe9631cd-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-aaa538665ee274252e790b3abe9631cd-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-aaa538665ee274252e790b3abe9631cd-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-a22f55580eff495af4ff87d427b0183c-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:468.75%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-ss-layer .n2-font-a22f55580eff495af4ff87d427b0183c-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-a22f55580eff495af4ff87d427b0183c-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-ss-layer .n2-font-a22f55580eff495af4ff87d427b0183c-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-a22f55580eff495af4ff87d427b0183c-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-ss-layer .n2-font-bf772db0695b101d028fe63191841115-paragraph{font-family: \'Roboto\',\'Arial\';color: #cccccc;color: RGBA(204,204,204,0.8);font-size:281.25%;text-shadow: none;line-height: 1.1;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-bf772db0695b101d028fe63191841115-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-bf772db0695b101d028fe63191841115-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.1;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-bf772db0695b101d028fe63191841115-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-bf772db0695b101d028fe63191841115-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.1;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-79346dcc3bb9204103978e8ad0b413af-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;font-size:112.5%;text-shadow: none;line-height: 1.1;font-weight: normal;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;}div#n2-ss-4 .n2-ss-layer .n2-font-79346dcc3bb9204103978e8ad0b413af-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-79346dcc3bb9204103978e8ad0b413af-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.1;font-weight: normal;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;}div#n2-ss-4 .n2-ss-layer .n2-font-79346dcc3bb9204103978e8ad0b413af-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-79346dcc3bb9204103978e8ad0b413af-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.1;font-weight: normal;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;}div#n2-ss-4 .n2-ss-layer .n2-font-371f54ea735080eca4174e069a1c2c5e-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:112.5%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-371f54ea735080eca4174e069a1c2c5e-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-371f54ea735080eca4174e069a1c2c5e-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-371f54ea735080eca4174e069a1c2c5e-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-371f54ea735080eca4174e069a1c2c5e-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-4 .n2-style-fa294a30fc9e8c6d52000d13186254d0-heading{background: #e79d19;opacity:1;padding:5px 0px 5px 0px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #ffffff; border-color: RGBA(255,255,255,0.8);border-radius:0px;}div#n2-ss-4 .n2-ss-layer .n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:112.5%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading{background: #ffffff;background: RGBA(255,255,255,0);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #ffffff; border-color: RGBA(255,255,255,0.8);border-radius:0px;}div#n2-ss-4 .n2-ss-layer .n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;font-size:112.5%;text-shadow: none;line-height: 1.2;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;}div#n2-ss-4 .n2-ss-layer .n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.2;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;}div#n2-ss-4 .n2-ss-layer .n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.2;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;}div#n2-ss-4 .n2-style-b6f7cf9d7291662b4a2cb09f3e85cdd5-heading{background: #e79d19;background: RGBA(231,157,25,0.45);opacity:1;padding:10px 10px 10px 10px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-4 .n2-style-47bdfeb244ee0fc0db406fb528d2fe37-heading{background: #20b35e;opacity:1;padding:5px 0px 5px 0px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #ffffff; border-color: RGBA(255,255,255,0.8);border-radius:0px;}div#n2-ss-4 .n2-style-93744dff55ea894bfa28bf45d1fedff8-heading{background: #27ae60;background: RGBA(39,174,96,0.41);opacity:1;padding:10px 10px 10px 10px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-4 .n2-ss-layer .n2-font-d6a21ccea731fbc890d1e4e08cc655f4-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:112.5%;text-shadow: none;line-height: 1.2;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-d6a21ccea731fbc890d1e4e08cc655f4-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-d6a21ccea731fbc890d1e4e08cc655f4-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.2;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-d6a21ccea731fbc890d1e4e08cc655f4-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-d6a21ccea731fbc890d1e4e08cc655f4-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.2;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-717fcb3837fb0b14caa18f41004e31f5-paragraph{font-family: \'Roboto\',\'Arial\';color: #cccccc;color: RGBA(204,204,204,0.8);font-size:281.25%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-ss-layer .n2-font-717fcb3837fb0b14caa18f41004e31f5-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-717fcb3837fb0b14caa18f41004e31f5-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-ss-layer .n2-font-717fcb3837fb0b14caa18f41004e31f5-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-717fcb3837fb0b14caa18f41004e31f5-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-ss-layer .n2-font-85aaea45c6d24b430a1472754cfa98e6-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:156.25%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-ss-layer .n2-font-85aaea45c6d24b430a1472754cfa98e6-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-85aaea45c6d24b430a1472754cfa98e6-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-ss-layer .n2-font-85aaea45c6d24b430a1472754cfa98e6-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-85aaea45c6d24b430a1472754cfa98e6-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-4 .n2-ss-layer .n2-font-d53c673ec989514253849c75b72270f5-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:112.5%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-d53c673ec989514253849c75b72270f5-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-d53c673ec989514253849c75b72270f5-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-d53c673ec989514253849c75b72270f5-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-d53c673ec989514253849c75b72270f5-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-bfd7ab4b5d6cf3a263b470c7021c6e3c-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:218.75%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-bfd7ab4b5d6cf3a263b470c7021c6e3c-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-bfd7ab4b5d6cf3a263b470c7021c6e3c-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-bfd7ab4b5d6cf3a263b470c7021c6e3c-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-bfd7ab4b5d6cf3a263b470c7021c6e3c-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-style-39c76ad5c6965ed422b963e4c0dfee48-heading{background: #0a6932;opacity:0.9;padding:0px 0px 0px 0px ;box-shadow: 0px 10px 15px 0px RGBA(0,0,0,1);border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:99px;}div#n2-ss-4 .n2-ss-layer .n2-font-cc960b45f09947e32335289a92871bfb-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:156.25%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-cc960b45f09947e32335289a92871bfb-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-cc960b45f09947e32335289a92871bfb-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-cc960b45f09947e32335289a92871bfb-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-cc960b45f09947e32335289a92871bfb-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-477348220b80d830f5d54f6d63d57ee8-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:218.75%;text-shadow: none;line-height: 1.0;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-477348220b80d830f5d54f6d63d57ee8-paragraph a, div#n2-ss-4 .n2-ss-layer .n2-font-477348220b80d830f5d54f6d63d57ee8-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.0;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-ss-layer .n2-font-477348220b80d830f5d54f6d63d57ee8-paragraph a:HOVER, div#n2-ss-4 .n2-ss-layer .n2-font-477348220b80d830f5d54f6d63d57ee8-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.0;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-4 .n2-style-417b58e4161d3a823f75085d9ae7a8d4-heading{background: #ffffff;background: RGBA(255,255,255,0);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:0px;}<\\/style><div id=\\\"n2-ss-4-align\\\" class=\\\"n2-ss-align\\\"><div class=\\\"n2-padding\\\"><div id=\\\"n2-ss-4\\\" data-creator=\\\"Smart Slider 3\\\" class=\\\"n2-ss-slider n2-ow n2-has-hover n2notransition n2-ss-load-fade \\\" data-minFontSizedesktopPortrait=\\\"1\\\" data-minFontSizedesktopLandscape=\\\"1\\\" data-minFontSizetabletPortrait=\\\"1\\\" data-minFontSizetabletLandscape=\\\"1\\\" data-minFontSizemobilePortrait=\\\"1\\\" data-minFontSizemobileLandscape=\\\"1\\\" style=\\\"font-size: 16px;\\\" data-fontsize=\\\"16\\\">\\r\\n        <div class=\\\"n2-ss-slider-1 n2-ss-swipe-element n2-ow\\\" style=\\\"background-image: URL(\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/01\\/DataMining_6.png);\\\">\\r\\n                        <div class=\\\"n2-ss-slider-2 n2-ow\\\">\\r\\n                                <div class=\\\"n2-ss-slider-3 n2-ow\\\" style=\\\"\\\">\\r\\n\\r\\n                    <div class=\\\"n2-ss-slide-backgrounds\\\"><\\/div><div data-first=\\\"1\\\" data-slide-duration=\\\"10\\\" data-id=\\\"16\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-16\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-68px;top:46px;width:330px;height:365px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-68\\\" data-desktopportraittop=\\\"46\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"330\\\" data-desktopportraitheight=\\\"365\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkRvd25zY2FsZWQiLCJkdXJhdGlvbiI6Mi42NSwiZWFzZSI6ImxpbmVhciIsIm9wYWNpdHkiOjAuOSwic2NhbGVYIjowLCJzY2FsZVkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjoxLjU1LCJkZWxheSI6NS43NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-style-82a9512fb86c6205f14b532f1f7e161a-heading  n2-ss-img-wrapper n2-ow\\\" style=\\\"overflow:hidden;\\\"><img src=\\\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/09\\/running-man_1.png\\\" id=\\\"n2-ss-4item47\\\" alt=\\\"Image is not available\\\" style=\\\"display: inline-block; max-width: 100%; width: auto;height: auto;\\\" class=\\\" n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:747px;top:67px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"747\\\" data-desktopportraittop=\\\"67\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLjE1LCJkZWxheSI6MC45NSwieSI6NDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC41LCJkZWxheSI6Ny4zNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph   n2-ow\\\">Learn what makes activ8 stand out in the crowd <\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:747px;top:312px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"747\\\" data-desktopportraittop=\\\"312\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjM1LCJkZWxheSI6Mi4zLCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC41LCJkZWxheSI6NS44LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-aaa538665ee274252e790b3abe9631cd-paragraph   n2-ow\\\">so you can elevate service\\u2026maximize sales<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:111px;top:26px;width:434px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"111\\\" data-desktopportraittop=\\\"26\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"434\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkRvd25zY2FsZWQiLCJkdXJhdGlvbiI6Mi4wNSwic2NhbGVYIjowLCJzY2FsZVkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5Ijo3LjEsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a22f55580eff495af4ff87d427b0183c-paragraph   n2-ow\\\">GET <i>ACTIVE<\\/i> <\\/p>\\n<\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"43\\\" data-id=\\\"15\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-15\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-754px;top:-161px;width:395px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-754\\\" data-desktopportraittop=\\\"-161\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"395\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"right\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MS4wNSwib3BhY2l0eSI6MH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjQwLjM1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-bf772db0695b101d028fe63191841115-paragraph   n2-ow\\\">Activ8\'s unique platform<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:84px;top:-179px;width:269px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"84\\\" data-desktopportraittop=\\\"-179\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"269\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCBmYWRlIiwiZHVyYXRpb24iOjEuNSwiZGVsYXkiOjEuMDUsIm9wYWNpdHkiOjAsInkiOjQwMH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjM4Ljg1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-79346dcc3bb9204103978e8ad0b413af-paragraph   n2-ow\\\">Browser based systems are pretty & trendy due to html coded user interfaces but<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:85px;top:111px;width:160px;height:55px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"85\\\" data-desktopportraittop=\\\"111\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"160\\\" data-desktopportraitheight=\\\"55\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCBmYWRlIiwiZHVyYXRpb24iOjEuNSwiZGVsYXkiOjEuMDUsIm9wYWNpdHkiOjAsInkiOjQwMH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjM4Ljg1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-371f54ea735080eca4174e069a1c2c5e-paragraph  n2-style-fa294a30fc9e8c6d52000d13186254d0-heading  n2-ow\\\">Browser Based<br \\/>\\nSystems<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:397px;top:52px;width:262px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"397\\\" data-desktopportraittop=\\\"52\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"262\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCBmYWRlIiwiZHVyYXRpb24iOjEuNSwiZGVsYXkiOjEuMDUsIm9wYWNpdHkiOjAsInkiOjQwMH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjM4Ljg1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-79346dcc3bb9204103978e8ad0b413af-paragraph   n2-ow\\\">Active\'s unique hybrid system provides<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:85px;top:198px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"85\\\" data-desktopportraittop=\\\"198\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6Mi43NSwiZGVsYXkiOjIuOSwib3BhY2l0eSI6MH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjM1Ljc1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">slow<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-320px;top:-14px;width:458px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-320\\\" data-desktopportraittop=\\\"-14\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"458\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJsb29wUmVwZWF0U2VsZk9ubHkiOm51bGwsInNwZWNpYWxaZXJvIjowLCJ0cmFuc2Zvcm1PcmlnaW4iOiI1MHwqfDUwfCp8MCIsImluIjpbeyJuYW1lIjoiQm90dG9tIiwiZGVsYXkiOjQuODUsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5Ijo0LjM1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph  n2-style-b6f7cf9d7291662b4a2cb09f3e85cdd5-heading  n2-ow\\\">painfully slow and hogs up internet bandwidth when you need speed to get your jobs done<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:397px;top:111px;width:160px;height:55px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"397\\\" data-desktopportraittop=\\\"111\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"160\\\" data-desktopportraitheight=\\\"55\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCBmYWRlIiwiZHVyYXRpb24iOjEuNSwiZGVsYXkiOjEuMDUsIm9wYWNpdHkiOjAsInkiOjQwMH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjM4Ljg1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-371f54ea735080eca4174e069a1c2c5e-paragraph  n2-style-47bdfeb244ee0fc0db406fb528d2fe37-heading  n2-ow\\\">Active\'s Hybrid<br \\/>\\nSystem<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:397px;top:198px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"397\\\" data-desktopportraittop=\\\"198\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6Mi43LCJkZWxheSI6NS42LCJvcGFjaXR5IjowfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MzMuMSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">fast<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:51px;top:155px;width:458px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"51\\\" data-desktopportraittop=\\\"155\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"458\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJsb29wUmVwZWF0U2VsZk9ubHkiOm51bGwsInNwZWNpYWxaZXJvIjowLCJ0cmFuc2Zvcm1PcmlnaW4iOiI1MHwqfDUwfCp8MCIsImluIjpbeyJuYW1lIjoiQm90dG9tIiwiZGVsYXkiOjcuNSwieSI6LTQwMH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjEuNywib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph  n2-style-93744dff55ea894bfa28bf45d1fedff8-heading  n2-ow\\\">speed \\u2013 its search engine will display hundreds to thousands of records in a second or two<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:85px;top:240px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"85\\\" data-desktopportraittop=\\\"240\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MTAuNzUsIm9wYWNpdHkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoyOS44NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">restricted search<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-320px;top:-14px;width:458px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-320\\\" data-desktopportraittop=\\\"-14\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"458\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5IjoxMS41LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6My40NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph  n2-style-b6f7cf9d7291662b4a2cb09f3e85cdd5-heading  n2-ow\\\">provides only limited, pre-canned searches often leaving you stuck without answers<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-320px;top:65px;width:458px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-320\\\" data-desktopportraittop=\\\"65\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"458\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5IjoxMS41LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6My40NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph  n2-style-b6f7cf9d7291662b4a2cb09f3e85cdd5-heading  n2-ow\\\">extremely restricted in the number of data fields they can store and therefore search on<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:397px;top:240px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"397\\\" data-desktopportraittop=\\\"240\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MTIuMiwib3BhY2l0eSI6MH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjI4LjQsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">extensive search<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:51px;top:165px;width:458px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"51\\\" data-desktopportraittop=\\\"165\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"458\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5IjoxMi41LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6Mi40NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph  n2-style-93744dff55ea894bfa28bf45d1fedff8-heading  n2-ow\\\">extensive searching since the background database is relational with 18,000 + data fields across various tables<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:85px;top:281px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"85\\\" data-desktopportraittop=\\\"281\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MTYuNTUsIm9wYWNpdHkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoyNC4wNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">limited reporting<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:397px;top:281px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"397\\\" data-desktopportraittop=\\\"281\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MTcuMywib3BhY2l0eSI6MH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjIzLjMsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">unlimited reporting<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:51px;top:146px;width:458px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"51\\\" data-desktopportraittop=\\\"146\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"458\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MSwiZGVsYXkiOjE3Ljg1LCJvcGFjaXR5IjowfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6Mi43NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph  n2-style-93744dff55ea894bfa28bf45d1fedff8-heading  n2-ow\\\">customizable rules, club, searches, result views and more supporting each winery\\u2019s unique operational structure<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:85px;top:319px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"85\\\" data-desktopportraittop=\\\"319\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MjIuMzUsIm9wYWNpdHkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoxOC4yNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">hackable<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-320px;top:-14px;width:458px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-320\\\" data-desktopportraittop=\\\"-14\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"458\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5IjoyMy4xLCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6My43NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph  n2-style-b6f7cf9d7291662b4a2cb09f3e85cdd5-heading  n2-ow\\\">not secure due to browser tracking and cookies they put on your computer and much more...<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:397px;top:319px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"397\\\" data-desktopportraittop=\\\"319\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MjMuOCwib3BhY2l0eSI6MH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjE2LjgsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">truly secure<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:51px;top:137px;width:458px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"51\\\" data-desktopportraittop=\\\"137\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"458\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5IjoyNC41LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6Mi4zNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph  n2-style-93744dff55ea894bfa28bf45d1fedff8-heading  n2-ow\\\">complete security and is cookieless so you can work with confidence<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:85px;top:361px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"85\\\" data-desktopportraittop=\\\"361\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MjguNDUsIm9wYWNpdHkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoxMi4xNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">requires browser tabs<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-320px;top:-14px;width:458px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-320\\\" data-desktopportraittop=\\\"-14\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"458\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5IjoyOS4yLCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6NC42LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph  n2-style-b6f7cf9d7291662b4a2cb09f3e85cdd5-heading  n2-ow\\\">frequently crash due to browser cache limitations<br \\/>\\noften when you don\\u2019t have time for this<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:397px;top:361px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"397\\\" data-desktopportraittop=\\\"361\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MjkuOTUsIm9wYWNpdHkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoxMC42NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a32ded44b8c77e05f44d98a3239f50fe-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">MDI and browser<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:51px;top:165px;width:458px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"51\\\" data-desktopportraittop=\\\"165\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"458\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjI1LCJkZWxheSI6MzAuNTUsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoyLjgsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-82895b8dfb6398caf9ccdfac41b10161-paragraph  n2-style-93744dff55ea894bfa28bf45d1fedff8-heading  n2-ow\\\">internal browser based integrations with various partners so you can stay in one system instead of unrelated tabs<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:84px;top:402px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"84\\\" data-desktopportraittop=\\\"402\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MiwiZGVsYXkiOjM1LjQsIm9wYWNpdHkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5Ijo0LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-d6a21ccea731fbc890d1e4e08cc655f4-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">disconnected<br \\/>\\n3rd party apps<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:397px;top:406px;width:250px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"397\\\" data-desktopportraittop=\\\"406\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"250\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MiwiZGVsYXkiOjM2LjUsIm9wYWNpdHkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoyLjksIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-d6a21ccea731fbc890d1e4e08cc655f4-paragraph  n2-style-178581d2bebffd9a9ba4a6ae1d2bf0e2-heading  n2-ow\\\">connected<br \\/>\\n3rd party apps<\\/p>\\n<\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"21\\\" data-id=\\\"17\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-17\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:41px;top:33px;width:369px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"41\\\" data-desktopportraittop=\\\"33\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"369\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLjU1LCJ5Ijo0MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoxOC4yLCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-717fcb3837fb0b14caa18f41004e31f5-paragraph   n2-ow\\\">Single Database<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:695px;top:33px;width:476px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"695\\\" data-desktopportraittop=\\\"33\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"476\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLjU1LCJkZWxheSI6MS4zNSwieSI6NDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MTYuODUsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-85aaea45c6d24b430a1472754cfa98e6-paragraph   n2-ow\\\">One single database for all software features, functions and sales channels<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:505px;top:148px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"505\\\" data-desktopportraittop=\\\"148\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjYsImRlbGF5IjoyLjYsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoxNS41NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-d53c673ec989514253849c75b72270f5-paragraph   n2-ow\\\">retail POS<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:505px;top:183px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"505\\\" data-desktopportraittop=\\\"183\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjYsImRlbGF5IjozLjksInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoxNC4yNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-d53c673ec989514253849c75b72270f5-paragraph   n2-ow\\\"> off-site sales<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:505px;top:220px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"505\\\" data-desktopportraittop=\\\"220\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjYsImRlbGF5Ijo1LjI1LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MTIuOSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-d53c673ec989514253849c75b72270f5-paragraph   n2-ow\\\">email analysis<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:505px;top:252px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"505\\\" data-desktopportraittop=\\\"252\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjYsImRlbGF5Ijo2LjQ1LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6MTEuNywib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-d53c673ec989514253849c75b72270f5-paragraph   n2-ow\\\">inventory management<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:505px;top:285px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"505\\\" data-desktopportraittop=\\\"285\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjYsImRlbGF5Ijo3LjcsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoxMC40NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-d53c673ec989514253849c75b72270f5-paragraph   n2-ow\\\">no need to sync multiple databases<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:105px;top:82px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"105\\\" data-desktopportraittop=\\\"82\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjU1LCJkZWxheSI6OC45NSwieSI6LTQwMH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjkuMjUsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-d53c673ec989514253849c75b72270f5-paragraph   n2-ow\\\">ecommerce<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:429px;top:-186px;width:295px;height:123px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"429\\\" data-desktopportraittop=\\\"-186\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"295\\\" data-desktopportraitheight=\\\"123\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"bottom\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkRvd25zY2FsZWQiLCJkdXJhdGlvbiI6Mi4zLCJkZWxheSI6OC41LCJzY2FsZVgiOjAsInNjYWxlWSI6MH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjguOTUsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-bfd7ab4b5d6cf3a263b470c7021c6e3c-paragraph  n2-style-39c76ad5c6965ed422b963e4c0dfee48-heading  n2-ow\\\">one <i>private<\\/i><br \\/>\\ndatabase<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:105px;top:116px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"105\\\" data-desktopportraittop=\\\"116\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjY1LCJkZWxheSI6MTAuMDUsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5Ijo4LjA1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-d53c673ec989514253849c75b72270f5-paragraph   n2-ow\\\">no need for multiple browser screens and apps<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:105px;top:150px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"105\\\" data-desktopportraittop=\\\"150\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjY1LCJkZWxheSI6MTEuMywieSI6LTQwMH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjYuOCwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-d53c673ec989514253849c75b72270f5-paragraph   n2-ow\\\">club automation<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:505px;top:422px;width:auto;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"505\\\" data-desktopportraittop=\\\"422\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"auto\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjYsImRlbGF5IjoxMi41NSwieSI6LTQwMH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjUuNiwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-d53c673ec989514253849c75b72270f5-paragraph   n2-ow\\\">3rd party integrations<br \\/>\\nlive and up to the second updates \\u2013 no need latency<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:41px;top:159px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"41\\\" data-desktopportraittop=\\\"159\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSBmYWRlIiwiZHVyYXRpb24iOjEuNiwiZGVsYXkiOjEzLjk1LCJvcGFjaXR5IjowLCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6NC4yLCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-cc960b45f09947e32335289a92871bfb-paragraph   n2-ow\\\">one app does it all...<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:41px;top:215px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"41\\\" data-desktopportraittop=\\\"215\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjcsImRlbGF5IjoxNC43NSwieSI6LTQwMH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZHVyYXRpb24iOjAuNSwiZGVsYXkiOjMuNiwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-477348220b80d830f5d54f6d63d57ee8-paragraph   n2-ow\\\">so you can elevate service\\u2026maximize sales<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:471px;top:144px;width:200px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"471\\\" data-desktopportraittop=\\\"144\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"200\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlJpZ2h0IGZhZGUiLCJkdXJhdGlvbiI6NC42NSwiZGVsYXkiOjEwLCJvcGFjaXR5IjowLCJ4IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkxlZnQgZmFkZSIsImRlbGF5Ijo1LjEsIm9wYWNpdHkiOjAsIngiOjQwMH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-style-417b58e4161d3a823f75085d9ae7a8d4-heading  n2-ss-img-wrapper n2-ow\\\" style=\\\"overflow:hidden;\\\"><img src=\\\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/09\\/handholdingglobe_3.png\\\" id=\\\"n2-ss-4item92\\\" alt=\\\"Image is not available\\\" style=\\\"display: inline-block; max-width: 100%; width: auto;height: auto;\\\" class=\\\" n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" \\/><\\/div><\\/div><\\/div><\\/div>                <\\/div>\\r\\n            <\\/div>\\r\\n            <div data-ssleft=\\\"0+15\\\" data-sstop=\\\"height\\/2-previousheight\\/2\\\" id=\\\"n2-ss-4-arrow-previous\\\" class=\\\"n2-ss-widget n2-ss-widget-display-desktop n2-ss-widget-display-tablet n2-ss-widget-display-mobile n2-ss-widget-display-hover nextend-arrow n2-ow nextend-arrow-previous  nextend-arrow-animated-fade n2-ib\\\" style=\\\"position: absolute;\\\" role=\\\"button\\\" aria-label=\\\"Previous slide\\\" tabindex=\\\"0\\\"><img class=\\\"n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTEuNDMzIDE1Ljk5MkwyMi42OSA1LjcxMmMuMzkzLS4zOS4zOTMtMS4wMyAwLTEuNDItLjM5My0uMzktMS4wMy0uMzktMS40MjMgMGwtMTEuOTggMTAuOTRjLS4yMS4yMS0uMy40OS0uMjg1Ljc2LS4wMTUuMjguMDc1LjU2LjI4NC43N2wxMS45OCAxMC45NGMuMzkzLjM5IDEuMDMuMzkgMS40MjQgMCAuMzkzLS40LjM5My0xLjAzIDAtMS40MmwtMTEuMjU3LTEwLjI5IiBmaWxsPSIjZmZmZmZmIiBvcGFjaXR5PSIwLjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==\\\" alt=\\\"previous arrow\\\" \\/><\\/div>\\n<div data-ssright=\\\"0+15\\\" data-sstop=\\\"height\\/2-nextheight\\/2\\\" id=\\\"n2-ss-4-arrow-next\\\" class=\\\"n2-ss-widget n2-ss-widget-display-desktop n2-ss-widget-display-tablet n2-ss-widget-display-mobile n2-ss-widget-display-hover nextend-arrow n2-ow nextend-arrow-next  nextend-arrow-animated-fade n2-ib\\\" style=\\\"position: absolute;\\\" role=\\\"button\\\" aria-label=\\\"Next slide\\\" tabindex=\\\"0\\\"><img class=\\\"n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuNzIyIDQuMjkzYy0uMzk0LS4zOS0xLjAzMi0uMzktMS40MjcgMC0uMzkzLjM5LS4zOTMgMS4wMyAwIDEuNDJsMTEuMjgzIDEwLjI4LTExLjI4MyAxMC4yOWMtLjM5My4zOS0uMzkzIDEuMDIgMCAxLjQyLjM5NS4zOSAxLjAzMy4zOSAxLjQyNyAwbDEyLjAwNy0xMC45NGMuMjEtLjIxLjMtLjQ5LjI4NC0uNzcuMDE0LS4yNy0uMDc2LS41NS0uMjg2LS43NkwxMC43MiA0LjI5M3oiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuOCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+\\\" alt=\\\"next arrow\\\" \\/><\\/div>\\n        <\\/div>\\r\\n        <\\/div><div class=\\\"n2-clear\\\"><\\/div><div id=\\\"n2-ss-4-spinner\\\" style=\\\"display: none;\\\"><div><div class=\\\"n2-ss-spinner-simple-white-container\\\"><div class=\\\"n2-ss-spinner-simple-white\\\"><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><div id=\\\"n2-ss-4-placeholder\\\" style=\\\"position: relative;z-index:2;background-color:RGBA(0,0,0,0);max-height:500px; background-color:RGBA(255,255,255,0);\\\"><img style=\\\"width: 100%; max-width:3000px; display: block;opacity:0;\\\" class=\\\"n2-ow\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMCIgd2lkdGg9IjEyMDAiIGhlaWdodD0iNTAwIiA+PC9zdmc+\\\" alt=\\\"Slider\\\" \\/><\\/div><\\/div>\",\"assets\":{\"css\":{\"staticGroup\":{\"smartslider\":\"\\/home\\/activ8commerce\\/public_html\\/activeclubsolutions.net\\/wp-content\\/plugins\\/nextend-smart-slider3-pro\\/library\\/media\\/smartslider.min.css\"},\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[\".n2-ss-spinner-simple-white-container {\\r\\n    position: absolute;\\r\\n    top: 50%;\\r\\n    left: 50%;\\r\\n    margin: -20px;\\r\\n    background: #fff;\\r\\n    width: 20px;\\r\\n    height: 20px;\\r\\n    padding: 10px;\\r\\n    border-radius: 50%;\\r\\n    z-index: 1000;\\r\\n}\\r\\n\\r\\n.n2-ss-spinner-simple-white {\\r\\n  outline: 1px solid RGBA(0,0,0,0);\\r\\n  width:100%;\\r\\n  height: 100%;\\r\\n}\\r\\n\\r\\n.n2-ss-spinner-simple-white:before {\\r\\n    position: absolute;\\r\\n    top: 50%;\\r\\n    left: 50%;\\r\\n    width: 20px;\\r\\n    height: 20px;\\r\\n    margin-top: -11px;\\r\\n    margin-left: -11px;\\r\\n}\\r\\n\\r\\n.n2-ss-spinner-simple-white:not(:required):before {\\r\\n    content: \'\';\\r\\n    border-radius: 50%;\\r\\n    border-top: 2px solid #333;\\r\\n    border-right: 2px solid transparent;\\r\\n    animation: n2SimpleWhite .6s linear infinite;\\r\\n    -webkit-animation: n2SimpleWhite .6s linear infinite;\\r\\n}\\r\\n@keyframes n2SimpleWhite {\\r\\n    to {transform: rotate(360deg);}\\r\\n}\\r\\n\\r\\n@-webkit-keyframes n2SimpleWhite {\\r\\n    to {-webkit-transform: rotate(360deg);}\\r\\n}\"],\"globalInline\":[]},\"less\":{\"staticGroup\":[],\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[],\"globalInline\":[]},\"js\":{\"staticGroup\":{\"smartslider-simple-type-frontend\":\"\\/home\\/activ8commerce\\/public_html\\/activeclubsolutions.net\\/wp-content\\/plugins\\/nextend-smart-slider3-pro\\/library\\/media\\/plugins\\/type\\/simple\\/simple\\/dist\\/smartslider-simple-type-frontend.min.js\"},\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[\"N2R([\\\"nextend-frontend\\\",\\\"smartslider-frontend\\\",\\\"nextend-gsap\\\",\\\"smartslider-simple-type-frontend\\\"],function(){new N2Classes.SmartSliderSimple(\'#n2-ss-4\', {\\\"admin\\\":false,\\\"translate3d\\\":1,\\\"callbacks\\\":\\\"\\\",\\\"background.video.mobile\\\":1,\\\"randomize\\\":{\\\"randomize\\\":0,\\\"randomizeFirst\\\":0},\\\"align\\\":\\\"normal\\\",\\\"isDelayed\\\":0,\\\"load\\\":{\\\"fade\\\":1,\\\"scroll\\\":0},\\\"playWhenVisible\\\":1,\\\"playWhenVisibleAt\\\":0.5,\\\"responsive\\\":{\\\"desktop\\\":1,\\\"tablet\\\":1,\\\"mobile\\\":1,\\\"onResizeEnabled\\\":true,\\\"type\\\":\\\"fullwidth\\\",\\\"downscale\\\":1,\\\"upscale\\\":1,\\\"minimumHeight\\\":0,\\\"maximumHeight\\\":500,\\\"maximumSlideWidth\\\":3000,\\\"maximumSlideWidthLandscape\\\":3000,\\\"maximumSlideWidthTablet\\\":3000,\\\"maximumSlideWidthTabletLandscape\\\":3000,\\\"maximumSlideWidthMobile\\\":3000,\\\"maximumSlideWidthMobileLandscape\\\":3000,\\\"maximumSlideWidthConstrainHeight\\\":0,\\\"forceFull\\\":1,\\\"forceFullOverflowX\\\":\\\"body\\\",\\\"forceFullHorizontalSelector\\\":\\\"\\\",\\\"constrainRatio\\\":1,\\\"verticalOffsetSelectors\\\":\\\"\\\",\\\"decreaseSliderHeight\\\":0,\\\"focusUser\\\":0,\\\"focusAutoplay\\\":0,\\\"deviceModes\\\":{\\\"desktopPortrait\\\":1,\\\"desktopLandscape\\\":0,\\\"tabletPortrait\\\":1,\\\"tabletLandscape\\\":0,\\\"mobilePortrait\\\":1,\\\"mobileLandscape\\\":0},\\\"normalizedDeviceModes\\\":{\\\"unknownUnknown\\\":[\\\"unknown\\\",\\\"Unknown\\\"],\\\"desktopPortrait\\\":[\\\"desktop\\\",\\\"Portrait\\\"],\\\"desktopLandscape\\\":[\\\"desktop\\\",\\\"Portrait\\\"],\\\"tabletPortrait\\\":[\\\"tablet\\\",\\\"Portrait\\\"],\\\"tabletLandscape\\\":[\\\"tablet\\\",\\\"Portrait\\\"],\\\"mobilePortrait\\\":[\\\"mobile\\\",\\\"Portrait\\\"],\\\"mobileLandscape\\\":[\\\"mobile\\\",\\\"Portrait\\\"]},\\\"verticalRatioModifiers\\\":{\\\"unknownUnknown\\\":1,\\\"desktopPortrait\\\":1,\\\"desktopLandscape\\\":1,\\\"tabletPortrait\\\":1,\\\"tabletLandscape\\\":1,\\\"mobilePortrait\\\":1,\\\"mobileLandscape\\\":1},\\\"minimumFontSizes\\\":{\\\"desktopPortrait\\\":1,\\\"desktopLandscape\\\":1,\\\"tabletPortrait\\\":1,\\\"tabletLandscape\\\":1,\\\"mobilePortrait\\\":1,\\\"mobileLandscape\\\":1},\\\"ratioToDevice\\\":{\\\"Portrait\\\":{\\\"tablet\\\":0.7,\\\"mobile\\\":0.5},\\\"Landscape\\\":{\\\"tablet\\\":0,\\\"mobile\\\":0}},\\\"sliderWidthToDevice\\\":{\\\"desktopPortrait\\\":1200,\\\"desktopLandscape\\\":1200,\\\"tabletPortrait\\\":840,\\\"tabletLandscape\\\":0,\\\"mobilePortrait\\\":600,\\\"mobileLandscape\\\":0},\\\"basedOn\\\":\\\"combined\\\",\\\"orientationMode\\\":\\\"width_and_height\\\",\\\"overflowHiddenPage\\\":0,\\\"desktopPortraitScreenWidth\\\":1200,\\\"tabletPortraitScreenWidth\\\":800,\\\"mobilePortraitScreenWidth\\\":440,\\\"tabletLandscapeScreenWidth\\\":800,\\\"mobileLandscapeScreenWidth\\\":440},\\\"controls\\\":{\\\"scroll\\\":1,\\\"drag\\\":0,\\\"touch\\\":\\\"horizontal\\\",\\\"keyboard\\\":1,\\\"tilt\\\":0},\\\"lazyLoad\\\":0,\\\"lazyLoadNeighbor\\\":0,\\\"blockrightclick\\\":0,\\\"maintainSession\\\":0,\\\"autoplay\\\":{\\\"enabled\\\":1,\\\"start\\\":1,\\\"duration\\\":11000,\\\"autoplayToSlide\\\":-1,\\\"autoplayToSlideIndex\\\":-1,\\\"allowReStart\\\":0,\\\"pause\\\":{\\\"click\\\":1,\\\"mouse\\\":\\\"0\\\",\\\"mediaStarted\\\":1},\\\"resume\\\":{\\\"click\\\":0,\\\"mouse\\\":\\\"0\\\",\\\"mediaEnded\\\":1,\\\"slidechanged\\\":0}},\\\"perspective\\\":1000,\\\"layerMode\\\":{\\\"playOnce\\\":0,\\\"playFirstLayer\\\":1,\\\"mode\\\":\\\"skippable\\\",\\\"inAnimation\\\":\\\"mainInEnd\\\"},\\\"parallax\\\":{\\\"enabled\\\":1,\\\"mobile\\\":0,\\\"is3D\\\":0,\\\"animate\\\":1,\\\"horizontal\\\":\\\"mouse\\\",\\\"vertical\\\":\\\"mouse\\\",\\\"origin\\\":\\\"slider\\\",\\\"scrollmove\\\":\\\"both\\\"},\\\"postBackgroundAnimations\\\":0,\\\"initCallbacks\\\":[\\\"N2D(\\\\\\\"SmartSliderWidgetArrowImage\\\\\\\",function(i,e){function s(e,s,t,h){this.slider=e,this.slider.started(i.proxy(this.start,this,s,t,h))}return s.prototype.start=function(e,s,t){return this.slider.sliderElement.data(\\\\\\\"arrow\\\\\\\")?!1:(this.slider.sliderElement.data(\\\\\\\"arrow\\\\\\\",this),this.deferred=i.Deferred(),this.slider.sliderElement.on(\\\\\\\"SliderDevice\\\\\\\",i.proxy(this.onDevice,this)).trigger(\\\\\\\"addWidget\\\\\\\",this.deferred),this.previous=i(\\\\\\\"#\\\\\\\"+this.slider.elementID+\\\\\\\"-arrow-previous\\\\\\\").on(\\\\\\\"click\\\\\\\",i.proxy(function(i){i.stopPropagation(),this.slider[n2const.rtl.previous]()},this)),this.previousResize=this.previous.find(\\\\\\\".n2-resize\\\\\\\"),0===this.previousResize.length&&(this.previousResize=this.previous),this.next=i(\\\\\\\"#\\\\\\\"+this.slider.elementID+\\\\\\\"-arrow-next\\\\\\\").on(\\\\\\\"click\\\\\\\",i.proxy(function(i){i.stopPropagation(),this.slider[n2const.rtl.next]()},this)),this.nextResize=this.next.find(\\\\\\\".n2-resize\\\\\\\"),0===this.nextResize.length&&(this.nextResize=this.next),this.desktopRatio=e,this.tabletRatio=s,this.mobileRatio=t,void i.when(this.previous.n2imagesLoaded(),this.next.n2imagesLoaded()).always(i.proxy(this.loaded,this)))},s.prototype.loaded=function(){this.previous.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.previousResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.previousWidth=this.previousResize.width(),this.previousHeight=this.previousResize.height(),this.previousResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.previous.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.next.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.nextResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.nextWidth=this.nextResize.width(),this.nextHeight=this.nextResize.height(),this.nextResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.next.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.previousResize.find(\\\\\\\"img\\\\\\\").css(\\\\\\\"width\\\\\\\",\\\\\\\"100%\\\\\\\"),this.nextResize.find(\\\\\\\"img\\\\\\\").css(\\\\\\\"width\\\\\\\",\\\\\\\"100%\\\\\\\"),this.onDevice(null,{device:this.slider.responsive.getDeviceMode()}),this.deferred.resolve()},s.prototype.onDevice=function(i,e){var s=1;switch(e.device){case\\\\\\\"tablet\\\\\\\":s=this.tabletRatio;break;case\\\\\\\"mobile\\\\\\\":s=this.mobileRatio;break;default:s=this.desktopRatio}this.previousResize.width(this.previousWidth*s),this.previousResize.height(this.previousHeight*s),this.nextResize.width(this.nextWidth*s),this.nextResize.height(this.nextHeight*s)},s});\\\",\\\"new N2Classes.SmartSliderWidgetArrowImage(this, 1, 0.7, 0.5);\\\"],\\\"allowBGImageAttachmentFixed\\\":false,\\\"bgAnimationsColor\\\":\\\"RGBA(51,51,51,1)\\\",\\\"bgAnimations\\\":0,\\\"mainanimation\\\":{\\\"type\\\":\\\"horizontal\\\",\\\"duration\\\":800,\\\"delay\\\":0,\\\"ease\\\":\\\"easeOutQuad\\\",\\\"parallax\\\":0,\\\"shiftedBackgroundAnimation\\\":\\\"auto\\\"},\\\"carousel\\\":1,\\\"dynamicHeight\\\":0});});\"],\"globalInline\":[]},\"googleFonts\":{\"staticGroup\":[],\"files\":{\"Roboto\":[\"300\",\"400\"]},\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[],\"globalInline\":[]},\"image\":{\"images\":[\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/09\\/running-man_1.png\",\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/09\\/handholdingglobe_3.png\"]}}}',0,1),
(15859,'cache','notweb/n2-ss-3','data.manifest','{\"generator\":[]}',0,1),
(15860,'cache','notweb/n2-ss-3','variations.manifest','1',0,1),
(15861,'cache','notweb/n2-ss-3','slideren_US1.manifest','{\"hash\":\"\",\"nextCacheRefresh\":1821660357,\"currentPath\":\"77e8adf5c51c0d58957373da92023181\",\"version\":\"3.3.11\"}',0,1),
(15862,'cache','notweb/n2-ss-3','slideren_US1','{\"html\":\"<div class=\\\"n2-section-smartslider\\\"><style>div#n2-ss-3{width:1200px;float:left;margin:0px 0px 0px 0px;}html[dir=\\\"rtl\\\"] div#n2-ss-3{float:right;}div#n2-ss-3 .n2-ss-slider-1{position:relative;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;height:500px;border-style:solid;border-width:0px;border-color:#3e3e3e;border-color:RGBA(62,62,62,1);border-radius:0px;background-clip:padding-box;background-repeat:repeat;background-position:50% 50%;background-size:cover;background-attachment:scroll;}div#n2-ss-3 .n2-ss-slider-background-video-container{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;}div#n2-ss-3 .n2-ss-slider-2{position:relative;width:100%;height:100%;}.x-firefox div#n2-ss-3 .n2-ss-slider-2{opacity:0.99999;}div#n2-ss-3 .n2-ss-slider-3{position:relative;width:100%;height:100%;overflow:hidden;outline:1px solid rgba(0,0,0,0);z-index:10;}div#n2-ss-3 .n2-ss-slide-backgrounds,div#n2-ss-3 .n2-ss-slider-3 > .n-particles-js-canvas-el,div#n2-ss-3 .n2-ss-slider-3 > .n2-ss-divider{position:absolute;left:0;top:0;width:100%;height:100%;}div#n2-ss-3 .n2-ss-slide-backgrounds{z-index:10;}div#n2-ss-3 .n2-ss-slider-3 > .n-particles-js-canvas-el{z-index:12;}div#n2-ss-3 .n2-ss-slide-backgrounds > *{overflow:hidden;}div#n2-ss-3 .n2-ss-slide{position:absolute;top:0;left:0;width:100%;height:100%;z-index:20;display:block;-webkit-backface-visibility:hidden;}div#n2-ss-3 .n2-ss-layers-container{position:relative;width:1200px;height:500px;}div#n2-ss-3 .n2-ss-parallax-clip > .n2-ss-layers-container{position:absolute;right:0;}div#n2-ss-3 .n2-ss-slide{-webkit-perspective:1000px;perspective:1000px;}div#n2-ss-3[data-ie] .n2-ss-slide{-webkit-perspective:none;perspective:none;-webkit-transform:perspective(1000px);transform:perspective(1000px);}div#n2-ss-3 .n2-ss-slide-active{z-index:21;}div#n2-ss-3 .n2-ss-button-container,div#n2-ss-3 .n2-ss-button-container a{display:inline-block;}div#n2-ss-3 .n2-ss-button-container.n2-ss-fullwidth,div#n2-ss-3 .n2-ss-button-container.n2-ss-fullwidth a{display:block;}div#n2-ss-3 .n2-ss-button-container.n2-ss-nowrap{white-space:nowrap;}div#n2-ss-3 .n2-ss-button-container a div{display:inline;font-size:inherit;text-decoration:inherit;color:inherit;line-height:inherit;font-family:inherit;font-weight:inherit;}div#n2-ss-3 .n2-ss-button-container a > div{display:inline-flex;align-items:center;vertical-align:top;}div#n2-ss-3 .n2-ss-button-container i{font-size:100%;vertical-align:baseline;}div#n2-ss-3 .n2-ss-button-container a[data-iconplacement=\\\"left\\\"] i{margin-right:0.3em;}div#n2-ss-3 .n2-ss-button-container a[data-iconplacement=\\\"right\\\"] i{margin-left:0.3em;}div#n2-ss-3 .nextend-arrow{cursor:pointer;overflow:hidden;line-height:0 !important;z-index:20;}div#n2-ss-3 .nextend-arrow img{position:relative;min-height:0;min-width:0;vertical-align:top;width:auto;height:auto;max-width:100%;max-height:100%;display:inline;}div#n2-ss-3 .nextend-arrow img.n2-arrow-hover-img{display:none;}div#n2-ss-3 .nextend-arrow:HOVER img.n2-arrow-hover-img{display:inline;}div#n2-ss-3 .nextend-arrow:HOVER img.n2-arrow-normal-img{display:none;}div#n2-ss-3 .nextend-arrow-animated{overflow:hidden;}div#n2-ss-3 .nextend-arrow-animated > div{position:relative;}div#n2-ss-3 .nextend-arrow-animated .n2-active{position:absolute;}div#n2-ss-3 .nextend-arrow-animated-fade{transition:background 0.3s, opacity 0.4s;}div#n2-ss-3 .nextend-arrow-animated-horizontal > div{transition:all 0.4s;left:0;}div#n2-ss-3 .nextend-arrow-animated-horizontal .n2-active{top:0;}div#n2-ss-3 .nextend-arrow-previous.nextend-arrow-animated-horizontal:HOVER > div,div#n2-ss-3 .nextend-arrow-next.nextend-arrow-animated-horizontal .n2-active{left:-100%;}div#n2-ss-3 .nextend-arrow-previous.nextend-arrow-animated-horizontal .n2-active,div#n2-ss-3 .nextend-arrow-next.nextend-arrow-animated-horizontal:HOVER > div{left:100%;}div#n2-ss-3 .nextend-arrow.nextend-arrow-animated-horizontal:HOVER .n2-active{left:0;}div#n2-ss-3 .nextend-arrow-animated-vertical > div{transition:all 0.4s;top:0;}div#n2-ss-3 .nextend-arrow-animated-vertical .n2-active{left:0;}div#n2-ss-3 .nextend-arrow-animated-vertical .n2-active{top:-100%;}div#n2-ss-3 .nextend-arrow-animated-vertical:HOVER > div{top:100%;}div#n2-ss-3 .nextend-arrow-animated-vertical:HOVER .n2-active{top:0;}div#n2-ss-3 .n2-style-71a2feb2f0c2a2348020a44ba8a4fb41-heading{background: #ffffff;background: RGBA(255,255,255,0);opacity:0.8;padding:0px 0px 0px 0px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-3 .n2-ss-layer .n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph{font-family: \'Roboto\',\'Arial\';color: #cccccc;color: RGBA(204,204,204,0.8);font-size:218.75%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph a, div#n2-ss-3 .n2-ss-layer .n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph a:HOVER, div#n2-ss-3 .n2-ss-layer .n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-aaa538665ee274252e790b3abe9631cd-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:218.75%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-aaa538665ee274252e790b3abe9631cd-paragraph a, div#n2-ss-3 .n2-ss-layer .n2-font-aaa538665ee274252e790b3abe9631cd-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-aaa538665ee274252e790b3abe9631cd-paragraph a:HOVER, div#n2-ss-3 .n2-ss-layer .n2-font-aaa538665ee274252e790b3abe9631cd-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-a22f55580eff495af4ff87d427b0183c-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:468.75%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-3 .n2-ss-layer .n2-font-a22f55580eff495af4ff87d427b0183c-paragraph a, div#n2-ss-3 .n2-ss-layer .n2-font-a22f55580eff495af4ff87d427b0183c-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-3 .n2-ss-layer .n2-font-a22f55580eff495af4ff87d427b0183c-paragraph a:HOVER, div#n2-ss-3 .n2-ss-layer .n2-font-a22f55580eff495af4ff87d427b0183c-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: 800;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 800;}div#n2-ss-3 .n2-ss-layer .n2-font-232a2a1f881fdd2f0e96bbba87f38eed-paragraph{font-family: \'Roboto\',\'Arial\';color: #cccccc;color: RGBA(204,204,204,0.8);font-size:187.5%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-232a2a1f881fdd2f0e96bbba87f38eed-paragraph a, div#n2-ss-3 .n2-ss-layer .n2-font-232a2a1f881fdd2f0e96bbba87f38eed-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-232a2a1f881fdd2f0e96bbba87f38eed-paragraph a:HOVER, div#n2-ss-3 .n2-ss-layer .n2-font-232a2a1f881fdd2f0e96bbba87f38eed-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-40069188d4f7d44ba796e4215f616848-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;color: RGBA(255,255,255,0.8);font-size:281.25%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-40069188d4f7d44ba796e4215f616848-paragraph a, div#n2-ss-3 .n2-ss-layer .n2-font-40069188d4f7d44ba796e4215f616848-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-40069188d4f7d44ba796e4215f616848-paragraph a:HOVER, div#n2-ss-3 .n2-ss-layer .n2-font-40069188d4f7d44ba796e4215f616848-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.5;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-b2be0fe1cd049e7bf43d6102f14c779a-paragraph{font-family: \'Roboto\',\'Arial\';color: #ffffff;font-size:125%;text-shadow: none;line-height: 1.0;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;}div#n2-ss-3 .n2-ss-layer .n2-font-b2be0fe1cd049e7bf43d6102f14c779a-paragraph a, div#n2-ss-3 .n2-ss-layer .n2-font-b2be0fe1cd049e7bf43d6102f14c779a-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.0;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;}div#n2-ss-3 .n2-ss-layer .n2-font-b2be0fe1cd049e7bf43d6102f14c779a-paragraph a:HOVER, div#n2-ss-3 .n2-ss-layer .n2-font-b2be0fe1cd049e7bf43d6102f14c779a-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.0;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;}div#n2-ss-3 .n2-style-cf36fb5bd19ea71991402b6b7a7a8df4-heading{background: #ffffff;background: RGBA(255,255,255,0);opacity:1;padding:0px 0px 0px 10px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-3 .n2-ss-layer .n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph{font-family: \'Roboto\',\'Arial\';color: #cccccc;color: RGBA(204,204,204,0.8);font-size:175%;text-shadow: none;line-height: 1.4;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph a, div#n2-ss-3 .n2-ss-layer .n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph a:FOCUS{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.4;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-ss-layer .n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph a:HOVER, div#n2-ss-3 .n2-ss-layer .n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph a:ACTIVE{font-family: \'Roboto\',\'Arial\';color: #1890d7;font-size:100%;text-shadow: none;line-height: 1.4;font-weight: bold;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: uppercase;font-weight: bold;}div#n2-ss-3 .n2-font-a9bc25a9cdd11cca626a41966fde16cf-list li{font-family: \'Roboto\',\'Arial\';color: #ffffff;font-size:125%;text-shadow: none;line-height: 1.6;font-weight: normal;font-style: normal;text-decoration: none;text-align: left;letter-spacing: normal;word-spacing: normal;text-transform: none;}div#n2-ss-3 .n2-font-a9bc25a9cdd11cca626a41966fde16cf-list li a, div#n2-ss-3 .n2-font-a9bc25a9cdd11cca626a41966fde16cf-list li a:FOCUS{color: #1890d7;}div#n2-ss-3 .n2-style-1801-heading{background: #ffffff;background: RGBA(255,255,255,0);opacity:1;padding:10px 20px 10px 20px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:0px;margin:0;}div#n2-ss-3 .n2-style-1801-heading:Hover, div#n2-ss-3 .n2-style-1801-heading:ACTIVE, div#n2-ss-3 .n2-style-1801-heading:FOCUS{@tab1}div#n2-ss-3 .n2-font-ca397005a3ed0cbbb59285a9661f2379-link a{font-family: \'Roboto\',\'Arial\';color: #ffffff;font-size:112.5%;text-shadow: none;line-height: 1.5;font-weight: normal;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;}div#n2-ss-3 .n2-style-cc879340e6cf7c9d629472be99879238-heading{background: #3a92aa;opacity:1;padding:10px 30px 10px 30px ;box-shadow: none;border-width: 0px;border-style: solid;border-color: #000000; border-color: RGBA(0,0,0,1);border-radius:0px;}<\\/style><div id=\\\"n2-ss-3-align\\\" class=\\\"n2-ss-align\\\"><div class=\\\"n2-padding\\\"><div id=\\\"n2-ss-3\\\" data-creator=\\\"Smart Slider 3\\\" class=\\\"n2-ss-slider n2-ow n2-has-hover n2notransition n2-ss-load-fade \\\" data-minFontSizedesktopPortrait=\\\"1\\\" data-minFontSizedesktopLandscape=\\\"1\\\" data-minFontSizetabletPortrait=\\\"1\\\" data-minFontSizetabletLandscape=\\\"1\\\" data-minFontSizemobilePortrait=\\\"1\\\" data-minFontSizemobileLandscape=\\\"1\\\" style=\\\"font-size: 16px;\\\" data-fontsize=\\\"16\\\">\\r\\n        <div class=\\\"n2-ss-slider-1 n2-ss-swipe-element n2-ow\\\" style=\\\"background-image: URL(\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/08\\/marketing_2.png);\\\">\\r\\n                        <div class=\\\"n2-ss-slider-2 n2-ow\\\">\\r\\n                                <div class=\\\"n2-ss-slider-3 n2-ow\\\" style=\\\"\\\">\\r\\n\\r\\n                    <div class=\\\"n2-ss-slide-backgrounds\\\"><\\/div><div data-first=\\\"1\\\" data-slide-duration=\\\"10\\\" data-id=\\\"6\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-6\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-68px;top:46px;width:330px;height:365px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-68\\\" data-desktopportraittop=\\\"46\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"330\\\" data-desktopportraitheight=\\\"365\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkRvd25zY2FsZWQiLCJkdXJhdGlvbiI6Mi42NSwiZWFzZSI6ImxpbmVhciIsIm9wYWNpdHkiOjAuOSwic2NhbGVYIjowLCJzY2FsZVkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjoyLjksImRlbGF5Ijo0LjQsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-style-71a2feb2f0c2a2348020a44ba8a4fb41-heading  n2-ss-img-wrapper n2-ow\\\" style=\\\"overflow:hidden;\\\"><img src=\\\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/09\\/running-man_1.png\\\" id=\\\"n2-ss-3item1\\\" alt=\\\"Image is not available\\\" style=\\\"display: inline-block; max-width: 100%; width: auto;height: auto;\\\" class=\\\" n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:747px;top:67px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"747\\\" data-desktopportraittop=\\\"67\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLjE1LCJkZWxheSI6MC45NSwieSI6NDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC41LCJkZWxheSI6Ny4zNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-f75059aea3bd0e14d5340d68bfecec10-paragraph   n2-ow\\\">Talk about active \\u2026You can\\u2019t slow this thing down<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:747px;top:312px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"747\\\" data-desktopportraittop=\\\"312\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjM1LCJkZWxheSI6Mi4zLCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC41LCJkZWxheSI6NS44LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-aaa538665ee274252e790b3abe9631cd-paragraph   n2-ow\\\">learn what makes Activ8\'s POS a cut above all others <\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:111px;top:26px;width:434px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"111\\\" data-desktopportraittop=\\\"26\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"434\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkRvd25zY2FsZWQiLCJkdXJhdGlvbiI6Mi4wNSwic2NhbGVYIjowLCJzY2FsZVkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5Ijo3LjEsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-a22f55580eff495af4ff87d427b0183c-paragraph   n2-ow\\\">GET <i>ACTIVE<\\/i> POS<\\/p>\\n<\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"20\\\" data-id=\\\"7\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-7\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:680px;top:25px;width:472px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"680\\\" data-desktopportraittop=\\\"25\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"472\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImRlbGF5Ijo5Ljk1LCJ5Ijo0MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5Ijo4LjM1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-232a2a1f881fdd2f0e96bbba87f38eed-paragraph   n2-ow\\\">Put an end to checkout lines<br \\/>\\ntake the POS to your customers<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:680px;top:58px;width:445px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"680\\\" data-desktopportraittop=\\\"58\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"445\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLCJkZWxheSI6MS41LCJ5Ijo0MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjowLjQ1LCJkZWxheSI6Ny4wNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-232a2a1f881fdd2f0e96bbba87f38eed-paragraph   n2-ow\\\">No latency or batch uploading at the day\\u2019s end<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-333px;top:137px;width:655px;height:500px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-333\\\" data-desktopportraittop=\\\"137\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"655\\\" data-desktopportraitheight=\\\"500\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6My4wNSwiZWFzZSI6ImxpbmVhciIsIm9wYWNpdHkiOjB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5IjoxNi4wNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-style-71a2feb2f0c2a2348020a44ba8a4fb41-heading  n2-ss-img-wrapper n2-ow\\\" style=\\\"overflow:hidden;\\\"><img src=\\\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2015\\/01\\/6-1.png\\\" id=\\\"n2-ss-3item7\\\" alt=\\\"Image is not available\\\" style=\\\"display: inline-block; max-width: 100%; width: auto;height: auto;\\\" class=\\\" n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:67px;top:58px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"67\\\" data-desktopportraittop=\\\"58\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MS4wNSwib3BhY2l0eSI6MH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjE4LjA1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-40069188d4f7d44ba796e4215f616848-paragraph   n2-ow\\\"><i>Lightyears<br \\/>\\nahead<\\/i><\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:222px;width:509px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"222\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"509\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5Ijo5Ljk1LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6OC4zNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-b2be0fe1cd049e7bf43d6102f14c779a-paragraph  n2-style-cf36fb5bd19ea71991402b6b7a7a8df4-heading  n2-ow\\\">run as many iPads as needed \\u2013 no license fees or limits<br><br><br \\/>\\nmultiple iPads can use a single or separate cash drawer<br><br><br \\/>\\non-screen tipping and email receipts complete mobile functionality<br><br><br \\/>\\nkitchen \\/ fulfillment printing frees sales people to focus on customers<br><br><br \\/>\\nunlimited suspend \\/ unsuspend and add more items to the sale <\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:680px;top:222px;width:512px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"680\\\" data-desktopportraittop=\\\"222\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"512\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5IjoyLjI1LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjYuNDUsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-b2be0fe1cd049e7bf43d6102f14c779a-paragraph  n2-style-cf36fb5bd19ea71991402b6b7a7a8df4-heading  n2-ow\\\">create and complete retail sales transactions<br><br><br \\/>\\ncreate new and update existing customer data records<br><br><br \\/>\\nautomatically relieve location specific inventory with each sale<br><br><br \\/>\\nupdate and record payment, shipping and pickup status live<\\/p>\\n<\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"21\\\" data-id=\\\"8\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-8\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:58px;width:487px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"58\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"487\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLCJkZWxheSI6MTAuMDUsInkiOjQwMH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZHVyYXRpb24iOjAuNDUsImRlbGF5Ijo5LjA1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph   n2-ow\\\">The right tools for the job<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:58px;width:487px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"58\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"487\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLCJkZWxheSI6MS41LCJ5Ijo0MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjowLjM1LCJkZWxheSI6Ny4yLCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph   n2-ow\\\">Intuitive design promotes easy training and use<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-261px;top:157px;width:574px;height:451px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-261\\\" data-desktopportraittop=\\\"157\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"574\\\" data-desktopportraitheight=\\\"451\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJsb29wUmVwZWF0U2VsZk9ubHkiOm51bGwsInNwZWNpYWxaZXJvIjowLCJ0cmFuc2Zvcm1PcmlnaW4iOiI1MHwqfDUwfCp8MCIsImluIjpbeyJuYW1lIjoiQm90dG9tIiwiZHVyYXRpb24iOjIuNzUsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjoxLCJkZWxheSI6MTYuODUsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-style-71a2feb2f0c2a2348020a44ba8a4fb41-heading  n2-ss-img-wrapper n2-ow\\\" style=\\\"overflow:hidden;\\\"><img src=\\\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/02\\/EMViPadCheckout-1.png\\\" id=\\\"n2-ss-3item13\\\" alt=\\\"Image is not available\\\" style=\\\"display: inline-block; max-width: 100%; width: auto;height: auto;\\\" class=\\\" n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:67px;top:58px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"67\\\" data-desktopportraittop=\\\"58\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJvcGFjaXR5IjowfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjE5LjM1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-40069188d4f7d44ba796e4215f616848-paragraph   n2-ow\\\"><i>Easy alcohol sales tools<\\/i><\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:170px;width:503px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"170\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"503\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLCJkZWxheSI6MTAsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImRlbGF5Ijo4LjgsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><ol class=\\\"n2-font-a9bc25a9cdd11cca626a41966fde16cf-list n2-style-1801-heading  n2-ow\\\" style=\\\"list-style-type:disc\\\"><li class=\\\" n2-ow\\\">associate sale with customer record<\\/li><li class=\\\" n2-ow\\\">create new customer records<\\/li><li class=\\\" n2-ow\\\">automate member and quantity discounting<\\/li><li class=\\\" n2-ow\\\">setup sale for shipping in order<\\/li><li class=\\\" n2-ow\\\">onscreen tipping<\\/li><li class=\\\" n2-ow\\\">promo code entry ease<\\/li><\\/ol><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:170px;width:510px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"170\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"510\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5IjoyLjI1LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC4zLCJkZWxheSI6Ni42NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><ol class=\\\"n2-font-a9bc25a9cdd11cca626a41966fde16cf-list n2-style-1801-heading  n2-ow\\\" style=\\\"list-style-type:disc\\\"><li class=\\\" n2-ow\\\">customizable product categories<\\/li><li class=\\\" n2-ow\\\">easy product selection<\\/li><li class=\\\" n2-ow\\\">easy quantity adjustments<\\/li><li class=\\\" n2-ow\\\">barcode scanning supported<\\/li><li class=\\\" n2-ow\\\">easy checkout including card on file<\\/li><\\/ol><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:351px;top:199px;width:auto;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"351\\\" data-desktopportraittop=\\\"199\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"auto\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5Ijo1LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC41LCJkZWxheSI6MTQuMywib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ss-button-container n2-ow n2-font-ca397005a3ed0cbbb59285a9661f2379-link  n2-ss-nowrap\\\"><a class=\\\"n2-style-cc879340e6cf7c9d629472be99879238-heading  n2-ow \\\" href=\\\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\\\"><div><div>Request a Demo<\\/div><\\/div><\\/a><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"11\\\" data-id=\\\"9\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-9\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:86px;width:487px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"86\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"487\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLCJkZWxheSI6MC4yNSwieSI6NDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjguOSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph   n2-ow\\\">Got clubs?<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-216px;top:212px;width:375px;height:500px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-216\\\" data-desktopportraittop=\\\"212\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"375\\\" data-desktopportraitheight=\\\"500\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJsb29wUmVwZWF0U2VsZk9ubHkiOm51bGwsInNwZWNpYWxaZXJvIjowLCJ0cmFuc2Zvcm1PcmlnaW4iOiI1MHwqfDUwfCp8MCIsImluIjpbeyJuYW1lIjoiQm90dG9tIiwiZHVyYXRpb24iOjIuNzUsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjoxLjEsImRlbGF5Ijo2Ljc1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-style-71a2feb2f0c2a2348020a44ba8a4fb41-heading  n2-ss-img-wrapper n2-ow\\\" style=\\\"overflow:hidden;\\\"><img src=\\\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/01\\/iPadCustomer.png\\\" id=\\\"n2-ss-3item19\\\" alt=\\\"Image is not available\\\" style=\\\"display: inline-block; max-width: 100%; width: auto;height: auto;\\\" class=\\\" n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:67px;top:58px;width:520px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"67\\\" data-desktopportraittop=\\\"58\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"520\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MSwiZGVsYXkiOjAuMiwib3BhY2l0eSI6MH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZHVyYXRpb24iOjAuNDUsImRlbGF5Ijo4Ljk1LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-40069188d4f7d44ba796e4215f616848-paragraph   n2-ow\\\"><i>Unique specialty features<\\/i><\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:170px;width:510px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"170\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"510\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjE1LCJkZWxheSI6MS42LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC41LCJkZWxheSI6Ny4zNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><ol class=\\\"n2-font-a9bc25a9cdd11cca626a41966fde16cf-list n2-style-1801-heading  n2-ow\\\" style=\\\"list-style-type:disc\\\"><li class=\\\" n2-ow\\\">iPad \\/ paperless signups<\\/li><li class=\\\" n2-ow\\\">auto discounting<\\/li><li class=\\\" n2-ow\\\">capture card-on-file<\\/li><li class=\\\" n2-ow\\\">on-screen pickup list with on-screen signature<\\/li><li class=\\\" n2-ow\\\">automated product swaps<\\/li><\\/ol><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:371px;top:170px;width:auto;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"371\\\" data-desktopportraittop=\\\"170\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"auto\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5Ijo0LjksInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjowLjQ1LCJkZWxheSI6NC40NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ss-button-container n2-ow n2-font-ca397005a3ed0cbbb59285a9661f2379-link  n2-ss-nowrap\\\"><a class=\\\"n2-style-cc879340e6cf7c9d629472be99879238-heading  n2-ow \\\" href=\\\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\\\"><div><div>Request a Demo<\\/div><\\/div><\\/a><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"11\\\" data-id=\\\"10\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-10\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:86px;width:487px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"86\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"487\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLCJkZWxheSI6MC41NSwieSI6NDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjguNTUsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph   n2-ow\\\">Got table service?<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-216px;top:212px;width:375px;height:500px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-216\\\" data-desktopportraittop=\\\"212\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"375\\\" data-desktopportraitheight=\\\"500\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJsb29wUmVwZWF0U2VsZk9ubHkiOm51bGwsInNwZWNpYWxaZXJvIjowLCJ0cmFuc2Zvcm1PcmlnaW4iOiI1MHwqfDUwfCp8MCIsImluIjpbeyJuYW1lIjoiQm90dG9tIiwiZHVyYXRpb24iOjIuNzUsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjoxLCJkZWxheSI6Ni44LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-style-71a2feb2f0c2a2348020a44ba8a4fb41-heading  n2-ss-img-wrapper n2-ow\\\" style=\\\"overflow:hidden;\\\"><img src=\\\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/01\\/iPadNewOrder.png\\\" id=\\\"n2-ss-3item24\\\" alt=\\\"Image is not available\\\" style=\\\"display: inline-block; max-width: 100%; width: auto;height: auto;\\\" class=\\\" n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:170px;width:510px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"170\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"510\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjU1LCJkZWxheSI6MS41LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjcuMDUsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><ol class=\\\"n2-font-a9bc25a9cdd11cca626a41966fde16cf-list n2-style-1801-heading  n2-ow\\\" style=\\\"list-style-type:disc\\\"><li class=\\\" n2-ow\\\">kitchen \\/ fulfillment printing<\\/li><li class=\\\" n2-ow\\\">modifiers<\\/li><li class=\\\" n2-ow\\\">on-screen product detail<\\/li><li class=\\\" n2-ow\\\">receipt tipping or on-screen tipping options<\\/li><\\/ol><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:351px;top:170px;width:auto;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"351\\\" data-desktopportraittop=\\\"170\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"auto\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5Ijo0Ljk1LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjQuMzUsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ss-button-container n2-ow n2-font-ca397005a3ed0cbbb59285a9661f2379-link  n2-ss-nowrap\\\"><a class=\\\"n2-style-cc879340e6cf7c9d629472be99879238-heading  n2-ow \\\" href=\\\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\\\"><div><div>Request a Demo<\\/div><\\/div><\\/a><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"11\\\" data-id=\\\"11\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-11\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:86px;width:487px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"86\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"487\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLCJkZWxheSI6MC41NSwieSI6NDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjguNiwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph   n2-ow\\\">Got promotions?<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-216px;top:212px;width:375px;height:500px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-216\\\" data-desktopportraittop=\\\"212\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"375\\\" data-desktopportraitheight=\\\"500\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJsb29wUmVwZWF0U2VsZk9ubHkiOm51bGwsInNwZWNpYWxaZXJvIjowLCJ0cmFuc2Zvcm1PcmlnaW4iOiI1MHwqfDUwfCp8MCIsImluIjpbeyJuYW1lIjoiQm90dG9tIiwiZHVyYXRpb24iOjIuNzUsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjoxLjI1LCJkZWxheSI6Ni42LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-style-71a2feb2f0c2a2348020a44ba8a4fb41-heading  n2-ss-img-wrapper n2-ow\\\" style=\\\"overflow:hidden;\\\"><img src=\\\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/01\\/iPadCheckoutSlide.png\\\" id=\\\"n2-ss-3item28\\\" alt=\\\"Image is not available\\\" style=\\\"display: inline-block; max-width: 100%; width: auto;height: auto;\\\" class=\\\" n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:170px;width:510px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"170\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"510\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjU1LCJkZWxheSI6MS41LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC41LCJkZWxheSI6Ny4wNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><ol class=\\\"n2-font-a9bc25a9cdd11cca626a41966fde16cf-list n2-style-1801-heading  n2-ow\\\" style=\\\"list-style-type:disc\\\"><li class=\\\" n2-ow\\\">easily apply promo codes<\\/li><li class=\\\" n2-ow\\\">easily apply shipping promos<\\/li><li class=\\\" n2-ow\\\">% or $ discounts<\\/li><li class=\\\" n2-ow\\\">split lines for buy one, get one<\\/li><\\/ol><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:351px;top:170px;width:auto;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"351\\\" data-desktopportraittop=\\\"170\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"auto\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5Ijo1LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjQuMzUsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ss-button-container n2-ow n2-font-ca397005a3ed0cbbb59285a9661f2379-link  n2-ss-nowrap\\\"><a class=\\\"n2-style-cc879340e6cf7c9d629472be99879238-heading  n2-ow \\\" href=\\\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\\\"><div><div>Request a Demo<\\/div><\\/div><\\/a><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"11\\\" data-id=\\\"12\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-12\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:86px;width:487px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"86\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"487\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLCJkZWxheSI6MC41NSwieSI6NDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjguNTUsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph   n2-ow\\\">Automate inventory management<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-216px;top:212px;width:375px;height:500px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-216\\\" data-desktopportraittop=\\\"212\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"375\\\" data-desktopportraitheight=\\\"500\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJsb29wUmVwZWF0U2VsZk9ubHkiOm51bGwsInNwZWNpYWxaZXJvIjowLCJ0cmFuc2Zvcm1PcmlnaW4iOiI1MHwqfDUwfCp8MCIsImluIjpbeyJuYW1lIjoiQm90dG9tIiwiZHVyYXRpb24iOjIuNzUsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjoxLCJkZWxheSI6Ni44LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-style-71a2feb2f0c2a2348020a44ba8a4fb41-heading  n2-ss-img-wrapper n2-ow\\\" style=\\\"overflow:hidden;\\\"><img src=\\\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/04\\/iPadTransfer.png\\\" id=\\\"n2-ss-3item32\\\" alt=\\\"Image is not available\\\" style=\\\"display: inline-block; max-width: 100%; width: auto;height: auto;\\\" class=\\\" n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:67px;top:58px;width:520px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"67\\\" data-desktopportraittop=\\\"58\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"520\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJvcGFjaXR5IjowfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjkuMywib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-40069188d4f7d44ba796e4215f616848-paragraph   n2-ow\\\"><i>Advanced inventory <\\/i><\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:170px;width:510px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"170\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"510\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjE1LCJkZWxheSI6MS42LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC41LCJkZWxheSI6Ny4zLCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><ol class=\\\"n2-font-a9bc25a9cdd11cca626a41966fde16cf-list n2-style-1801-heading  n2-ow\\\" style=\\\"list-style-type:disc\\\"><li class=\\\" n2-ow\\\">reduce inventory with each sales transaction<\\/li><li class=\\\" n2-ow\\\">multiple location capable<\\/li><li class=\\\" n2-ow\\\">on-screen sign for receiving<\\/li><li class=\\\" n2-ow\\\">create inventory transfers<\\/li><li class=\\\" n2-ow\\\">easy adjustment to update stock levels<\\/li><\\/ol><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:351px;top:170px;width:auto;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"351\\\" data-desktopportraittop=\\\"170\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"auto\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5Ijo0Ljk1LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40LCJkZWxheSI6NC40LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ss-button-container n2-ow n2-font-ca397005a3ed0cbbb59285a9661f2379-link  n2-ss-nowrap\\\"><a class=\\\"n2-style-cc879340e6cf7c9d629472be99879238-heading  n2-ow \\\" href=\\\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\\\"><div><div>Request a Demo<\\/div><\\/div><\\/a><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"11\\\" data-id=\\\"13\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-13\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:58px;width:487px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"58\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"487\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLCJkZWxheSI6MS4xLCJ5Ijo0MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjowLjQ1LCJkZWxheSI6OCwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph   n2-ow\\\">PCI compliant \\u2013 \\u201cout of scope\\u201d<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-261px;top:157px;width:574px;height:451px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-261\\\" data-desktopportraittop=\\\"157\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"574\\\" data-desktopportraitheight=\\\"451\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJsb29wUmVwZWF0U2VsZk9ubHkiOm51bGwsInNwZWNpYWxaZXJvIjowLCJ0cmFuc2Zvcm1PcmlnaW4iOiI1MHwqfDUwfCp8MCIsImluIjpbeyJuYW1lIjoiQm90dG9tIiwiZHVyYXRpb24iOjIuNzUsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjoxLCJkZWxheSI6Ni44LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-style-71a2feb2f0c2a2348020a44ba8a4fb41-heading  n2-ss-img-wrapper n2-ow\\\" style=\\\"overflow:hidden;\\\"><img src=\\\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/02\\/EMViPadCheckout-1.png\\\" id=\\\"n2-ss-3item37\\\" alt=\\\"Image is not available\\\" style=\\\"display: inline-block; max-width: 100%; width: auto;height: auto;\\\" class=\\\" n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:60px;top:58px;width:400px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"60\\\" data-desktopportraittop=\\\"58\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"400\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJvcGFjaXR5IjowfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjkuMywib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-40069188d4f7d44ba796e4215f616848-paragraph   n2-ow\\\"><i>Payment Tools<\\/i><\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:170px;width:503px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"170\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"503\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLCJkZWxheSI6Mi4zNSwieSI6LTQwMH1dLCJvdXQiOlt7Im5hbWUiOiJGYWRlIiwiZGVsYXkiOjYuNCwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><ol class=\\\"n2-font-a9bc25a9cdd11cca626a41966fde16cf-list n2-style-1801-heading  n2-ow\\\" style=\\\"list-style-type:disc\\\"><li class=\\\" n2-ow\\\">point-to-point encryption<\\/li><li class=\\\" n2-ow\\\">full tokenization<\\/li><li class=\\\" n2-ow\\\">EMV chip card ready<\\/li><li class=\\\" n2-ow\\\">easy your PCI compliance <\\/li><li class=\\\" n2-ow\\\">multiple processor choices<\\/li><li class=\\\" n2-ow\\\">truly mobile card readers<\\/li><\\/ol><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:358px;top:191px;width:auto;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"358\\\" data-desktopportraittop=\\\"191\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"auto\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5Ijo1Ljk1LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6My4wNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ss-button-container n2-ow n2-font-ca397005a3ed0cbbb59285a9661f2379-link  n2-ss-nowrap\\\"><a class=\\\"n2-style-cc879340e6cf7c9d629472be99879238-heading  n2-ow \\\" href=\\\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\\\"><div><div>Request a Demo<\\/div><\\/div><\\/a><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"11\\\" data-id=\\\"14\\\" style=\\\"\\\" class=\\\" n2-ss-slide n2-ss-canvas n2-ow  n2-ss-slide-14\\\"><div class=\\\"n2-ss-slide-background n2-ow\\\" data-mode=\\\"fill\\\"><\\/div><div class=\\\"n2-ss-layers-container n2-ow\\\" data-csstextalign=\\\"center\\\" style=\\\"\\\"><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:13px;width:487px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"13\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"487\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IlRvcCIsImR1cmF0aW9uIjoxLCJkZWxheSI6MC42LCJ5Ijo0MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjowLjQ1LCJkZWxheSI6OC41NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-92f16d7eaefb17e96cd93eccb7dea336-paragraph   n2-ow\\\">Our Thrilled Customers love\\u2026<\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:-216px;top:212px;width:375px;height:500px;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"-216\\\" data-desktopportraittop=\\\"212\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"375\\\" data-desktopportraitheight=\\\"500\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJsb29wUmVwZWF0U2VsZk9ubHkiOm51bGwsInNwZWNpYWxaZXJvIjowLCJ0cmFuc2Zvcm1PcmlnaW4iOiI1MHwqfDUwfCp8MCIsImluIjpbeyJuYW1lIjoiQm90dG9tIiwiZHVyYXRpb24iOjIuNzUsInkiOi00MDB9XSwib3V0IjpbeyJuYW1lIjoiRmFkZSIsImR1cmF0aW9uIjoxLjA1LCJkZWxheSI6Ni44LCJvcGFjaXR5IjowfV19\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-style-71a2feb2f0c2a2348020a44ba8a4fb41-heading  n2-ss-img-wrapper n2-ow\\\" style=\\\"overflow:hidden;\\\"><img src=\\\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/09\\/iPadProductDetail.png\\\" id=\\\"n2-ss-3item42\\\" alt=\\\"Image is not available\\\" style=\\\"display: inline-block; max-width: 100%; width: auto;height: auto;\\\" class=\\\" n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" \\/><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:67px;top:58px;width:520px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"67\\\" data-desktopportraittop=\\\"58\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"520\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkZhZGUiLCJvcGFjaXR5IjowfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40NSwiZGVsYXkiOjkuMzUsIm9wYWNpdHkiOjB9XX0=\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ow n2-ow-all n2-ss-desktop n2-ss-mobile n2-ss-tablet\\\"><p class=\\\"n2-font-40069188d4f7d44ba796e4215f616848-paragraph   n2-ow\\\"><i>On the cutting Edge<\\/i><\\/p>\\n<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:683px;top:69px;width:510px;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"683\\\" data-desktopportraittop=\\\"69\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"510\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"left\\\" data-desktopportraitvalign=\\\"top\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImR1cmF0aW9uIjoxLjE1LCJkZWxheSI6MS42LCJlYXNlIjoibGluZWFyIiwieSI6Ii04MDAifV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkZWxheSI6Ny4wNSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><ol class=\\\"n2-font-a9bc25a9cdd11cca626a41966fde16cf-list n2-style-1801-heading  n2-ow\\\" style=\\\"list-style-type:disc\\\"><li class=\\\" n2-ow\\\">electric payment signatures<\\/li><li class=\\\" n2-ow\\\">multiple payments on a single transaction<\\/li><li class=\\\" n2-ow\\\">package as product sales<\\/li><li class=\\\" n2-ow\\\">running a tab<\\/li><li class=\\\" n2-ow\\\">employee and management permission levels<\\/li><li class=\\\" n2-ow\\\">line item overrides on price or discounts<\\/li><li class=\\\" n2-ow\\\">easy to add multiple shipping addresses <\\/li><li class=\\\" n2-ow\\\">integrates with shipping company<\\/li><li class=\\\" n2-ow\\\">integrates with compliance company<\\/li><li class=\\\" n2-ow\\\">cash drawer management<\\/li><\\/ol><\\/div><div class=\\\"n2-ss-layer n2-ow\\\" style=\\\"left:464px;top:211px;width:auto;height:auto;overflow:visible;\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"464\\\" data-desktopportraittop=\\\"211\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"auto\\\" data-desktopportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\" data-rotation=\\\"0\\\" data-animations=\\\"eyJzcGVjaWFsWmVybyI6MCwidHJhbnNmb3JtT3JpZ2luIjoiNTB8Knw1MHwqfDAiLCJpbiI6W3sibmFtZSI6IkJvdHRvbSIsImRlbGF5Ijo0Ljk1LCJ5IjotNDAwfV0sIm91dCI6W3sibmFtZSI6IkZhZGUiLCJkdXJhdGlvbiI6MC40LCJkZWxheSI6NC40NSwib3BhY2l0eSI6MH1dfQ==\\\" data-desktopportrait=\\\"1\\\" data-desktoplandscape=\\\"1\\\" data-tabletportrait=\\\"1\\\" data-tabletlandscape=\\\"1\\\" data-mobileportrait=\\\"1\\\" data-mobilelandscape=\\\"1\\\" data-adaptivefont=\\\"0\\\" data-desktopportraitfontsize=\\\"100\\\" data-plugin=\\\"rendered\\\"><div class=\\\"n2-ss-button-container n2-ow n2-font-ca397005a3ed0cbbb59285a9661f2379-link  n2-ss-nowrap\\\"><a class=\\\"n2-style-cc879340e6cf7c9d629472be99879238-heading  n2-ow \\\" href=\\\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\\\"><div><div>Request a Demo<\\/div><\\/div><\\/a><\\/div><\\/div><\\/div><\\/div>                <\\/div>\\r\\n            <\\/div>\\r\\n            <div data-ssleft=\\\"0+15\\\" data-sstop=\\\"height\\/2-previousheight\\/2\\\" id=\\\"n2-ss-3-arrow-previous\\\" class=\\\"n2-ss-widget n2-ss-widget-display-desktop n2-ss-widget-display-tablet n2-ss-widget-display-mobile n2-ss-widget-display-hover nextend-arrow n2-ow nextend-arrow-previous  nextend-arrow-animated-fade n2-ib\\\" style=\\\"position: absolute;\\\" role=\\\"button\\\" aria-label=\\\"Previous slide\\\" tabindex=\\\"0\\\"><img class=\\\"n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTEuNDMzIDE1Ljk5MkwyMi42OSA1LjcxMmMuMzkzLS4zOS4zOTMtMS4wMyAwLTEuNDItLjM5My0uMzktMS4wMy0uMzktMS40MjMgMGwtMTEuOTggMTAuOTRjLS4yMS4yMS0uMy40OS0uMjg1Ljc2LS4wMTUuMjguMDc1LjU2LjI4NC43N2wxMS45OCAxMC45NGMuMzkzLjM5IDEuMDMuMzkgMS40MjQgMCAuMzkzLS40LjM5My0xLjAzIDAtMS40MmwtMTEuMjU3LTEwLjI5IiBmaWxsPSIjZmZmZmZmIiBvcGFjaXR5PSIwLjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==\\\" alt=\\\"previous arrow\\\" \\/><\\/div>\\n<div data-ssright=\\\"0+15\\\" data-sstop=\\\"height\\/2-nextheight\\/2\\\" id=\\\"n2-ss-3-arrow-next\\\" class=\\\"n2-ss-widget n2-ss-widget-display-desktop n2-ss-widget-display-tablet n2-ss-widget-display-mobile n2-ss-widget-display-hover nextend-arrow n2-ow nextend-arrow-next  nextend-arrow-animated-fade n2-ib\\\" style=\\\"position: absolute;\\\" role=\\\"button\\\" aria-label=\\\"Next slide\\\" tabindex=\\\"0\\\"><img class=\\\"n2-ow\\\" data-no-lazy=\\\"1\\\" data-hack=\\\"data-lazy-src\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAuNzIyIDQuMjkzYy0uMzk0LS4zOS0xLjAzMi0uMzktMS40MjcgMC0uMzkzLjM5LS4zOTMgMS4wMyAwIDEuNDJsMTEuMjgzIDEwLjI4LTExLjI4MyAxMC4yOWMtLjM5My4zOS0uMzkzIDEuMDIgMCAxLjQyLjM5NS4zOSAxLjAzMy4zOSAxLjQyNyAwbDEyLjAwNy0xMC45NGMuMjEtLjIxLjMtLjQ5LjI4NC0uNzcuMDE0LS4yNy0uMDc2LS41NS0uMjg2LS43NkwxMC43MiA0LjI5M3oiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuOCIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+\\\" alt=\\\"next arrow\\\" \\/><\\/div>\\n        <\\/div>\\r\\n        <\\/div><div class=\\\"n2-clear\\\"><\\/div><div id=\\\"n2-ss-3-spinner\\\" style=\\\"display: none;\\\"><div><div class=\\\"n2-ss-spinner-simple-white-container\\\"><div class=\\\"n2-ss-spinner-simple-white\\\"><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><div id=\\\"n2-ss-3-placeholder\\\" style=\\\"position: relative;z-index:2;background-color:RGBA(0,0,0,0);max-height:500px; background-color:RGBA(255,255,255,0);\\\"><img style=\\\"width: 100%; max-width:3000px; display: block;opacity:0;\\\" class=\\\"n2-ow\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMCIgd2lkdGg9IjEyMDAiIGhlaWdodD0iNTAwIiA+PC9zdmc+\\\" alt=\\\"Slider\\\" \\/><\\/div><\\/div>\",\"assets\":{\"css\":{\"staticGroup\":{\"smartslider\":\"\\/home\\/activ8commerce\\/public_html\\/activeclubsolutions.net\\/wp-content\\/plugins\\/nextend-smart-slider3-pro\\/library\\/media\\/smartslider.min.css\"},\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[\".n2-ss-spinner-simple-white-container {\\r\\n    position: absolute;\\r\\n    top: 50%;\\r\\n    left: 50%;\\r\\n    margin: -20px;\\r\\n    background: #fff;\\r\\n    width: 20px;\\r\\n    height: 20px;\\r\\n    padding: 10px;\\r\\n    border-radius: 50%;\\r\\n    z-index: 1000;\\r\\n}\\r\\n\\r\\n.n2-ss-spinner-simple-white {\\r\\n  outline: 1px solid RGBA(0,0,0,0);\\r\\n  width:100%;\\r\\n  height: 100%;\\r\\n}\\r\\n\\r\\n.n2-ss-spinner-simple-white:before {\\r\\n    position: absolute;\\r\\n    top: 50%;\\r\\n    left: 50%;\\r\\n    width: 20px;\\r\\n    height: 20px;\\r\\n    margin-top: -11px;\\r\\n    margin-left: -11px;\\r\\n}\\r\\n\\r\\n.n2-ss-spinner-simple-white:not(:required):before {\\r\\n    content: \'\';\\r\\n    border-radius: 50%;\\r\\n    border-top: 2px solid #333;\\r\\n    border-right: 2px solid transparent;\\r\\n    animation: n2SimpleWhite .6s linear infinite;\\r\\n    -webkit-animation: n2SimpleWhite .6s linear infinite;\\r\\n}\\r\\n@keyframes n2SimpleWhite {\\r\\n    to {transform: rotate(360deg);}\\r\\n}\\r\\n\\r\\n@-webkit-keyframes n2SimpleWhite {\\r\\n    to {-webkit-transform: rotate(360deg);}\\r\\n}\"],\"globalInline\":[]},\"less\":{\"staticGroup\":[],\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[],\"globalInline\":[]},\"js\":{\"staticGroup\":{\"smartslider-simple-type-frontend\":\"\\/home\\/activ8commerce\\/public_html\\/activeclubsolutions.net\\/wp-content\\/plugins\\/nextend-smart-slider3-pro\\/library\\/media\\/plugins\\/type\\/simple\\/simple\\/dist\\/smartslider-simple-type-frontend.min.js\"},\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[\"N2R([\\\"nextend-frontend\\\",\\\"smartslider-frontend\\\",\\\"nextend-gsap\\\",\\\"smartslider-simple-type-frontend\\\"],function(){new N2Classes.SmartSliderSimple(\'#n2-ss-3\', {\\\"admin\\\":false,\\\"translate3d\\\":1,\\\"callbacks\\\":\\\"\\\",\\\"background.video.mobile\\\":1,\\\"randomize\\\":{\\\"randomize\\\":0,\\\"randomizeFirst\\\":0},\\\"align\\\":\\\"normal\\\",\\\"isDelayed\\\":0,\\\"load\\\":{\\\"fade\\\":1,\\\"scroll\\\":0},\\\"playWhenVisible\\\":1,\\\"playWhenVisibleAt\\\":0.5,\\\"responsive\\\":{\\\"desktop\\\":1,\\\"tablet\\\":1,\\\"mobile\\\":1,\\\"onResizeEnabled\\\":true,\\\"type\\\":\\\"fullwidth\\\",\\\"downscale\\\":1,\\\"upscale\\\":1,\\\"minimumHeight\\\":0,\\\"maximumHeight\\\":500,\\\"maximumSlideWidth\\\":3000,\\\"maximumSlideWidthLandscape\\\":3000,\\\"maximumSlideWidthTablet\\\":3000,\\\"maximumSlideWidthTabletLandscape\\\":3000,\\\"maximumSlideWidthMobile\\\":3000,\\\"maximumSlideWidthMobileLandscape\\\":3000,\\\"maximumSlideWidthConstrainHeight\\\":0,\\\"forceFull\\\":1,\\\"forceFullOverflowX\\\":\\\"body\\\",\\\"forceFullHorizontalSelector\\\":\\\"\\\",\\\"constrainRatio\\\":1,\\\"verticalOffsetSelectors\\\":\\\"\\\",\\\"decreaseSliderHeight\\\":0,\\\"focusUser\\\":0,\\\"focusAutoplay\\\":0,\\\"deviceModes\\\":{\\\"desktopPortrait\\\":1,\\\"desktopLandscape\\\":0,\\\"tabletPortrait\\\":1,\\\"tabletLandscape\\\":0,\\\"mobilePortrait\\\":1,\\\"mobileLandscape\\\":0},\\\"normalizedDeviceModes\\\":{\\\"unknownUnknown\\\":[\\\"unknown\\\",\\\"Unknown\\\"],\\\"desktopPortrait\\\":[\\\"desktop\\\",\\\"Portrait\\\"],\\\"desktopLandscape\\\":[\\\"desktop\\\",\\\"Portrait\\\"],\\\"tabletPortrait\\\":[\\\"tablet\\\",\\\"Portrait\\\"],\\\"tabletLandscape\\\":[\\\"tablet\\\",\\\"Portrait\\\"],\\\"mobilePortrait\\\":[\\\"mobile\\\",\\\"Portrait\\\"],\\\"mobileLandscape\\\":[\\\"mobile\\\",\\\"Portrait\\\"]},\\\"verticalRatioModifiers\\\":{\\\"unknownUnknown\\\":1,\\\"desktopPortrait\\\":1,\\\"desktopLandscape\\\":1,\\\"tabletPortrait\\\":1,\\\"tabletLandscape\\\":1,\\\"mobilePortrait\\\":1,\\\"mobileLandscape\\\":1},\\\"minimumFontSizes\\\":{\\\"desktopPortrait\\\":1,\\\"desktopLandscape\\\":1,\\\"tabletPortrait\\\":1,\\\"tabletLandscape\\\":1,\\\"mobilePortrait\\\":1,\\\"mobileLandscape\\\":1},\\\"ratioToDevice\\\":{\\\"Portrait\\\":{\\\"tablet\\\":0.7,\\\"mobile\\\":0.5},\\\"Landscape\\\":{\\\"tablet\\\":0,\\\"mobile\\\":0}},\\\"sliderWidthToDevice\\\":{\\\"desktopPortrait\\\":1200,\\\"desktopLandscape\\\":1200,\\\"tabletPortrait\\\":840,\\\"tabletLandscape\\\":0,\\\"mobilePortrait\\\":600,\\\"mobileLandscape\\\":0},\\\"basedOn\\\":\\\"combined\\\",\\\"orientationMode\\\":\\\"width_and_height\\\",\\\"overflowHiddenPage\\\":0,\\\"desktopPortraitScreenWidth\\\":1200,\\\"tabletPortraitScreenWidth\\\":800,\\\"mobilePortraitScreenWidth\\\":440,\\\"tabletLandscapeScreenWidth\\\":800,\\\"mobileLandscapeScreenWidth\\\":440},\\\"controls\\\":{\\\"scroll\\\":1,\\\"drag\\\":0,\\\"touch\\\":\\\"horizontal\\\",\\\"keyboard\\\":1,\\\"tilt\\\":0},\\\"lazyLoad\\\":0,\\\"lazyLoadNeighbor\\\":0,\\\"blockrightclick\\\":0,\\\"maintainSession\\\":0,\\\"autoplay\\\":{\\\"enabled\\\":1,\\\"start\\\":1,\\\"duration\\\":11000,\\\"autoplayToSlide\\\":-1,\\\"autoplayToSlideIndex\\\":-1,\\\"allowReStart\\\":0,\\\"pause\\\":{\\\"click\\\":1,\\\"mouse\\\":\\\"0\\\",\\\"mediaStarted\\\":1},\\\"resume\\\":{\\\"click\\\":0,\\\"mouse\\\":\\\"0\\\",\\\"mediaEnded\\\":1,\\\"slidechanged\\\":0}},\\\"perspective\\\":1000,\\\"layerMode\\\":{\\\"playOnce\\\":0,\\\"playFirstLayer\\\":1,\\\"mode\\\":\\\"skippable\\\",\\\"inAnimation\\\":\\\"mainInEnd\\\"},\\\"parallax\\\":{\\\"enabled\\\":1,\\\"mobile\\\":0,\\\"is3D\\\":0,\\\"animate\\\":1,\\\"horizontal\\\":\\\"mouse\\\",\\\"vertical\\\":\\\"mouse\\\",\\\"origin\\\":\\\"slider\\\",\\\"scrollmove\\\":\\\"both\\\"},\\\"postBackgroundAnimations\\\":0,\\\"initCallbacks\\\":[\\\"N2D(\\\\\\\"SmartSliderWidgetArrowImage\\\\\\\",function(i,e){function s(e,s,t,h){this.slider=e,this.slider.started(i.proxy(this.start,this,s,t,h))}return s.prototype.start=function(e,s,t){return this.slider.sliderElement.data(\\\\\\\"arrow\\\\\\\")?!1:(this.slider.sliderElement.data(\\\\\\\"arrow\\\\\\\",this),this.deferred=i.Deferred(),this.slider.sliderElement.on(\\\\\\\"SliderDevice\\\\\\\",i.proxy(this.onDevice,this)).trigger(\\\\\\\"addWidget\\\\\\\",this.deferred),this.previous=i(\\\\\\\"#\\\\\\\"+this.slider.elementID+\\\\\\\"-arrow-previous\\\\\\\").on(\\\\\\\"click\\\\\\\",i.proxy(function(i){i.stopPropagation(),this.slider[n2const.rtl.previous]()},this)),this.previousResize=this.previous.find(\\\\\\\".n2-resize\\\\\\\"),0===this.previousResize.length&&(this.previousResize=this.previous),this.next=i(\\\\\\\"#\\\\\\\"+this.slider.elementID+\\\\\\\"-arrow-next\\\\\\\").on(\\\\\\\"click\\\\\\\",i.proxy(function(i){i.stopPropagation(),this.slider[n2const.rtl.next]()},this)),this.nextResize=this.next.find(\\\\\\\".n2-resize\\\\\\\"),0===this.nextResize.length&&(this.nextResize=this.next),this.desktopRatio=e,this.tabletRatio=s,this.mobileRatio=t,void i.when(this.previous.n2imagesLoaded(),this.next.n2imagesLoaded()).always(i.proxy(this.loaded,this)))},s.prototype.loaded=function(){this.previous.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.previousResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.previousWidth=this.previousResize.width(),this.previousHeight=this.previousResize.height(),this.previousResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.previous.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.next.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.nextResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"inline-block\\\\\\\"),this.nextWidth=this.nextResize.width(),this.nextHeight=this.nextResize.height(),this.nextResize.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.next.css(\\\\\\\"display\\\\\\\",\\\\\\\"\\\\\\\"),this.previousResize.find(\\\\\\\"img\\\\\\\").css(\\\\\\\"width\\\\\\\",\\\\\\\"100%\\\\\\\"),this.nextResize.find(\\\\\\\"img\\\\\\\").css(\\\\\\\"width\\\\\\\",\\\\\\\"100%\\\\\\\"),this.onDevice(null,{device:this.slider.responsive.getDeviceMode()}),this.deferred.resolve()},s.prototype.onDevice=function(i,e){var s=1;switch(e.device){case\\\\\\\"tablet\\\\\\\":s=this.tabletRatio;break;case\\\\\\\"mobile\\\\\\\":s=this.mobileRatio;break;default:s=this.desktopRatio}this.previousResize.width(this.previousWidth*s),this.previousResize.height(this.previousHeight*s),this.nextResize.width(this.nextWidth*s),this.nextResize.height(this.nextHeight*s)},s});\\\",\\\"new N2Classes.SmartSliderWidgetArrowImage(this, 1, 0.7, 0.5);\\\"],\\\"allowBGImageAttachmentFixed\\\":false,\\\"bgAnimationsColor\\\":\\\"RGBA(51,51,51,1)\\\",\\\"bgAnimations\\\":0,\\\"mainanimation\\\":{\\\"type\\\":\\\"horizontal\\\",\\\"duration\\\":800,\\\"delay\\\":0,\\\"ease\\\":\\\"easeOutQuad\\\",\\\"parallax\\\":0,\\\"shiftedBackgroundAnimation\\\":\\\"auto\\\"},\\\"carousel\\\":1,\\\"dynamicHeight\\\":0});});\"],\"globalInline\":[]},\"googleFonts\":{\"staticGroup\":[],\"files\":{\"Roboto\":[\"300\",\"400\"]},\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[],\"globalInline\":[]},\"image\":{\"images\":{\"0\":\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/09\\/running-man_1.png\",\"1\":\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2015\\/01\\/6-1.png\",\"2\":\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/02\\/EMViPadCheckout-1.png\",\"3\":\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/01\\/iPadCustomer.png\",\"4\":\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/01\\/iPadNewOrder.png\",\"5\":\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/01\\/iPadCheckoutSlide.png\",\"6\":\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/04\\/iPadTransfer.png\",\"8\":\"\\/\\/activeclubsolutions.net\\/wp-content\\/uploads\\/2017\\/09\\/iPadProductDetail.png\"}}}}',0,1);
/*!40000 ALTER TABLE `wpqk_nextend2_section_storage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_nextend2_smartslider3_generators`
--

DROP TABLE IF EXISTS `wpqk_nextend2_smartslider3_generators`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_nextend2_smartslider3_generators` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group` varchar(254) NOT NULL,
  `type` varchar(254) NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_nextend2_smartslider3_generators`
--

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

--
-- Table structure for table `wpqk_nextend2_smartslider3_sliders`
--

DROP TABLE IF EXISTS `wpqk_nextend2_smartslider3_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_nextend2_smartslider3_sliders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `type` varchar(30) NOT NULL,
  `params` mediumtext NOT NULL,
  `time` datetime NOT NULL,
  `thumbnail` varchar(255) NOT NULL,
  `ordering` int(11) NOT NULL DEFAULT 0,
  `alias` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_nextend2_smartslider3_sliders`
--

LOCK TABLES `wpqk_nextend2_smartslider3_sliders` WRITE;
/*!40000 ALTER TABLE `wpqk_nextend2_smartslider3_sliders` DISABLE KEYS */;
INSERT INTO `wpqk_nextend2_smartslider3_sliders` VALUES
(1,'Sample Slider','simple','{\"controlsScroll\":\"0\",\"controlsDrag\":\"1\",\"controlsTouch\":\"horizontal\",\"controlsKeyboard\":\"1\",\"controlsTilt\":\"0\",\"thumbnail\":\"\",\"align\":\"normal\",\"backgroundMode\":\"fill\",\"animation\":\"horizontal\",\"animation-duration\":\"600\",\"animation-delay\":\"0\",\"animation-easing\":\"easeOutQuad\",\"animation-parallax\":\"1\",\"background-animation\":\"\",\"background-animation-speed\":\"normal\",\"animation-shifted-background-animation\":\"auto\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"carousel\":\"1\",\"background\":\"\",\"background-fixed\":\"0\",\"background-size\":\"cover\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"dynamic-height\":\"0\",\"loop-single-slide\":\"0\",\"padding\":\"0|*|0|*|0|*|0\",\"border-width\":\"0\",\"border-color\":\"3E3E3Eff\",\"border-radius\":\"0\",\"slider-preset\":\"\",\"slider-css\":\"\",\"slide-css\":\"\",\"width\":\"1200\",\"height\":\"600\",\"desktop-portrait-minimum-font-size\":\"1\",\"desktop-landscape\":\"0\",\"desktop-landscape-width\":\"1440\",\"desktop-landscape-height\":\"0\",\"desktop-landscape-minimum-font-size\":\"1\",\"fontsize\":\"16\",\"desktop\":\"1\",\"tablet\":\"1\",\"mobile\":\"1\",\"margin\":\"0|*|0|*|0|*|0\",\"tablet-portrait\":\"0\",\"tablet-portrait-width\":\"800\",\"tablet-portrait-height\":\"0\",\"tablet-portrait-minimum-font-size\":\"1\",\"tablet-landscape\":\"0\",\"tablet-landscape-width\":\"1024\",\"tablet-landscape-height\":\"0\",\"tablet-landscape-minimum-font-size\":\"1\",\"mobile-portrait\":\"0\",\"mobile-portrait-width\":\"440\",\"mobile-portrait-height\":\"0\",\"mobile-portrait-minimum-font-size\":\"1\",\"mobile-landscape\":\"0\",\"mobile-landscape-width\":\"740\",\"mobile-landscape-height\":\"0\",\"mobile-landscape-minimum-font-size\":\"1\",\"responsive-mode\":\"auto\",\"responsiveScaleDown\":\"1\",\"responsiveScaleUp\":\"1\",\"responsiveSliderHeightMin\":\"0\",\"responsiveSliderHeightMax\":\"3000\",\"responsiveSlideWidthMax\":\"3000\",\"autoplay\":\"1\",\"autoplayDuration\":\"8000\",\"autoplayStart\":\"1\",\"autoplayfinish\":\"0|*|loop|*|current\",\"autoplayAllowReStart\":\"0\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"playfirstlayer\":\"1\",\"playonce\":\"0\",\"layer-animation-play-in\":\"end\",\"layer-animation-play-mode\":\"skippable\",\"parallax-enabled\":\"1\",\"parallax-enabled-mobile\":\"0\",\"parallax-3d\":\"0\",\"parallax-animate\":\"1\",\"parallax-horizontal\":\"mouse\",\"parallax-vertical\":\"mouse\",\"parallax-mouse-origin\":\"slider\",\"parallax-scroll-move\":\"both\",\"perspective\":\"1000\",\"imageload\":\"0\",\"imageloadNeighborSlides\":\"0\",\"optimize\":\"0\",\"optimize-quality\":\"70\",\"optimize-background-image-custom\":\"0\",\"optimize-background-image-width\":\"800\",\"optimize-background-image-height\":\"600\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"layer-image-optimize\":\"0\",\"layer-image-tablet\":\"50\",\"layer-image-mobile\":\"30\",\"layer-image-base64\":\"0\",\"layer-image-base64-size\":\"5\",\"playWhenVisible\":\"1\",\"fadeOnLoad\":\"1\",\"fadeOnScroll\":\"0\",\"spinner\":\"simpleWhite\",\"custom-spinner\":\"\",\"custom-spinner-width\":\"100\",\"custom-spinner-height\":\"100\",\"custom-display\":\"1\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"randomize\":\"0\",\"randomizeFirst\":\"0\",\"randomize-cache\":\"1\",\"variations\":\"5\",\"maximumslidecount\":\"1000\",\"global-lightbox\":\"0\",\"global-lightbox-label\":\"0\",\"maintain-session\":\"0\",\"blockrightclick\":\"0\",\"overflow-hidden-page\":\"0\",\"scroll-fix\":\"0\",\"bg-parallax-tablet\":\"1\",\"bg-parallax-mobile\":\"1\",\"callbacks\":\"\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-display-desktop\":\"1\",\"widget-arrow-display-tablet\":\"1\",\"widget-arrow-display-mobile\":\"1\",\"widget-arrow-exclude-slides\":\"\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-responsive-desktop\":\"1\",\"widget-arrow-responsive-tablet\":\"0.7\",\"widget-arrow-responsive-mobile\":\"0.5\",\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/previous\\/thin-horizontal.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-mirror\":\"1\",\"widget-arrow-next-image\":\"\",\"widget-arrow-next\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/next\\/thin-horizontal.svg\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":\"0\",\"widget-arrow-next-hover-color\":\"ffffffcc\",\"widgetbullet\":\"transition\",\"widget-bullet-display-desktop\":\"1\",\"widget-bullet-display-tablet\":\"1\",\"widget-bullet-display-mobile\":\"1\",\"widget-bullet-exclude-slides\":\"\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-thumbnail-show-image\":\"1\",\"widget-bullet-thumbnail-width\":\"120\",\"widget-bullet-thumbnail-height\":\"81\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDsifV19\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-bullet-position-mode\":\"simple\",\"widget-bullet-position-area\":\"12\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-offset\":\"10\",\"widget-bullet-position-horizontal\":\"left\",\"widget-bullet-position-horizontal-position\":\"0\",\"widget-bullet-position-horizontal-unit\":\"px\",\"widget-bullet-position-vertical\":\"top\",\"widget-bullet-position-vertical-position\":\"0\",\"widget-bullet-position-vertical-unit\":\"px\",\"widget-bullet-action\":\"click\",\"widget-bullet-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwYWIiLCJwYWRkaW5nIjoiNXwqfDV8Knw1fCp8NXwqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiI1MCIsImV4dHJhIjoibWFyZ2luOiA0cHg7In0seyJleHRyYSI6IiIsImJhY2tncm91bmRjb2xvciI6IjA5YjQ3NGZmIn1dfQ==\",\"widget-bullet-bar\":\"\",\"widget-bullet-bar-full-size\":\"0\",\"widget-bullet-align\":\"center\",\"widget-bullet-orientation\":\"auto\",\"widget-bullet-overlay\":\"0\",\"widgetautoplay\":\"disabled\",\"widget-autoplay-display-desktop\":\"1\",\"widget-autoplay-display-tablet\":\"1\",\"widget-autoplay-display-mobile\":\"1\",\"widget-autoplay-exclude-slides\":\"\",\"widget-autoplay-display-hover\":\"0\",\"widgetindicator\":\"disabled\",\"widget-indicator-display-desktop\":\"1\",\"widget-indicator-display-tablet\":\"1\",\"widget-indicator-display-mobile\":\"1\",\"widget-indicator-exclude-slides\":\"\",\"widget-indicator-display-hover\":\"0\",\"widgetbar\":\"disabled\",\"widget-bar-display-desktop\":\"1\",\"widget-bar-display-tablet\":\"1\",\"widget-bar-display-mobile\":\"1\",\"widget-bar-exclude-slides\":\"\",\"widget-bar-display-hover\":\"0\",\"widgetthumbnail\":\"disabled\",\"widget-thumbnail-display-desktop\":\"1\",\"widget-thumbnail-display-tablet\":\"1\",\"widget-thumbnail-display-mobile\":\"1\",\"widget-thumbnail-exclude-slides\":\"\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-show-image\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widgetshadow\":\"disabled\",\"widget-shadow-display-desktop\":\"1\",\"widget-shadow-display-tablet\":\"1\",\"widget-shadow-display-mobile\":\"1\",\"widget-shadow-exclude-slides\":\"\",\"widgetfullscreen\":\"disabled\",\"widget-fullscreen-display-desktop\":\"1\",\"widget-fullscreen-display-tablet\":\"1\",\"widget-fullscreen-display-mobile\":\"1\",\"widget-fullscreen-exclude-slides\":\"\",\"widget-fullscreen-display-hover\":\"0\",\"widgethtml\":\"disabled\",\"widget-html-display-desktop\":\"1\",\"widget-html-display-tablet\":\"1\",\"widget-html-display-mobile\":\"1\",\"widget-html-exclude-slides\":\"\",\"widget-html-display-hover\":\"0\",\"widgets\":\"arrow\"}','2015-11-01 14:14:20','',0,NULL),
(2,'Test Slider','simple','{\"controlsScroll\":\"0\",\"controlsDrag\":\"1\",\"controlsTouch\":\"horizontal\",\"controlsKeyboard\":\"1\",\"controlsTilt\":\"0\",\"thumbnail\":\"\",\"align\":\"normal\",\"backgroundMode\":\"fill\",\"shape-divider\":\"\",\"particle\":\"\",\"animation\":\"fade\",\"animation-duration\":\"800\",\"animation-delay\":\"0\",\"animation-easing\":\"easeOutQuad\",\"animation-parallax\":\"1\",\"background-animation\":\"\",\"background-animation-speed\":\"normal\",\"animation-shifted-background-animation\":\"auto\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"carousel\":\"1\",\"background\":\"\",\"background-fixed\":\"0\",\"background-size\":\"cover\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"dynamic-height\":\"0\",\"loop-single-slide\":\"0\",\"padding\":\"0|*|0|*|0|*|0\",\"border-width\":\"0\",\"border-color\":\"3E3E3Eff\",\"border-radius\":\"0\",\"slider-preset\":\"\",\"slider-css\":\"\",\"slide-css\":\"\",\"width\":\"1920\",\"height\":\"500\",\"desktop-portrait-minimum-font-size\":\"1\",\"desktop-landscape\":\"0\",\"desktop-landscape-width\":\"1440\",\"desktop-landscape-height\":\"0\",\"desktop-landscape-minimum-font-size\":\"1\",\"fontsize\":\"16\",\"desktop\":\"1\",\"tablet\":\"1\",\"mobile\":\"1\",\"margin\":\"0|*|0|*|0|*|0\",\"tablet-portrait\":\"0\",\"tablet-portrait-width\":\"800\",\"tablet-portrait-height\":\"0\",\"tablet-portrait-minimum-font-size\":\"1\",\"tablet-landscape\":\"0\",\"tablet-landscape-width\":\"1024\",\"tablet-landscape-height\":\"0\",\"tablet-landscape-minimum-font-size\":\"1\",\"mobile-portrait\":\"0\",\"mobile-portrait-width\":\"440\",\"mobile-portrait-height\":\"0\",\"mobile-portrait-minimum-font-size\":\"1\",\"mobile-landscape\":\"0\",\"mobile-landscape-width\":\"740\",\"mobile-landscape-height\":\"0\",\"mobile-landscape-minimum-font-size\":\"1\",\"responsive-mode\":\"adaptive\",\"autoplay\":\"1\",\"autoplayDuration\":\"8000\",\"autoplayStart\":\"1\",\"autoplayfinish\":\"0|*|loop|*|current\",\"autoplayAllowReStart\":\"1\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"playfirstlayer\":\"1\",\"playonce\":\"0\",\"layer-animation-play-in\":\"end\",\"layer-animation-play-mode\":\"skippable\",\"parallax-enabled\":\"1\",\"parallax-enabled-mobile\":\"0\",\"parallax-3d\":\"0\",\"parallax-animate\":\"1\",\"parallax-horizontal\":\"mouse\",\"parallax-vertical\":\"mouse\",\"parallax-mouse-origin\":\"slider\",\"parallax-scroll-move\":\"both\",\"perspective\":\"1000\",\"imageload\":\"0\",\"imageloadNeighborSlides\":\"0\",\"optimize\":\"0\",\"optimize-quality\":\"70\",\"optimize-background-image-custom\":\"0\",\"optimize-background-image-width\":\"800\",\"optimize-background-image-height\":\"600\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"layer-image-optimize\":\"0\",\"layer-image-tablet\":\"50\",\"layer-image-mobile\":\"30\",\"layer-image-base64\":\"0\",\"layer-image-base64-size\":\"5\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"fadeOnLoad\":\"1\",\"fadeOnScroll\":\"0\",\"spinner\":\"infiniteWhite\",\"custom-spinner\":\"\",\"custom-spinner-width\":\"100\",\"custom-spinner-height\":\"100\",\"custom-display\":\"1\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"randomize\":\"0\",\"randomizeFirst\":\"0\",\"randomize-cache\":\"1\",\"variations\":\"5\",\"maximumslidecount\":\"1000\",\"global-lightbox\":\"0\",\"global-lightbox-label\":\"0\",\"maintain-session\":\"0\",\"blockrightclick\":\"0\",\"overflow-hidden-page\":\"0\",\"scroll-fix\":\"0\",\"clear-both\":\"0\",\"bg-parallax-tablet\":\"1\",\"bg-parallax-mobile\":\"1\",\"callbacks\":\"\",\"widgetarrow\":\"image\",\"widget-arrow-display-desktop\":\"1\",\"widget-arrow-display-tablet\":\"1\",\"widget-arrow-display-mobile\":\"1\",\"widget-arrow-exclude-slides\":\"\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-responsive-desktop\":\"1\",\"widget-arrow-responsive-tablet\":\"0.7\",\"widget-arrow-responsive-mobile\":\"0.5\",\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/previous\\/thin-horizontal.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-mirror\":\"1\",\"widget-arrow-next-image\":\"\",\"widget-arrow-next\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/next\\/normal.svg\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":\"0\",\"widget-arrow-next-hover-color\":\"ffffffcc\",\"widgetbullet\":\"transitionBorder\",\"widget-bullet-display-desktop\":\"1\",\"widget-bullet-display-tablet\":\"1\",\"widget-bullet-display-mobile\":\"1\",\"widget-bullet-exclude-slides\":\"\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"100\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDtiYWNrZ3JvdW5kLXNpemU6Y292ZXI7In1dfQ==\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-bullet-position-mode\":\"simple\",\"widget-bullet-position-area\":\"10\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-offset\":\"10\",\"widget-bullet-position-horizontal\":\"left\",\"widget-bullet-position-horizontal-position\":\"0\",\"widget-bullet-position-horizontal-unit\":\"px\",\"widget-bullet-position-vertical\":\"top\",\"widget-bullet-position-vertical-position\":\"0\",\"widget-bullet-position-vertical-unit\":\"px\",\"widget-bullet-action\":\"click\",\"widget-bullet-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiZmZmZmZmYWIiLCJwYWRkaW5nIjoiNXwqfDV8Knw1fCp8NXwqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMnwqfHNvbGlkfCp8ZmZmZmZmMDAiLCJib3JkZXJyYWRpdXMiOiI1MCIsImV4dHJhIjoibWFyZ2luOiA0cHg7In0seyJiYWNrZ3JvdW5kY29sb3IiOiIwMWFkZDMwMCIsImJvcmRlciI6IjJ8Knxzb2xpZHwqfGZmZmZmZmFiIn1dfQ==\",\"widget-bullet-bar\":\"\",\"widget-bullet-bar-full-size\":\"0\",\"widget-bullet-align\":\"center\",\"widget-bullet-orientation\":\"auto\",\"widget-bullet-overlay\":\"0\",\"widgetautoplay\":\"disabled\",\"widget-autoplay-display-desktop\":\"1\",\"widget-autoplay-display-tablet\":\"1\",\"widget-autoplay-display-mobile\":\"1\",\"widget-autoplay-exclude-slides\":\"\",\"widget-autoplay-display-hover\":\"0\",\"widgetindicator\":\"disabled\",\"widget-indicator-display-desktop\":\"1\",\"widget-indicator-display-tablet\":\"1\",\"widget-indicator-display-mobile\":\"1\",\"widget-indicator-exclude-slides\":\"\",\"widget-indicator-display-hover\":\"0\",\"widgetbar\":\"disabled\",\"widget-bar-display-desktop\":\"1\",\"widget-bar-display-tablet\":\"1\",\"widget-bar-display-mobile\":\"1\",\"widget-bar-exclude-slides\":\"\",\"widget-bar-display-hover\":\"0\",\"widgetthumbnail\":\"disabled\",\"widget-thumbnail-display-desktop\":\"1\",\"widget-thumbnail-display-tablet\":\"1\",\"widget-thumbnail-display-mobile\":\"1\",\"widget-thumbnail-exclude-slides\":\"\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-show-image\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widgetshadow\":\"disabled\",\"widget-shadow-display-desktop\":\"1\",\"widget-shadow-display-tablet\":\"1\",\"widget-shadow-display-mobile\":\"1\",\"widget-shadow-exclude-slides\":\"\",\"widgetfullscreen\":\"disabled\",\"widget-fullscreen-display-desktop\":\"1\",\"widget-fullscreen-display-tablet\":\"1\",\"widget-fullscreen-display-mobile\":\"1\",\"widget-fullscreen-exclude-slides\":\"\",\"widget-fullscreen-display-hover\":\"0\",\"widgethtml\":\"disabled\",\"widget-html-display-desktop\":\"1\",\"widget-html-display-tablet\":\"1\",\"widget-html-display-mobile\":\"1\",\"widget-html-exclude-slides\":\"\",\"widget-html-display-hover\":\"0\",\"widgets\":\"arrow\"}','2017-09-21 20:18:04','',1,NULL),
(3,'Why Active POS','simple','{\"controlsScroll\":\"1\",\"controlsDrag\":\"0\",\"controlsTouch\":\"horizontal\",\"controlsKeyboard\":\"1\",\"controlsTilt\":\"0\",\"thumbnail\":\"\",\"align\":\"normal\",\"backgroundMode\":\"fill\",\"shape-divider\":\"\",\"particle\":\"\",\"animation\":\"horizontal\",\"animation-duration\":\"800\",\"animation-delay\":\"0\",\"animation-easing\":\"easeOutQuad\",\"animation-parallax\":\"1\",\"background-animation\":\"\",\"background-animation-speed\":\"normal\",\"animation-shifted-background-animation\":\"auto\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"carousel\":\"1\",\"background\":\"$upload$\\/2017\\/08\\/marketing_2.png\",\"background-fixed\":\"0\",\"background-size\":\"cover\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"dynamic-height\":\"0\",\"loop-single-slide\":\"0\",\"padding\":\"0|*|0|*|0|*|0\",\"border-width\":\"0\",\"border-color\":\"3E3E3Eff\",\"border-radius\":\"0\",\"slider-preset\":\"\",\"slider-css\":\"\",\"slide-css\":\"\",\"width\":\"1200\",\"height\":\"500\",\"desktop-portrait-minimum-font-size\":\"1\",\"desktop-landscape\":\"0\",\"desktop-landscape-width\":\"1440\",\"desktop-landscape-height\":\"0\",\"desktop-landscape-minimum-font-size\":\"1\",\"fontsize\":\"16\",\"desktop\":\"1\",\"tablet\":\"1\",\"mobile\":\"1\",\"margin\":\"0|*|0|*|0|*|0\",\"tablet-portrait\":\"0\",\"tablet-portrait-width\":\"800\",\"tablet-portrait-height\":\"0\",\"tablet-portrait-minimum-font-size\":\"1\",\"tablet-landscape\":\"0\",\"tablet-landscape-width\":\"1024\",\"tablet-landscape-height\":\"0\",\"tablet-landscape-minimum-font-size\":\"1\",\"mobile-portrait\":\"0\",\"mobile-portrait-width\":\"440\",\"mobile-portrait-height\":\"0\",\"mobile-portrait-minimum-font-size\":\"1\",\"mobile-landscape\":\"0\",\"mobile-landscape-width\":\"740\",\"mobile-landscape-height\":\"0\",\"mobile-landscape-minimum-font-size\":\"1\",\"responsive-mode\":\"fullwidth\",\"responsiveSliderHeightMin\":\"0\",\"responsiveSliderHeightMax\":\"500\",\"responsiveForceFull\":\"1\",\"responsiveForceFullHorizontalSelector\":\"\",\"responsiveSliderOrientation\":\"width_and_height\",\"responsiveSlideWidth\":\"1\",\"responsiveSlideWidthMax\":\"3000\",\"responsiveSlideWidthDesktopLandscape\":\"0\",\"responsiveSlideWidthMaxDesktopLandscape\":\"1600\",\"responsiveSlideWidthTablet\":\"0\",\"responsiveSlideWidthMaxTablet\":\"980\",\"responsiveSlideWidthTabletLandscape\":\"0\",\"responsiveSlideWidthMaxTabletLandscape\":\"1200\",\"responsiveSlideWidthMobile\":\"0\",\"responsiveSlideWidthMaxMobile\":\"480\",\"responsiveSlideWidthMobileLandscape\":\"0\",\"responsiveSlideWidthMaxMobileLandscape\":\"740\",\"responsiveSlideWidthConstrainHeight\":\"0\",\"autoplay\":\"1\",\"autoplayDuration\":\"11000\",\"autoplayStart\":\"1\",\"autoplayfinish\":\"0|*|loop|*|current\",\"autoplayAllowReStart\":\"0\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"playfirstlayer\":\"1\",\"playonce\":\"0\",\"layer-animation-play-in\":\"end\",\"layer-animation-play-mode\":\"skippable\",\"parallax-enabled\":\"1\",\"parallax-enabled-mobile\":\"0\",\"parallax-3d\":\"0\",\"parallax-animate\":\"1\",\"parallax-horizontal\":\"mouse\",\"parallax-vertical\":\"mouse\",\"parallax-mouse-origin\":\"slider\",\"parallax-scroll-move\":\"both\",\"perspective\":\"1000\",\"imageload\":\"0\",\"imageloadNeighborSlides\":\"0\",\"optimize\":\"0\",\"optimize-quality\":\"70\",\"optimize-background-image-custom\":\"0\",\"optimize-background-image-width\":\"800\",\"optimize-background-image-height\":\"600\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"layer-image-optimize\":\"0\",\"layer-image-tablet\":\"50\",\"layer-image-mobile\":\"30\",\"layer-image-base64\":\"0\",\"layer-image-base64-size\":\"5\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"fadeOnLoad\":\"1\",\"fadeOnScroll\":\"0\",\"spinner\":\"simpleWhite\",\"custom-spinner\":\"\",\"custom-spinner-width\":\"100\",\"custom-spinner-height\":\"100\",\"custom-display\":\"1\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"randomize\":\"0\",\"randomizeFirst\":\"0\",\"randomize-cache\":\"1\",\"variations\":\"5\",\"maximumslidecount\":\"1000\",\"global-lightbox\":\"0\",\"global-lightbox-label\":\"0\",\"maintain-session\":\"0\",\"blockrightclick\":\"0\",\"overflow-hidden-page\":\"0\",\"scroll-fix\":\"0\",\"clear-both\":\"0\",\"bg-parallax-tablet\":\"1\",\"bg-parallax-mobile\":\"1\",\"callbacks\":\"\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-display-desktop\":\"1\",\"widget-arrow-display-tablet\":\"1\",\"widget-arrow-display-mobile\":\"1\",\"widget-arrow-exclude-slides\":\"\",\"widget-arrow-display-hover\":\"1\",\"widget-arrow-responsive-desktop\":\"1\",\"widget-arrow-responsive-tablet\":\"0.7\",\"widget-arrow-responsive-mobile\":\"0.5\",\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/previous\\/thin-horizontal.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-mirror\":\"1\",\"widget-arrow-next-image\":\"\",\"widget-arrow-next\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/next\\/thin-horizontal.svg\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":\"0\",\"widget-arrow-next-hover-color\":\"ffffffcc\",\"widgetbullet\":\"disabled\",\"widget-bullet-display-desktop\":\"1\",\"widget-bullet-display-tablet\":\"1\",\"widget-bullet-display-mobile\":\"1\",\"widget-bullet-exclude-slides\":\"\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"100\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDtiYWNrZ3JvdW5kLXNpemU6Y292ZXI7In1dfQ==\",\"widget-bullet-thumbnail-side\":\"before\",\"widgetautoplay\":\"disabled\",\"widget-autoplay-display-desktop\":\"1\",\"widget-autoplay-display-tablet\":\"1\",\"widget-autoplay-display-mobile\":\"1\",\"widget-autoplay-exclude-slides\":\"\",\"widget-autoplay-display-hover\":\"0\",\"widgetindicator\":\"disabled\",\"widget-indicator-display-desktop\":\"1\",\"widget-indicator-display-tablet\":\"1\",\"widget-indicator-display-mobile\":\"1\",\"widget-indicator-exclude-slides\":\"\",\"widget-indicator-display-hover\":\"0\",\"widgetbar\":\"disabled\",\"widget-bar-display-desktop\":\"1\",\"widget-bar-display-tablet\":\"1\",\"widget-bar-display-mobile\":\"1\",\"widget-bar-exclude-slides\":\"\",\"widget-bar-display-hover\":\"0\",\"widgetthumbnail\":\"disabled\",\"widget-thumbnail-display-desktop\":\"1\",\"widget-thumbnail-display-tablet\":\"1\",\"widget-thumbnail-display-mobile\":\"1\",\"widget-thumbnail-exclude-slides\":\"\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-show-image\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widgetshadow\":\"disabled\",\"widget-shadow-display-desktop\":\"1\",\"widget-shadow-display-tablet\":\"1\",\"widget-shadow-display-mobile\":\"1\",\"widget-shadow-exclude-slides\":\"\",\"widgetfullscreen\":\"disabled\",\"widget-fullscreen-display-desktop\":\"1\",\"widget-fullscreen-display-tablet\":\"1\",\"widget-fullscreen-display-mobile\":\"1\",\"widget-fullscreen-exclude-slides\":\"\",\"widget-fullscreen-display-hover\":\"0\",\"widgethtml\":\"disabled\",\"widget-html-display-desktop\":\"1\",\"widget-html-display-tablet\":\"1\",\"widget-html-display-mobile\":\"1\",\"widget-html-exclude-slides\":\"\",\"widget-html-display-hover\":\"0\",\"widgets\":\"arrow\"}','2017-09-22 17:45:19','',2,NULL),
(4,'Hybrid Platform','simple','{\"controlsScroll\":\"1\",\"controlsDrag\":\"0\",\"controlsTouch\":\"horizontal\",\"controlsKeyboard\":\"1\",\"controlsTilt\":\"0\",\"thumbnail\":\"\",\"align\":\"normal\",\"backgroundMode\":\"fill\",\"shape-divider\":\"\",\"particle\":\"\",\"animation\":\"horizontal\",\"animation-duration\":\"800\",\"animation-delay\":\"0\",\"animation-easing\":\"easeOutQuad\",\"animation-parallax\":\"1\",\"background-animation\":\"\",\"background-animation-speed\":\"normal\",\"animation-shifted-background-animation\":\"auto\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"carousel\":\"1\",\"background\":\"$upload$\\/2017\\/01\\/DataMining_6.png\",\"background-fixed\":\"0\",\"background-size\":\"cover\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"dynamic-height\":\"0\",\"loop-single-slide\":\"0\",\"padding\":\"0|*|0|*|0|*|0\",\"border-width\":\"0\",\"border-color\":\"3E3E3Eff\",\"border-radius\":\"0\",\"slider-preset\":\"\",\"slider-css\":\"\",\"slide-css\":\"\",\"width\":\"1200\",\"height\":\"500\",\"desktop-portrait-minimum-font-size\":\"1\",\"desktop-landscape\":\"0\",\"desktop-landscape-width\":\"1440\",\"desktop-landscape-height\":\"0\",\"desktop-landscape-minimum-font-size\":\"1\",\"fontsize\":\"16\",\"desktop\":\"1\",\"tablet\":\"1\",\"mobile\":\"1\",\"margin\":\"0|*|0|*|0|*|0\",\"tablet-portrait\":\"0\",\"tablet-portrait-width\":\"800\",\"tablet-portrait-height\":\"0\",\"tablet-portrait-minimum-font-size\":\"1\",\"tablet-landscape\":\"0\",\"tablet-landscape-width\":\"1024\",\"tablet-landscape-height\":\"0\",\"tablet-landscape-minimum-font-size\":\"1\",\"mobile-portrait\":\"0\",\"mobile-portrait-width\":\"440\",\"mobile-portrait-height\":\"0\",\"mobile-portrait-minimum-font-size\":\"1\",\"mobile-landscape\":\"0\",\"mobile-landscape-width\":\"740\",\"mobile-landscape-height\":\"0\",\"mobile-landscape-minimum-font-size\":\"1\",\"responsive-mode\":\"fullwidth\",\"responsiveSliderHeightMin\":\"0\",\"responsiveSliderHeightMax\":\"500\",\"responsiveForceFull\":\"1\",\"responsiveForceFullHorizontalSelector\":\"\",\"responsiveSliderOrientation\":\"width_and_height\",\"responsiveSlideWidth\":\"1\",\"responsiveSlideWidthMax\":\"3000\",\"responsiveSlideWidthDesktopLandscape\":\"0\",\"responsiveSlideWidthMaxDesktopLandscape\":\"1600\",\"responsiveSlideWidthTablet\":\"0\",\"responsiveSlideWidthMaxTablet\":\"980\",\"responsiveSlideWidthTabletLandscape\":\"0\",\"responsiveSlideWidthMaxTabletLandscape\":\"1200\",\"responsiveSlideWidthMobile\":\"0\",\"responsiveSlideWidthMaxMobile\":\"480\",\"responsiveSlideWidthMobileLandscape\":\"0\",\"responsiveSlideWidthMaxMobileLandscape\":\"740\",\"responsiveSlideWidthConstrainHeight\":\"0\",\"autoplay\":\"1\",\"autoplayDuration\":\"11000\",\"autoplayStart\":\"1\",\"autoplayfinish\":\"0|*|loop|*|current\",\"autoplayAllowReStart\":\"0\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"playfirstlayer\":\"1\",\"playonce\":\"0\",\"layer-animation-play-in\":\"end\",\"layer-animation-play-mode\":\"skippable\",\"parallax-enabled\":\"1\",\"parallax-enabled-mobile\":\"0\",\"parallax-3d\":\"0\",\"parallax-animate\":\"1\",\"parallax-horizontal\":\"mouse\",\"parallax-vertical\":\"mouse\",\"parallax-mouse-origin\":\"slider\",\"parallax-scroll-move\":\"both\",\"perspective\":\"1000\",\"imageload\":\"0\",\"imageloadNeighborSlides\":\"0\",\"optimize\":\"0\",\"optimize-quality\":\"70\",\"optimize-background-image-custom\":\"0\",\"optimize-background-image-width\":\"800\",\"optimize-background-image-height\":\"600\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"layer-image-optimize\":\"0\",\"layer-image-tablet\":\"50\",\"layer-image-mobile\":\"30\",\"layer-image-base64\":\"0\",\"layer-image-base64-size\":\"5\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"fadeOnLoad\":\"1\",\"fadeOnScroll\":\"0\",\"spinner\":\"simpleWhite\",\"custom-spinner\":\"\",\"custom-spinner-width\":\"100\",\"custom-spinner-height\":\"100\",\"custom-display\":\"1\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"randomize\":\"0\",\"randomizeFirst\":\"0\",\"randomize-cache\":\"1\",\"variations\":\"5\",\"maximumslidecount\":\"1000\",\"global-lightbox\":\"0\",\"global-lightbox-label\":\"0\",\"maintain-session\":\"0\",\"blockrightclick\":\"0\",\"overflow-hidden-page\":\"0\",\"scroll-fix\":\"0\",\"clear-both\":\"0\",\"bg-parallax-tablet\":\"1\",\"bg-parallax-mobile\":\"1\",\"callbacks\":\"\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-display-desktop\":\"1\",\"widget-arrow-display-tablet\":\"1\",\"widget-arrow-display-mobile\":\"1\",\"widget-arrow-exclude-slides\":\"\",\"widget-arrow-display-hover\":\"1\",\"widget-arrow-responsive-desktop\":\"1\",\"widget-arrow-responsive-tablet\":\"0.7\",\"widget-arrow-responsive-mobile\":\"0.5\",\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/previous\\/thin-horizontal.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-mirror\":\"1\",\"widget-arrow-next-image\":\"\",\"widget-arrow-next\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/next\\/thin-horizontal.svg\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":\"0\",\"widget-arrow-next-hover-color\":\"ffffffcc\",\"widgetbullet\":\"disabled\",\"widget-bullet-display-desktop\":\"1\",\"widget-bullet-display-tablet\":\"1\",\"widget-bullet-display-mobile\":\"1\",\"widget-bullet-exclude-slides\":\"\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"100\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDtiYWNrZ3JvdW5kLXNpemU6Y292ZXI7In1dfQ==\",\"widget-bullet-thumbnail-side\":\"before\",\"widgetautoplay\":\"disabled\",\"widget-autoplay-display-desktop\":\"1\",\"widget-autoplay-display-tablet\":\"1\",\"widget-autoplay-display-mobile\":\"1\",\"widget-autoplay-exclude-slides\":\"\",\"widget-autoplay-display-hover\":\"0\",\"widgetindicator\":\"disabled\",\"widget-indicator-display-desktop\":\"1\",\"widget-indicator-display-tablet\":\"1\",\"widget-indicator-display-mobile\":\"1\",\"widget-indicator-exclude-slides\":\"\",\"widget-indicator-display-hover\":\"0\",\"widgetbar\":\"disabled\",\"widget-bar-display-desktop\":\"1\",\"widget-bar-display-tablet\":\"1\",\"widget-bar-display-mobile\":\"1\",\"widget-bar-exclude-slides\":\"\",\"widget-bar-display-hover\":\"0\",\"widgetthumbnail\":\"disabled\",\"widget-thumbnail-display-desktop\":\"1\",\"widget-thumbnail-display-tablet\":\"1\",\"widget-thumbnail-display-mobile\":\"1\",\"widget-thumbnail-exclude-slides\":\"\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-show-image\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widgetshadow\":\"disabled\",\"widget-shadow-display-desktop\":\"1\",\"widget-shadow-display-tablet\":\"1\",\"widget-shadow-display-mobile\":\"1\",\"widget-shadow-exclude-slides\":\"\",\"widgetfullscreen\":\"disabled\",\"widget-fullscreen-display-desktop\":\"1\",\"widget-fullscreen-display-tablet\":\"1\",\"widget-fullscreen-display-mobile\":\"1\",\"widget-fullscreen-exclude-slides\":\"\",\"widget-fullscreen-display-hover\":\"0\",\"widgethtml\":\"disabled\",\"widget-html-display-desktop\":\"1\",\"widget-html-display-tablet\":\"1\",\"widget-html-display-mobile\":\"1\",\"widget-html-exclude-slides\":\"\",\"widget-html-display-hover\":\"0\",\"widgets\":\"arrow\"}','2017-09-27 21:33:46','',3,NULL),
(5,'Tutorial Slider','block','{\"controlsScroll\":\"0\",\"controlsDrag\":\"1\",\"controlsTouch\":\"horizontal\",\"controlsKeyboard\":\"1\",\"controlsTilt\":\"0\",\"thumbnail\":\"\",\"align\":\"normal\",\"backgroundMode\":\"fill\",\"shape-divider\":\"\",\"particle\":\"\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"background\":\"\",\"background-fixed\":\"0\",\"background-size\":\"cover\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"slider-css\":\"\",\"width\":\"800\",\"height\":\"300\",\"desktop-portrait-minimum-font-size\":\"1\",\"desktop-landscape\":\"0\",\"desktop-landscape-width\":\"1440\",\"desktop-landscape-height\":\"0\",\"desktop-landscape-minimum-font-size\":\"1\",\"fontsize\":\"16\",\"desktop\":\"1\",\"tablet\":\"1\",\"mobile\":\"1\",\"margin\":\"0|*|0|*|0|*|0\",\"tablet-portrait\":\"0\",\"tablet-portrait-width\":\"800\",\"tablet-portrait-height\":\"0\",\"tablet-portrait-minimum-font-size\":\"1\",\"tablet-landscape\":\"0\",\"tablet-landscape-width\":\"1024\",\"tablet-landscape-height\":\"0\",\"tablet-landscape-minimum-font-size\":\"1\",\"mobile-portrait\":\"0\",\"mobile-portrait-width\":\"440\",\"mobile-portrait-height\":\"0\",\"mobile-portrait-minimum-font-size\":\"1\",\"mobile-landscape\":\"0\",\"mobile-landscape-width\":\"740\",\"mobile-landscape-height\":\"0\",\"mobile-landscape-minimum-font-size\":\"1\",\"responsive-mode\":\"adaptive\",\"autoplay\":\"0\",\"autoplayDuration\":\"8000\",\"autoplayStart\":\"1\",\"autoplayfinish\":\"0|*|loop|*|current\",\"autoplayAllowReStart\":\"0\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"playfirstlayer\":\"1\",\"playonce\":\"1\",\"layer-animation-play-in\":\"end\",\"layer-animation-play-mode\":\"skippable\",\"parallax-enabled\":\"1\",\"parallax-enabled-mobile\":\"0\",\"parallax-3d\":\"0\",\"parallax-animate\":\"1\",\"parallax-horizontal\":\"mouse\",\"parallax-vertical\":\"mouse\",\"parallax-mouse-origin\":\"slider\",\"parallax-scroll-move\":\"both\",\"perspective\":\"1000\",\"imageload\":\"0\",\"imageloadNeighborSlides\":\"0\",\"optimize\":\"0\",\"optimize-quality\":\"70\",\"optimize-background-image-custom\":\"0\",\"optimize-background-image-width\":\"800\",\"optimize-background-image-height\":\"600\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"layer-image-optimize\":\"0\",\"layer-image-tablet\":\"50\",\"layer-image-mobile\":\"30\",\"layer-image-base64\":\"0\",\"layer-image-base64-size\":\"5\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"fadeOnLoad\":\"1\",\"fadeOnScroll\":\"0\",\"spinner\":\"simpleWhite\",\"custom-spinner\":\"\",\"custom-spinner-width\":\"100\",\"custom-spinner-height\":\"100\",\"custom-display\":\"1\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"randomize\":\"0\",\"randomizeFirst\":\"0\",\"randomize-cache\":\"1\",\"variations\":\"5\",\"maximumslidecount\":\"1000\",\"global-lightbox\":\"0\",\"global-lightbox-label\":\"0\",\"maintain-session\":\"0\",\"blockrightclick\":\"0\",\"overflow-hidden-page\":\"0\",\"scroll-fix\":\"0\",\"clear-both\":\"0\",\"bg-parallax-tablet\":\"1\",\"bg-parallax-mobile\":\"1\",\"callbacks\":\"\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-display-desktop\":\"1\",\"widget-arrow-display-tablet\":\"1\",\"widget-arrow-display-mobile\":\"1\",\"widget-arrow-exclude-slides\":\"\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-responsive-desktop\":\"1\",\"widget-arrow-responsive-tablet\":\"0.7\",\"widget-arrow-responsive-mobile\":\"0.5\",\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/previous\\/thin-horizontal.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-mirror\":\"1\",\"widget-arrow-next-image\":\"\",\"widget-arrow-next\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/next\\/thin-horizontal.svg\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":\"0\",\"widget-arrow-next-hover-color\":\"ffffffcc\",\"widgetbullet\":\"disabled\",\"widget-bullet-display-desktop\":\"1\",\"widget-bullet-display-tablet\":\"1\",\"widget-bullet-display-mobile\":\"1\",\"widget-bullet-exclude-slides\":\"\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"100\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDtiYWNrZ3JvdW5kLXNpemU6Y292ZXI7In1dfQ==\",\"widget-bullet-thumbnail-side\":\"before\",\"widgetautoplay\":\"disabled\",\"widget-autoplay-display-desktop\":\"1\",\"widget-autoplay-display-tablet\":\"1\",\"widget-autoplay-display-mobile\":\"1\",\"widget-autoplay-exclude-slides\":\"\",\"widget-autoplay-display-hover\":\"0\",\"widgetindicator\":\"disabled\",\"widget-indicator-display-desktop\":\"1\",\"widget-indicator-display-tablet\":\"1\",\"widget-indicator-display-mobile\":\"1\",\"widget-indicator-exclude-slides\":\"\",\"widget-indicator-display-hover\":\"0\",\"widgetbar\":\"disabled\",\"widget-bar-display-desktop\":\"1\",\"widget-bar-display-tablet\":\"1\",\"widget-bar-display-mobile\":\"1\",\"widget-bar-exclude-slides\":\"\",\"widget-bar-display-hover\":\"0\",\"widgetthumbnail\":\"disabled\",\"widget-thumbnail-display-desktop\":\"1\",\"widget-thumbnail-display-tablet\":\"1\",\"widget-thumbnail-display-mobile\":\"1\",\"widget-thumbnail-exclude-slides\":\"\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-show-image\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widgetshadow\":\"disabled\",\"widget-shadow-display-desktop\":\"1\",\"widget-shadow-display-tablet\":\"1\",\"widget-shadow-display-mobile\":\"1\",\"widget-shadow-exclude-slides\":\"\",\"widgetfullscreen\":\"disabled\",\"widget-fullscreen-display-desktop\":\"1\",\"widget-fullscreen-display-tablet\":\"1\",\"widget-fullscreen-display-mobile\":\"1\",\"widget-fullscreen-exclude-slides\":\"\",\"widget-fullscreen-display-hover\":\"0\",\"widgethtml\":\"disabled\",\"widget-html-display-desktop\":\"1\",\"widget-html-display-tablet\":\"1\",\"widget-html-display-mobile\":\"1\",\"widget-html-exclude-slides\":\"\",\"widget-html-display-hover\":\"0\",\"widgets\":\"shadow\"}','2017-10-13 22:54:56','',4,NULL);
/*!40000 ALTER TABLE `wpqk_nextend2_smartslider3_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_nextend2_smartslider3_sliders_xref`
--

DROP TABLE IF EXISTS `wpqk_nextend2_smartslider3_sliders_xref`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_nextend2_smartslider3_sliders_xref` (
  `group_id` int(11) NOT NULL,
  `slider_id` int(11) NOT NULL,
  `ordering` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`group_id`,`slider_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_nextend2_smartslider3_sliders_xref`
--

LOCK TABLES `wpqk_nextend2_smartslider3_sliders_xref` WRITE;
/*!40000 ALTER TABLE `wpqk_nextend2_smartslider3_sliders_xref` DISABLE KEYS */;
INSERT INTO `wpqk_nextend2_smartslider3_sliders_xref` VALUES
(0,2,0),
(0,3,1),
(0,4,2),
(0,5,3);
/*!40000 ALTER TABLE `wpqk_nextend2_smartslider3_sliders_xref` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_nextend2_smartslider3_slides`
--

DROP TABLE IF EXISTS `wpqk_nextend2_smartslider3_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_nextend2_smartslider3_slides` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) NOT NULL,
  `slider` int(11) NOT NULL,
  `publish_up` datetime NOT NULL,
  `publish_down` datetime NOT NULL,
  `published` tinyint(1) NOT NULL,
  `first` int(11) NOT NULL,
  `slide` longtext DEFAULT NULL,
  `description` text NOT NULL,
  `thumbnail` varchar(255) NOT NULL,
  `params` text NOT NULL,
  `ordering` int(11) NOT NULL,
  `generator_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_nextend2_smartslider3_slides`
--

LOCK TABLES `wpqk_nextend2_smartslider3_slides` WRITE;
/*!40000 ALTER TABLE `wpqk_nextend2_smartslider3_slides` DISABLE KEYS */;
INSERT INTO `wpqk_nextend2_smartslider3_slides` VALUES
(1,'Slide One',1,'2015-11-01 12:27:34','2025-11-11 12:27:34',1,0,'[{\"type\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":60,\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"10|*|0|*|10|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Martin Dwyer\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Martin Dwyer\",\"link\":\"#|*|_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxLjUiLCJib2xkIjowLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJjZW50ZXIiLCJsZXR0ZXJzcGFjaW5nIjoiMTBweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6InVwcGVyY2FzZSJ9LHsiZXh0cmEiOiIifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmZjYyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjAuNHwqfDF8KnwwLjR8KnwxfCp8ZW0iLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}},{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Application Developer\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Application Developer\",\"link\":\"#|*|_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}}]}]','','https://smartslider3.com/sample/developerthumbnail.jpg','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"https:\\/\\/smartslider3.com\\/sample\\/programmer.jpg\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"link\":\"|*|_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\",\"version\":\"3.2.0\"}',0,0),
(2,'Slide Two',1,'2015-11-01 12:27:34','2025-11-11 12:27:34',1,0,'[{\"type\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":60,\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"10|*|0|*|10|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Rachel Wright\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Rachel Wright\",\"link\":\"#|*|_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxLjUiLCJib2xkIjowLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJjZW50ZXIiLCJsZXR0ZXJzcGFjaW5nIjoiMTBweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6InVwcGVyY2FzZSJ9LHsiZXh0cmEiOiIifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmZjYyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjAuNHwqfDF8KnwwLjR8KnwxfCp8ZW0iLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}},{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Art Director & Photographer\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Art Director & Photographer\",\"link\":\"#|*|_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}}]}]','','https://smartslider3.com/sample/artdirectorthumbnail.jpg','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"https:\\/\\/smartslider3.com\\/sample\\/free1.jpg\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"link\":\"|*|_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\",\"version\":\"3.2.0\"}',1,0),
(3,'Slide Three',1,'2015-11-01 12:27:34','2025-11-11 12:27:34',1,0,'[{\"type\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":60,\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"10|*|0|*|10|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Andrew Butler\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Andrew Butler\",\"link\":\"#|*|_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxLjUiLCJib2xkIjowLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJjZW50ZXIiLCJsZXR0ZXJzcGFjaW5nIjoiMTBweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6InVwcGVyY2FzZSJ9LHsiZXh0cmEiOiIifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmZjYyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjAuNHwqfDF8KnwwLjR8KnwxfCp8ZW0iLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}},{\"type\":\"layer\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Photographer & Illustrator\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"Photographer & Illustrator\",\"link\":\"#|*|_self\",\"priority\":\"2\",\"fullwidth\":\"0\",\"nowrap\":\"0\",\"title\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"split-text-backface-visibility\":\"1\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"class\":\"\"}}}]}]','','https://smartslider3.com/sample/photographerthumbnail.jpg','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"https:\\/\\/smartslider3.com\\/sample\\/photographer.jpg\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"link\":\"|*|_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\",\"version\":\"3.2.0\"}',2,0),
(4,'marketing_2',2,'2017-09-21 03:19:50','2027-09-22 03:19:50',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Left\",\"delay\":0.8,\"ease\":\"linear\",\"x\":\"1000\"}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":394,\"desktopportraittop\":61,\"desktopportraitwidth\":304,\"desktopportraitheight\":500,\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iPadWhiteSkewedPOS_3.png\",\"namesynced\":0,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"size\":\"auto|*|auto\",\"link\":\"#|*|_self\",\"style\":\"\",\"image\":\"$upload$\\/2017\\/07\\/iPadWhiteSkewedPOS_3.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"image-optimize\":\"1\",\"cssclass\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Left\",\"x\":\"1000\"}],\"out\":[{\"name\":\"Fade\",\"duration\":0.1,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":432,\"desktopportraittop\":-55,\"desktopportraitwidth\":552,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"PCmonitorWithACM_4.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/07\\/PCmonitorWithACM_4.png\",\"link\":\"#|*|_self\",\"alt\":\"Image is not available\",\"title\":\"\",\"size\":\"auto|*|auto\",\"image-optimize\":\"1\",\"style\":\"\",\"cssclass\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom fade\",\"delay\":1.05,\"opacity\":0,\"y\":-400}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-255,\"desktopportraittop\":129,\"desktopportraitwidth\":554,\"desktopportraitheight\":88,\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Lorem ipsum dolor sit amet, a href=\",\"namesynced\":1,\"parentid\":null,\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Lorem ipsum dolor sit amet, <a href=\\\"#\\\">consectetur adipiscing<\\/a> elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNlZDNkNWZmIiwic2l6ZSI6IjE0fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHt9XX0=\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\"},\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|0|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":0,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"layer\",\"lastplacement\":\"normal\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px+\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"This is the Slide Header\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\",\"heading\":\"This is the Slide Header\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\"}}}]}]','','$upload$/2017/08/marketing_2.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"$upload$\\/2017\\/08\\/marketing_2.png\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"link\":\"|*|_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"11000\",\"version\":\"3.2.8\"}',0,0),
(5,'emailtracking',2,'2017-09-21 05:11:50','2027-09-22 05:11:50',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-385,\"desktopportraittop\":42,\"desktopportraitwidth\":303,\"desktopportraitheight\":500,\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"mpopandipad-blue.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/04\\/mpopandipad-blue.png\",\"link\":\"#|*|_self\",\"alt\":\"Image is not available\",\"title\":\"\",\"size\":\"auto|*|auto\",\"image-optimize\":\"1\",\"style\":\"\",\"cssclass\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":0,\"desktopportraittop\":-189,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading layer\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":1009,\"style\":\"\",\"priority\":\"div\",\"fullwidth\":1,\"nowrap\":0,\"heading\":\"Heading layer\",\"title\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":1,\"split-text-animation-in\":\"\",\"split-text-delay-in\":0,\"split-text-animation-out\":\"\",\"split-text-delay-out\":0,\"class\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":64,\"desktopportraittop\":282,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Lorem ipsum dolor sit amet, a href=\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Lorem ipsum dolor sit amet, <a href=\\\"#\\\">consectetur adipiscing<\\/a> elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE0fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/08/emailtracking.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"$upload$\\/2017\\/08\\/emailtracking.png\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"1013\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"link\":\"|*|_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\",\"version\":\"3.2.8\"}',1,0),
(6,'Why POS 1',3,'2017-09-22 00:45:57','2027-09-23 00:45:57',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Downscaled\",\"duration\":2.05,\"scaleX\":0,\"scaleY\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":7.1,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":111,\"desktopportraittop\":26,\"desktopportraitwidth\":434,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"GET iACTIVE\\/i POS\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"GET <i>ACTIVE<\\/i> POS\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6Ijc1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiI4MDAiLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJsZWZ0IiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjgwMH0seyJleHRyYSI6IiIsImNvbG9yIjoiMTg5MGQ3ZmYifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.35,\"delay\":2.3,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.5,\"delay\":5.8,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":747,\"desktopportraittop\":312,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"learn what makes Activ8\'s POS a cut\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"learn what makes Activ8\'s POS a cut above all others \\n\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjM1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1.15,\"delay\":0.95,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.5,\"delay\":7.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":747,\"desktopportraittop\":67,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Talk about active \\u2026You can\\u2019t slow t\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Talk about active \\u2026You can\\u2019t slow this thing down\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjM1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Downscaled\",\"duration\":2.65,\"ease\":\"linear\",\"opacity\":0.9,\"scaleX\":0,\"scaleY\":0}],\"out\":[{\"name\":\"Fade\",\"duration\":2.9,\"delay\":4.4,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-68,\"desktopportraittop\":46,\"desktopportraitwidth\":330,\"desktopportraitheight\":365,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"running-man_1.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/09\\/running-man_1.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOiI4MCIsInBhZGRpbmciOiIwfCp8MHwqfDB8KnwwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/08/marketing_2.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":\"100\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"10000\",\"version\":\"3.3.11\"}',0,0),
(7,'Why POS 2',3,'2017-09-22 00:45:57','2027-09-23 00:45:57',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":2.25,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":6.45,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":680,\"desktopportraittop\":222,\"desktopportraitwidth\":512,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"create and complete retail sales tr\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"create and complete retail sales transactions<br><br>\\ncreate new and update existing customer data records<br><br>\\nautomatically relieve location specific inventory with each sale<br><br>\\nupdate and record payment, shipping and pickup status live\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMCIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":9.95,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":8.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":222,\"desktopportraitwidth\":509,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"run as many iPads as needed \\u2013 no li\",\"namesynced\":0,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"run as many iPads as needed \\u2013 no license fees or limits<br><br>\\nmultiple iPads can use a single or separate cash drawer<br><br>\\non-screen tipping and email receipts complete mobile functionality<br><br>\\nkitchen \\/ fulfillment printing frees sales people to focus on customers<br><br>\\nunlimited suspend \\/ unsuspend and add more items to the sale \",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMCIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"duration\":1.05,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":18.05,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":67,\"desktopportraittop\":58,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iLightyears\\nahead\\/i\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"<i>Lightyears\\nahead<\\/i>\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjQ1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"duration\":3.05,\"ease\":\"linear\",\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":16.05,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-333,\"desktopportraittop\":137,\"desktopportraitwidth\":655,\"desktopportraitheight\":500,\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"6-1.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"size\":\"auto|*|auto\",\"link\":\"#|*|_self\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOiI4MCIsInBhZGRpbmciOiIwfCp8MHwqfDB8KnwwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"image\":\"$upload$\\/2015\\/01\\/6-1.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"image-optimize\":\"1\",\"cssclass\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1,\"delay\":1.5,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":7.05,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":680,\"desktopportraittop\":58,\"desktopportraitwidth\":445,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"No latency or batch uploading at th\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"No latency or batch uploading at the day\\u2019s end\\n\\n\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjMwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"delay\":9.95,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"delay\":8.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":680,\"desktopportraittop\":25,\"desktopportraitwidth\":472,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Put an end to checkout lines\\ntake t\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Put an end to checkout lines\\ntake the POS to your customers\\n\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjMwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/08/marketing_2.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"link\":\"|*|_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"20000\",\"version\":\"3.2.8\"}',1,0),
(8,'Why POS 3',3,'2017-09-22 00:45:57','2027-09-23 00:45:57',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":5,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.5,\"delay\":14.3,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":351,\"desktopportraittop\":199,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Request a Demo\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Request a Demo\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIzYTkyYWFmZiIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MzB8KnwxMHwqfDMwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"href\":\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\",\"href-target\":\"_self\",\"href-rel\":\"\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":2.25,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.3,\"delay\":6.65,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":170,\"desktopportraitwidth\":510,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"customizable product categories\\neas\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"list\",\"values\":{\"content\":\"customizable product categories\\neasy product selection\\neasy quantity adjustments\\nbarcode scanning supported\\neasy checkout including card on file\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"liststyle\":\"1801\",\"itemstyle\":\"\",\"type\":\"disc\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1,\"delay\":10,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":8.8,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":170,\"desktopportraitwidth\":503,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"associate sale with customer record\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"list\",\"values\":{\"content\":\"associate sale with customer record\\ncreate new customer records\\nautomate member and quantity discounting\\nsetup sale for shipping in order\\nonscreen tipping\\npromo code entry ease\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"liststyle\":\"1801\",\"itemstyle\":\"\",\"type\":\"disc\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":19.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":67,\"desktopportraittop\":58,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iEasy alcohol sales tools\\/i\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"<i>Easy alcohol sales tools<\\/i>\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjQ1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"loopRepeatSelfOnly\":null,\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":2.75,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":1,\"delay\":16.85,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-261,\"desktopportraittop\":157,\"desktopportraitwidth\":574,\"desktopportraitheight\":451,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"EMViPadCheckout-1.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/02\\/EMViPadCheckout-1.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOiI4MCIsInBhZGRpbmciOiIwfCp8MHwqfDB8KnwwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1,\"delay\":1.5,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.35,\"delay\":7.2,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":58,\"desktopportraitwidth\":487,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Intuitive design promotes easy trai\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Intuitive design promotes easy training and use\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjI4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNCIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1,\"delay\":10.05,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":9.05,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":58,\"desktopportraitwidth\":487,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"The right tools for the job\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"The right tools for the job\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjI4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNCIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/08/marketing_2.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":\"100\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"21000\",\"version\":\"3.3.11\"}',2,0),
(9,'Why POS 4',3,'2017-09-22 00:45:57','2027-09-23 00:45:57',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":4.9,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":4.45,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":371,\"desktopportraittop\":170,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Request a Demo\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Request a Demo\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIzYTkyYWFmZiIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MzB8KnwxMHwqfDMwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"href\":\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\",\"href-target\":\"_self\",\"href-rel\":\"\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.15,\"delay\":1.6,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.5,\"delay\":7.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":170,\"desktopportraitwidth\":510,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iPad \\/ paperless signups\\nauto disco\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"list\",\"values\":{\"content\":\"iPad \\/ paperless signups\\nauto discounting\\ncapture card-on-file\\non-screen pickup list with on-screen signature\\nautomated product swaps\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"liststyle\":\"1801\",\"itemstyle\":\"\",\"type\":\"disc\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"duration\":1,\"delay\":0.2,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":8.95,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":67,\"desktopportraittop\":58,\"desktopportraitwidth\":520,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iUnique specialty features\\/i\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"<i>Unique specialty features<\\/i>\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjQ1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"loopRepeatSelfOnly\":null,\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":2.75,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":1.1,\"delay\":6.75,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-216,\"desktopportraittop\":212,\"desktopportraitwidth\":375,\"desktopportraitheight\":500,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iPadCustomer.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/01\\/iPadCustomer.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOiI4MCIsInBhZGRpbmciOiIwfCp8MHwqfDB8KnwwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1,\"delay\":0.25,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":8.9,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":86,\"desktopportraitwidth\":487,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Got clubs?\\n\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Got clubs?\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjI4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNCIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/08/marketing_2.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":\"100\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"11000\",\"version\":\"3.3.11\"}',3,0),
(10,'Why POS 5',3,'2017-09-22 00:45:57','2027-09-23 00:45:57',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":4.95,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":4.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":351,\"desktopportraittop\":170,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Request a Demo\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Request a Demo\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIzYTkyYWFmZiIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MzB8KnwxMHwqfDMwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"href\":\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\",\"href-target\":\"_self\",\"href-rel\":\"\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.55,\"delay\":1.5,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":7.05,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":170,\"desktopportraitwidth\":510,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"kitchen \\/ fulfillment printing\\nmodi\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"list\",\"values\":{\"content\":\"kitchen \\/ fulfillment printing\\nmodifiers\\non-screen product detail\\nreceipt tipping or on-screen tipping options\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"liststyle\":\"1801\",\"itemstyle\":\"\",\"type\":\"disc\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"loopRepeatSelfOnly\":null,\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":2.75,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":1,\"delay\":6.8,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-216,\"desktopportraittop\":212,\"desktopportraitwidth\":375,\"desktopportraitheight\":500,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iPadNewOrder.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/01\\/iPadNewOrder.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOiI4MCIsInBhZGRpbmciOiIwfCp8MHwqfDB8KnwwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1,\"delay\":0.55,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":8.55,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":86,\"desktopportraitwidth\":487,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Got table service?\\n\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Got table service?\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjI4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNCIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/08/marketing_2.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":\"100\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"11000\",\"version\":\"3.3.11\"}',4,0),
(11,'Why POS 6',3,'2017-09-22 00:45:57','2027-09-23 00:45:57',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":5,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":4.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":351,\"desktopportraittop\":170,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Request a Demo\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Request a Demo\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIzYTkyYWFmZiIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MzB8KnwxMHwqfDMwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"href\":\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\",\"href-target\":\"_self\",\"href-rel\":\"\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.55,\"delay\":1.5,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.5,\"delay\":7.05,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":170,\"desktopportraitwidth\":510,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"easily apply promo codes\\neasily app\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"list\",\"values\":{\"content\":\"easily apply promo codes\\neasily apply shipping promos\\n% or $ discounts\\nsplit lines for buy one, get one\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"liststyle\":\"1801\",\"itemstyle\":\"\",\"type\":\"disc\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"loopRepeatSelfOnly\":null,\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":2.75,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":1.25,\"delay\":6.6,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-216,\"desktopportraittop\":212,\"desktopportraitwidth\":375,\"desktopportraitheight\":500,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iPadCheckoutSlide.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/01\\/iPadCheckoutSlide.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOiI4MCIsInBhZGRpbmciOiIwfCp8MHwqfDB8KnwwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1,\"delay\":0.55,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":8.6,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":86,\"desktopportraitwidth\":487,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Got promotions?\\n\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Got promotions?\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjI4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNCIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/08/marketing_2.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":\"100\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"11000\",\"version\":\"3.3.11\"}',5,0),
(12,'Why POS 7',3,'2017-09-22 00:45:57','2027-09-23 00:45:57',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":4.95,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.4,\"delay\":4.4,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":351,\"desktopportraittop\":170,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Request a Demo\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Request a Demo\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIzYTkyYWFmZiIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MzB8KnwxMHwqfDMwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"href\":\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\",\"href-target\":\"_self\",\"href-rel\":\"\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.15,\"delay\":1.6,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.5,\"delay\":7.3,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":170,\"desktopportraitwidth\":510,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"reduce inventory with each sales tr\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"list\",\"values\":{\"content\":\"reduce inventory with each sales transaction\\nmultiple location capable\\non-screen sign for receiving\\ncreate inventory transfers\\neasy adjustment to update stock levels\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"liststyle\":\"1801\",\"itemstyle\":\"\",\"type\":\"disc\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":9.3,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":67,\"desktopportraittop\":58,\"desktopportraitwidth\":520,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iAdvanced inventory \\/i\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"<i>Advanced inventory <\\/i>\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjQ1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"loopRepeatSelfOnly\":null,\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":2.75,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":1,\"delay\":6.8,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-216,\"desktopportraittop\":212,\"desktopportraitwidth\":375,\"desktopportraitheight\":500,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iPadTransfer.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/04\\/iPadTransfer.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOiI4MCIsInBhZGRpbmciOiIwfCp8MHwqfDB8KnwwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1,\"delay\":0.55,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":8.55,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":86,\"desktopportraitwidth\":487,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Automate inventory management\\n\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Automate inventory management\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjI4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNCIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/08/marketing_2.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":\"100\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"11000\",\"version\":\"3.3.11\"}',6,0),
(13,'Why POS 8',3,'2017-09-22 00:45:57','2027-09-23 00:45:57',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":5.95,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":3.05,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":358,\"desktopportraittop\":191,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Request a Demo\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Request a Demo\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIzYTkyYWFmZiIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MzB8KnwxMHwqfDMwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"href\":\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\",\"href-target\":\"_self\",\"href-rel\":\"\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1,\"delay\":2.35,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":6.4,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":170,\"desktopportraitwidth\":503,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"point-to-point encryption\\nfull toke\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"list\",\"values\":{\"content\":\"point-to-point encryption\\nfull tokenization\\nEMV chip card ready\\neasy your PCI compliance \\nmultiple processor choices\\ntruly mobile card readers\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"liststyle\":\"1801\",\"itemstyle\":\"\",\"type\":\"disc\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":9.3,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":60,\"desktopportraittop\":58,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iPayment Tools\\/i\\n\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"<i>Payment Tools<\\/i>\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjQ1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"loopRepeatSelfOnly\":null,\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":2.75,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":1,\"delay\":6.8,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-261,\"desktopportraittop\":157,\"desktopportraitwidth\":574,\"desktopportraitheight\":451,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"EMViPadCheckout-1.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/02\\/EMViPadCheckout-1.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOiI4MCIsInBhZGRpbmciOiIwfCp8MHwqfDB8KnwwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1,\"delay\":1.1,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":8,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":58,\"desktopportraitwidth\":487,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"PCI compliant \\u2013 \\u201cout of scope\\u201d\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"PCI compliant \\u2013 \\u201cout of scope\\u201d\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjI4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNCIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/08/marketing_2.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":\"100\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"11000\",\"version\":\"3.3.11\"}',7,0),
(14,'Why POS 9',3,'2017-09-22 00:45:57','2027-09-23 00:45:57',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":4.95,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.4,\"delay\":4.45,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":464,\"desktopportraittop\":211,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Request a Demo\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Request a Demo\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIzYTkyYWFmZiIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MzB8KnwxMHwqfDMwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"href\":\"http:\\/\\/www.activeclubsolutions.com\\/winery-pos-wine-club-software-demo\\/\",\"href-target\":\"_self\",\"href-rel\":\"\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.15,\"delay\":1.6,\"ease\":\"linear\",\"y\":\"-800\"}],\"out\":[{\"name\":\"Fade\",\"delay\":7.05,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":69,\"desktopportraitwidth\":510,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"electric payment signatures\\nmultipl\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"list\",\"values\":{\"content\":\"electric payment signatures\\nmultiple payments on a single transaction\\npackage as product sales\\nrunning a tab\\nemployee and management permission levels\\nline item overrides on price or discounts\\neasy to add multiple shipping addresses \\nintegrates with shipping company\\nintegrates with compliance company\\ncash drawer management\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIwfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"liststyle\":\"1801\",\"itemstyle\":\"\",\"type\":\"disc\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":9.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":67,\"desktopportraittop\":58,\"desktopportraitwidth\":520,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iOn the cutting Edge\\/i\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"<i>On the cutting Edge<\\/i>\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjQ1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"loopRepeatSelfOnly\":null,\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":2.75,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":1.05,\"delay\":6.8,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-216,\"desktopportraittop\":212,\"desktopportraitwidth\":375,\"desktopportraitheight\":500,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"iPadProductDetail.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/09\\/iPadProductDetail.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOiI4MCIsInBhZGRpbmciOiIwfCp8MHwqfDB8KnwwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1,\"delay\":0.6,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.45,\"delay\":8.55,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":683,\"desktopportraittop\":13,\"desktopportraitwidth\":487,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Our Thrilled Customers love\\u2026\\n\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Our Thrilled Customers love\\u2026\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjI4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNCIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/08/marketing_2.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":\"100\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"11000\",\"version\":\"3.3.11\"}',8,0),
(15,'Hybrid Platform 2',4,'2017-09-27 04:40:05','2027-09-28 04:40:05',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"duration\":2,\"delay\":36.5,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":2.9,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":397,\"desktopportraittop\":406,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"connected\\n3rd party apps\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"connected\\n3rd party apps\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"duration\":2,\"delay\":35.4,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":4,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":84,\"desktopportraittop\":402,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"disconnected\\n3rd party apps\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"disconnected\\n3rd party apps\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.25,\"delay\":30.55,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":2.8,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":51,\"desktopportraittop\":165,\"desktopportraitwidth\":458,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"internal browser based integrations\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"internal browser based integrations with various partners so you can stay in one system instead of unrelated tabs\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIyN2FlNjA2OSIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MTB8KnwxMHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"delay\":29.95,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":10.65,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":397,\"desktopportraittop\":361,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"MDI and browser\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"MDI and browser\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":29.2,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":4.6,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-320,\"desktopportraittop\":-14,\"desktopportraitwidth\":458,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"frequently crash due to browser cac\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"frequently crash due to browser cache limitations\\noften when you don\\u2019t have time for this\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJlNzlkMTk3MyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MTB8KnwxMHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"delay\":28.45,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":12.15,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":85,\"desktopportraittop\":361,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"requires browser tabs\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"requires browser tabs\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":24.5,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":2.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":51,\"desktopportraittop\":137,\"desktopportraitwidth\":458,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"complete security and is cookieless\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"complete security and is cookieless so you can work with confidence\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIyN2FlNjA2OSIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MTB8KnwxMHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"delay\":23.8,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":16.8,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":397,\"desktopportraittop\":319,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"truly secure\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"truly secure\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":23.1,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":3.75,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-320,\"desktopportraittop\":-14,\"desktopportraitwidth\":458,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"not secure due to browser tracking \",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"not secure due to browser tracking and cookies they put on your computer and much more...\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJlNzlkMTk3MyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MTB8KnwxMHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"delay\":22.35,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":18.25,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":85,\"desktopportraittop\":319,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"hackable\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"hackable\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"duration\":1,\"delay\":17.85,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":2.75,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":51,\"desktopportraittop\":146,\"desktopportraitwidth\":458,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"customizable rules, club, searches,\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"customizable rules, club, searches, result views and more supporting each winery\\u2019s unique operational structure\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIyN2FlNjA2OSIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MTB8KnwxMHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"delay\":17.3,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":23.3,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":397,\"desktopportraittop\":281,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"unlimited reporting\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"unlimited reporting\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"delay\":16.55,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":24.05,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":85,\"desktopportraittop\":281,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"limited reporting\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"limited reporting\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":12.5,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":2.45,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":51,\"desktopportraittop\":165,\"desktopportraitwidth\":458,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"extensive searching since the backg\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"extensive searching since the background database is relational with 18,000 + data fields across various tables\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIyN2FlNjA2OSIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MTB8KnwxMHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"delay\":12.2,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":28.4,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":397,\"desktopportraittop\":240,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"extensive search\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"extensive search\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":11.5,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":3.45,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-320,\"desktopportraittop\":65,\"desktopportraitwidth\":458,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"extremely restricted in the number \",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"extremely restricted in the number of data fields they can store and therefore search on\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJlNzlkMTk3MyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MTB8KnwxMHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":11.5,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":3.45,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-320,\"desktopportraittop\":-14,\"desktopportraitwidth\":458,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"provides only limited, pre-canned s\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"provides only limited, pre-canned searches often leaving you stuck without answers\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJlNzlkMTk3MyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MTB8KnwxMHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"delay\":10.75,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":29.85,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":85,\"desktopportraittop\":240,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"restricted search\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"restricted search\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"loopRepeatSelfOnly\":null,\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":7.5,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":1.7,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":51,\"desktopportraittop\":155,\"desktopportraitwidth\":458,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"speed \\u2013 its search engine will disp\",\"namesynced\":0,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"speed \\u2013 its search engine will display hundreds to thousands of records in a second or two\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIyN2FlNjA2OSIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MTB8KnwxMHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"duration\":2.7,\"delay\":5.6,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":33.1,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":397,\"desktopportraittop\":198,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"fast\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"fast\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top fade\",\"duration\":1.5,\"delay\":1.05,\"opacity\":0,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"delay\":38.85,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":397,\"desktopportraittop\":111,\"desktopportraitwidth\":160,\"desktopportraitheight\":55,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Active\'s Hybrid\\nSystem\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Active\'s Hybrid\\nSystem\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6InVwcGVyY2FzZSIsIndlaWdodCI6MX0seyJleHRyYSI6IiIsImNvbG9yIjoiMTg5MGQ3ZmYifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIyMGIzNWVmZiIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjV8KnwwfCp8NXwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"loopRepeatSelfOnly\":null,\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"delay\":4.85,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":4.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-320,\"desktopportraittop\":-14,\"desktopportraitwidth\":458,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"painfully slow and hogs up internet\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"painfully slow and hogs up internet bandwidth when you need speed to get your jobs done\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMiIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImxlZnQiLCJsZXR0ZXJzcGFjaW5nIjoibm9ybWFsIiwid29yZHNwYWNpbmciOiJub3JtYWwiLCJ0ZXh0dHJhbnNmb3JtIjoibm9uZSJ9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJlNzlkMTk3MyIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjEwfCp8MTB8KnwxMHwqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"duration\":2.75,\"delay\":2.9,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":35.75,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":85,\"desktopportraittop\":198,\"desktopportraitwidth\":250,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"slow\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"slow\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjB8KnwwfCp8MHwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top fade\",\"duration\":1.5,\"delay\":1.05,\"opacity\":0,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"delay\":38.85,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":397,\"desktopportraittop\":52,\"desktopportraitwidth\":262,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Active\'s unique hybrid system provi\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Active\'s unique hybrid system provides\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIn0seyJleHRyYSI6IiIsImNvbG9yIjoiMTg5MGQ3ZmYifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top fade\",\"duration\":1.5,\"delay\":1.05,\"opacity\":0,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"delay\":38.85,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":85,\"desktopportraittop\":111,\"desktopportraitwidth\":160,\"desktopportraitheight\":55,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Browser Based\\nSystems\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Browser Based\\nSystems\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6InVwcGVyY2FzZSIsIndlaWdodCI6MX0seyJleHRyYSI6IiIsImNvbG9yIjoiMTg5MGQ3ZmYifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJlNzlkMTlmZiIsIm9wYWNpdHkiOjEwMCwicGFkZGluZyI6IjV8KnwwfCp8NXwqfDB8KnxweCIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiYm9yZGVycmFkaXVzIjoiMCJ9LHsiZXh0cmEiOiIifV19\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top fade\",\"duration\":1.5,\"delay\":1.05,\"opacity\":0,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"delay\":38.85,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":84,\"desktopportraittop\":-179,\"desktopportraitwidth\":269,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Browser based systems are pretty & \",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Browser based systems are pretty & trendy due to html coded user interfaces but\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIn0seyJleHRyYSI6IiIsImNvbG9yIjoiMTg5MGQ3ZmYifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Fade\",\"duration\":1.05,\"opacity\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":40.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"right\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-754,\"desktopportraittop\":-161,\"desktopportraitwidth\":395,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Activ8\'s unique platform\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Activ8\'s unique platform\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjQ1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/01/DataMining_6.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":\"100\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"43000\",\"version\":\"3.3.11\"}',1,0),
(16,'Hybrid Platform 1',4,'2017-09-22 00:45:57','2027-09-23 00:45:57',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Downscaled\",\"duration\":2.05,\"scaleX\":0,\"scaleY\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":7.1,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":111,\"desktopportraittop\":26,\"desktopportraitwidth\":434,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"GET iACTIVE\\/i \",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"GET <i>ACTIVE<\\/i> \",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6Ijc1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiI4MDAiLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJsZWZ0IiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjgwMH0seyJleHRyYSI6IiIsImNvbG9yIjoiMTg5MGQ3ZmYifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.35,\"delay\":2.3,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.5,\"delay\":5.8,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":747,\"desktopportraittop\":312,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"so you can elevate service\\u2026maximize\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"so you can elevate service\\u2026maximize sales\\n\\n\",\"contenttablet\":\"\",\"contentmobile\":\"\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjM1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1.15,\"delay\":0.95,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.5,\"delay\":7.35,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":747,\"desktopportraittop\":67,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Learn what makes activ8 stand out i\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Learn what makes activ8 stand out in the crowd \\n\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjM1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Downscaled\",\"duration\":2.65,\"ease\":\"linear\",\"opacity\":0.9,\"scaleX\":0,\"scaleY\":0}],\"out\":[{\"name\":\"Fade\",\"duration\":1.55,\"delay\":5.75,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-68,\"desktopportraittop\":46,\"desktopportraitwidth\":330,\"desktopportraitheight\":365,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"running-man_1.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/09\\/running-man_1.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOiI2NSIsInBhZGRpbmciOiIwfCp8MHwqfDB8KnwwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAifSx7ImV4dHJhIjoiIn1dfQ==\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"\",\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/01/DataMining_6.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":\"100\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"href\":\"\",\"href-target\":\"_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"10000\",\"version\":\"3.3.11\"}',0,0),
(17,'Hybrid Platform 3',4,'2017-09-22 00:45:57','2027-09-23 00:45:57',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Right fade\",\"duration\":4.65,\"delay\":10,\"opacity\":0,\"x\":-400}],\"out\":[{\"name\":\"Left fade\",\"delay\":5.1,\"opacity\":0,\"x\":400}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":471,\"desktopportraittop\":144,\"desktopportraitwidth\":200,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"handholdingglobe_3.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$\\/2017\\/09\\/handholdingglobe_3.png\",\"link\":\"#|*|_self\",\"alt\":\"Image is not available\",\"title\":\"\",\"size\":\"auto|*|auto\",\"image-optimize\":\"1\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsIm9wYWNpdHkiOiIxMDAiLCJwYWRkaW5nIjoiMHwqfDB8KnwwfCp8MHwqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIwIn0seyJleHRyYSI6IiJ9XX0=\",\"cssclass\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.7,\"delay\":14.75,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"duration\":0.5,\"delay\":3.6,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":41,\"desktopportraittop\":215,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"so you can elevate service\\u2026maximize\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"so you can elevate service\\u2026maximize sales\\n\\n\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjM1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuMCIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom fade\",\"duration\":1.6,\"delay\":13.95,\"opacity\":0,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":4.2,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":41,\"desktopportraittop\":159,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"one app does it all...\\n\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"one app does it all...\\n\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjI1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.6,\"delay\":12.55,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":5.6,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":505,\"desktopportraittop\":422,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"3rd party integrations\\nlive and up \",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"3rd party integrations\\nlive and up to the second updates \\u2013 no need latency\\n\\n\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.65,\"delay\":11.3,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":6.8,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":105,\"desktopportraittop\":150,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"club automation\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"club automation\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.65,\"delay\":10.05,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":8.05,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":105,\"desktopportraittop\":116,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"no need for multiple browser screen\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"no need for multiple browser screens and apps\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Downscaled\",\"duration\":2.3,\"delay\":8.5,\"scaleX\":0,\"scaleY\":0}],\"out\":[{\"name\":\"Fade\",\"delay\":8.95,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"bottom\",\"desktopportraitleft\":429,\"desktopportraittop\":-186,\"desktopportraitwidth\":295,\"desktopportraitheight\":123,\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"one iprivate\\/i\\ndatabase\\n\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"one <i>private<\\/i>\\ndatabase\\n\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjM1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjF9LHsiZXh0cmEiOiIiLCJjb2xvciI6IjE4OTBkN2ZmIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJiYWNrZ3JvdW5kY29sb3IiOiIwYTY5MzJmZiIsIm9wYWNpdHkiOiI5MCIsInBhZGRpbmciOiIwfCp8MHwqfDB8KnwwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MTB8KnwxNXwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiOTkifSx7ImV4dHJhIjoiIn1dfQ==\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.55,\"delay\":8.95,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":9.25,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":105,\"desktopportraittop\":82,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"ecommerce\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"ecommerce\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.6,\"delay\":7.7,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":10.45,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":505,\"desktopportraittop\":285,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"no need to sync multiple databases\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"no need to sync multiple databases\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.6,\"delay\":6.45,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":11.7,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":505,\"desktopportraittop\":252,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"inventory management\\n\\n\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"inventory management\\n\\n\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.6,\"delay\":5.25,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":12.9,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":505,\"desktopportraittop\":220,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"email analysis\\n\\n\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"email analysis\\n\\n\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.6,\"delay\":3.9,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":14.25,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":505,\"desktopportraittop\":183,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\" off-site sales\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\" off-site sales\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Bottom\",\"duration\":1.6,\"delay\":2.6,\"y\":-400}],\"out\":[{\"name\":\"Fade\",\"delay\":15.55,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":505,\"desktopportraittop\":148,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"retail POS\\n\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"retail POS\\n\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjE4fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiIxIiwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJub25lIiwid2VpZ2h0IjoxfSx7ImV4dHJhIjoiIiwiY29sb3IiOiIxODkwZDdmZiJ9LHsiZXh0cmEiOiIifV19\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1.55,\"delay\":1.35,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"delay\":16.85,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":695,\"desktopportraittop\":33,\"desktopportraitwidth\":476,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"One single database for all softwar\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"One single database for all software features, functions and sales channels\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmNjIiwic2l6ZSI6IjI1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiI4MDAiLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJsZWZ0IiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjgwMH0seyJleHRyYSI6IiIsImNvbG9yIjoiMTg5MGQ3ZmYifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Top\",\"duration\":1.55,\"y\":400}],\"out\":[{\"name\":\"Fade\",\"delay\":18.2,\"opacity\":0}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitleft\":41,\"desktopportraittop\":33,\"desktopportraitwidth\":369,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Single Database\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"text\",\"values\":{\"content\":\"Single Database\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImNjY2NjY2NjIiwic2l6ZSI6IjQ1fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUm9ib3RvLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOiI4MDAiLCJpdGFsaWMiOjAsInVuZGVybGluZSI6MCwiYWxpZ24iOiJsZWZ0IiwibGV0dGVyc3BhY2luZyI6Im5vcm1hbCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUiLCJ3ZWlnaHQiOjgwMH0seyJleHRyYSI6IiIsImNvbG9yIjoiMTg5MGQ3ZmYifSx7ImV4dHJhIjoiIn1dfQ==\",\"style\":\"\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/01/DataMining_6.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"background-animation\":\"\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"link\":\"|*|_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"21000\",\"version\":\"3.2.8\"}',2,0),
(18,'Tutorial_1',5,'2017-10-13 05:55:43','2027-10-14 05:55:43',1,0,'[{\"type\":\"layer\",\"lastplacement\":\"absolute\",\"animations\":{\"specialZero\":0,\"transformOrigin\":\"50|*|50|*|0\",\"in\":[{\"name\":\"Right fade\",\"duration\":3,\"ease\":\"easeInCubic\",\"opacity\":0,\"x\":-400}]},\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-250,\"desktopportraittop\":0,\"desktopportraitwidth\":300,\"desktopportraitheight\":\"auto\",\"id\":null,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"handholdingglobe_3.png\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"item\":{\"type\":\"image\",\"values\":{\"size\":\"auto|*|auto\",\"link\":\"#|*|_self\",\"style\":\"\",\"image\":\"$upload$\\/2017\\/09\\/handholdingglobe_3.png\",\"alt\":\"Image is not available\",\"title\":\"\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"content\",\"lastplacement\":\"content\",\"animations\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px+\",\"desktopportraitselfalign\":\"inherit\",\"opened\":1,\"id\":null,\"class\":\"\",\"crop\":\"\",\"rotation\":0,\"parallax\":0,\"adaptivefont\":1,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"generatorvisible\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Content\",\"namesynced\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgimageparallax\":0,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[]}]','','$upload$/2017/10/Tutorial_1.png','{\"background-type\":\"image\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"preload\":\"auto\",\"backgroundVideoMode\":\"fill\",\"backgroundImage\":\"\",\"backgroundFocusX\":\"50\",\"backgroundFocusY\":\"50\",\"backgroundImageOpacity\":\"100\",\"backgroundImageBlur\":\"0\",\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundMode\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"thumbnailType\":\"default\",\"link\":\"|*|_self\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"first\":\"0\",\"static-slide\":\"0\",\"slide-duration\":\"0\",\"version\":\"3.2.8\"}',0,0);
/*!40000 ALTER TABLE `wpqk_nextend2_smartslider3_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_options`
--

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

--
-- Dumping data for table `wpqk_options`
--

LOCK TABLES `wpqk_options` WRITE;
/*!40000 ALTER TABLE `wpqk_options` DISABLE KEYS */;
INSERT INTO `wpqk_options` VALUES
(1,'siteurl','https://activeclubsolutions.net','yes'),
(2,'blogname','Winery POS Tasting Room POS mobile ipad POS wine club software','yes'),
(3,'blogdescription','iPad WInery Tasting POS, Wine Club Software, Winery Ecommerce, Winery POS, Tasting Room Solution, Wine Club Membership Management and Ecommerce for Wineries, Tasting Rooms, Wine Stores and Online Wine Clubs, Winery Credit Card Processing, winery software','yes'),
(4,'users_can_register','0','yes'),
(5,'admin_email','arne@activeclubsolutions.com','yes'),
(6,'start_of_week','1','yes'),
(7,'use_balanceTags','','yes'),
(8,'use_smilies','1','yes'),
(9,'require_name_email','1','yes'),
(10,'comments_notify','1','yes'),
(11,'posts_per_rss','10','yes'),
(12,'rss_use_excerpt','0','yes'),
(13,'mailserver_url','mail.example.com','yes'),
(14,'mailserver_login','login@example.com','yes'),
(15,'mailserver_pass','password','yes'),
(16,'mailserver_port','110','yes'),
(17,'default_category','3','yes'),
(18,'default_comment_status','closed','yes'),
(19,'default_ping_status','open','yes'),
(20,'default_pingback_flag','','yes'),
(21,'posts_per_page','10','yes'),
(22,'date_format','F j, Y','yes'),
(23,'time_format','g:i a','yes'),
(24,'links_updated_date_format','F j, Y g:i a','yes'),
(28,'comment_moderation','','yes'),
(29,'moderation_notify','1','yes'),
(30,'permalink_structure','/%postname%/','yes'),
(32,'hack_file','0','yes'),
(33,'blog_charset','UTF-8','yes'),
(34,'moderation_keys','','no'),
(35,'active_plugins','a:24:{i:0;s:19:\"akismet/akismet.php\";i:1;s:47:\"better-search-replace/better-search-replace.php\";i:2;s:36:\"checkfront-wp-booking/checkfront.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:32:\"duplicate-page/duplicatepage.php\";i:5;s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";i:6;s:55:\"easy-pie-maintenance-mode/easy-pie-maintenance-mode.php\";i:7;s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";i:8;s:34:\"header-and-footer-scripts/shfs.php\";i:9;s:55:\"nextend-smart-slider3-pro/nextend-smart-slider3-pro.php\";i:10;s:31:\"page-links-to/page-links-to.php\";i:11;s:48:\"php-compatibility-checker/wpengine-phpcompat.php\";i:12;s:39:\"pixelyoursite/facebook-pixel-master.php\";i:13;s:31:\"portfolio-x-pro/portfolio-x.php\";i:14;s:47:\"really-simple-captcha/really-simple-captcha.php\";i:15;s:27:\"redirection/redirection.php\";i:16;s:52:\"remove-protected-in-title/remove-protected-title.php\";i:17;s:37:\"tinymce-advanced/tinymce-advanced.php\";i:18;s:27:\"updraftplus/updraftplus.php\";i:19;s:41:\"wordpress-importer/wordpress-importer.php\";i:20;s:24:\"wordpress-seo/wp-seo.php\";i:21;s:22:\"wp-editor/wpeditor.php\";i:22;s:39:\"wp-rss-aggregator/wp-rss-aggregator.php\";i:23;s:49:\"wpe-advanced-cache-options/wpe-advanced-cache.php\";}','yes'),
(36,'home','https://activeclubsolutions.net','yes'),
(37,'category_base','','yes'),
(38,'ping_sites','http://rpc.pingomatic.com/','yes'),
(40,'comment_max_links','2','yes'),
(41,'gmt_offset','','yes'),
(42,'default_email_category','1','yes'),
(43,'recently_edited','a:5:{i:0;s:96:\"/home/activ8commerce/public_html/activeclubsolutions.net/wp-content/themes/active-club/style.css\";i:2;s:114:\"/home/activ8commerce/public_html/activeclubsolutions.net/wp-content/plugins/backup-guard-gold/backup-guard-pro.php\";i:3;s:97:\"/home/activ8commerce/public_html/activeclubsolutions.net/wp-content/themes/active-club/header.php\";i:4;s:100:\"/home/activ8commerce/public_html/activeclubsolutions.net/wp-content/themes/active-club/functions.php\";i:5;s:112:\"/home/activ8commerce/public_html/activeclubsolutions.net/wp-content/themes/active-club/optionpanel/framework.php\";}','no'),
(44,'template','active-club','yes'),
(45,'stylesheet','active-club','yes'),
(48,'comment_registration','','yes'),
(49,'html_type','text/html','yes'),
(50,'use_trackback','0','yes'),
(51,'default_role','subscriber','yes'),
(52,'db_version','60421','yes'),
(53,'uploads_use_yearmonth_folders','1','yes'),
(54,'upload_path','','yes'),
(55,'blog_public','0','yes'),
(56,'default_link_category','0','yes'),
(57,'show_on_front','page','yes'),
(58,'tag_base','','yes'),
(59,'show_avatars','1','yes'),
(60,'avatar_rating','G','yes'),
(61,'upload_url_path','','yes'),
(62,'thumbnail_size_w','150','yes'),
(63,'thumbnail_size_h','150','yes'),
(64,'thumbnail_crop','1','yes'),
(65,'medium_size_w','300','yes'),
(66,'medium_size_h','300','yes'),
(67,'avatar_default','mystery','yes'),
(68,'large_size_w','1024','yes'),
(69,'large_size_h','1024','yes'),
(70,'image_default_link_type','file','yes'),
(71,'image_default_size','','yes'),
(72,'image_default_align','','yes'),
(73,'close_comments_for_old_posts','','yes'),
(74,'close_comments_days_old','14','yes'),
(75,'thread_comments','1','yes'),
(76,'thread_comments_depth','5','yes'),
(77,'page_comments','','yes'),
(78,'comments_per_page','50','yes'),
(79,'default_comments_page','newest','yes'),
(80,'comment_order','asc','yes'),
(81,'sticky_posts','a:0:{}','yes'),
(82,'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'),
(83,'widget_text','a:6:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:707:\"<img src=\"/wp-content/uploads/2019/09/Activ8ColorStacked150Transp.png\" /><br><br><br><p>Elevate Service... Maximize Sales.</p>\r\n\r\n<p>\r\n[ninzio_button text=\"Email Us\" size=\"small\" target=\"_self\" icon=\"envelope\" back_color=\"\" color=\"#ffffff\" href=\"/contact-active-club-solutions/\" /]</p>\r\n\r\n<h6 class=\"widget_title\">Careers</h6>\r\n<p>[ninzio_button text=\"Career Opportunities\" size=\"small\" target=\"_self\" icon=\"users\" back_color=\"\" color=\"#ffffff\" href=\"/careers/\" /]</p>\r\n<br><br>\r\n<p>\r\n<a target=\"_blank\" href=\"http://www.secureclub.net/images/activeclubmgmt/Active%20Club%20Soutions%20Privacy%20Policy%20November%202016.pdf\"><span style=\"font-weight: 400; color: white;\">Privacy Statement</span></a>\r\n</p>\r\n\";s:6:\"filter\";b:0;s:6:\"visual\";b:0;}i:3;a:4:{s:5:\"title\";s:10:\"Contact Us\";s:4:\"text\";s:239:\"<span style=\"font-size: 18px; font-weight: 600; color: #fff;\">1-877-441-2582</span><br><br>\r\n[ninzio_button text=\"Email Us\" size=\"small\" target=\"_self\" icon=\"envelope\" back_color=\"\" color=\"#ffffff\" href=\"/contact-active-club-solutions/\" /]\";s:6:\"filter\";b:0;s:6:\"visual\";b:0;}i:4;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:379:\"[ninzio_button text=\"Request a Demo\" size=\"large\" target=\"_self\" icon=\"download\" back_color=\"\" color=\"#ffffff\" href=\"/winery-pos-wine-club-software-demo/\"]\r\n\r\n<style type=\"text/css\">.NewsletterHookFrameDiv{margin-top:30px;margin-left:0%;margin-bottom:0%;width:95%;}</style>\r\n\r\n[ACSScript server=CA dbname=demodb_3]\r\n\r\n[ACSNewsletterHook server=CA dbname=demodb_3 fcrid=FC0000002]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:5;a:3:{s:5:\"title\";s:14:\"Request a Demo\";s:4:\"text\";s:49:\"[contact-form-7 id=\"1474\" title=\"Request a Demo\"]\";s:6:\"filter\";b:0;}i:6;a:4:{s:5:\"title\";s:28:\"Explore Active Club Packages\";s:4:\"text\";s:943:\"[icon_list size=\"medium\" type=\"circle square\" icon=\"angle-double-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<ul>\r\n<li>[gap height=\"7\" /]\r\n   <h5><strong><a title=\"All-In-One Tasting Room Solution\" href=\"/winery-software-pricing/all-in-one-tasting-room-solution-pricing/\">All-In-One</a></strong></h5>\r\n</li>\r\n<li>[gap height=\"7\" /]\r\n   <h5><strong><a title=\"iPad Winery POS\" href=\"/winery-software-pricing/activeclub-winery-pos/\">Tasting Room POS</a></strong></h5>\r\n</li>\r\n<li>[gap height=\"7\" /]\r\n   <h5><strong><a title=\"Wine Club Software\" href=\"/winery-software-pricing/wine-club-software-pricing/\">Wine Club</a></strong></h5>\r\n</li>\r\n<li>[gap height=\"7\" /]\r\n   <h5><strong><a title=\"Winery Ecommerce\" href=\"/wine-club-software-pricing/winery-website-shopping-cart/\">Ecommerce</a></strong></h5>\r\n</li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\";s:6:\"filter\";b:1;s:6:\"visual\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),
(84,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(85,'uninstall_plugins','a:6:{s:55:\"easy-pie-maintenance-mode/easy-pie-maintenance-mode.php\";a:2:{i:0;s:11:\"Easy_Pie_MM\";i:1;s:9:\"uninstall\";}s:41:\"better-wp-security/better-wp-security.php\";a:2:{i:0;s:10:\"ITSEC_Core\";i:1;s:12:\"on_uninstall\";}s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";a:2:{i:0;s:15:\"GADWP_Uninstall\";i:1;s:9:\"uninstall\";}s:22:\"backup/BackupGuard.php\";s:22:\"uninstall_backup_guard\";s:33:\"backup-guard-gold/BackupGuard.php\";s:22:\"uninstall_backup_guard\";s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}}','no'),
(86,'timezone_string','America/Los_Angeles','yes'),
(87,'page_for_posts','1434','yes'),
(88,'page_on_front','848','yes'),
(89,'default_post_format','0','yes'),
(90,'link_manager_enabled','0','yes'),
(91,'initial_db_version','26691','yes'),
(92,'wpqk_user_roles','a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:211:{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:20:\"manage_feed_settings\";b:1;s:9:\"edit_feed\";b:1;s:9:\"read_feed\";b:1;s:11:\"delete_feed\";b:1;s:10:\"edit_feeds\";b:1;s:17:\"edit_others_feeds\";b:1;s:13:\"publish_feeds\";b:1;s:18:\"read_private_feeds\";b:1;s:12:\"delete_feeds\";b:1;s:20:\"delete_private_feeds\";b:1;s:22:\"delete_published_feeds\";b:1;s:19:\"delete_others_feeds\";b:1;s:18:\"edit_private_feeds\";b:1;s:20:\"edit_published_feeds\";b:1;s:17:\"manage_feed_terms\";b:1;s:15:\"edit_feed_terms\";b:1;s:17:\"delete_feed_terms\";b:1;s:17:\"assign_feed_terms\";b:1;s:16:\"edit_feed_source\";b:1;s:16:\"read_feed_source\";b:1;s:18:\"delete_feed_source\";b:1;s:17:\"edit_feed_sources\";b:1;s:24:\"edit_others_feed_sources\";b:1;s:20:\"publish_feed_sources\";b:1;s:25:\"read_private_feed_sources\";b:1;s:19:\"delete_feed_sources\";b:1;s:27:\"delete_private_feed_sources\";b:1;s:29:\"delete_published_feed_sources\";b:1;s:26:\"delete_others_feed_sources\";b:1;s:25:\"edit_private_feed_sources\";b:1;s:27:\"edit_published_feed_sources\";b:1;s:24:\"manage_feed_source_terms\";b:1;s:22:\"edit_feed_source_terms\";b:1;s:24:\"delete_feed_source_terms\";b:1;s:24:\"assign_feed_source_terms\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;s:20:\"wpseo_manage_options\";b:1;s:10:\"manage_pys\";b:1;s:14:\"edit_feed_item\";b:1;s:14:\"read_feed_item\";b:1;s:16:\"delete_feed_item\";b:1;s:15:\"edit_feed_items\";b:1;s:22:\"edit_others_feed_items\";b:1;s:18:\"publish_feed_items\";b:1;s:23:\"read_private_feed_items\";b:1;s:17:\"delete_feed_items\";b:1;s:25:\"delete_private_feed_items\";b:1;s:27:\"delete_published_feed_items\";b:1;s:24:\"delete_others_feed_items\";b:1;s:23:\"edit_private_feed_items\";b:1;s:25:\"edit_published_feed_items\";b:1;s:22:\"manage_feed_item_terms\";b:1;s:20:\"edit_feed_item_terms\";b:1;s:22:\"delete_feed_item_terms\";b:1;s:22:\"assign_feed_item_terms\";b:1;s:19:\"edit_feed_blacklist\";b:1;s:19:\"read_feed_blacklist\";b:1;s:21:\"delete_feed_blacklist\";b:1;s:20:\"edit_feed_blacklists\";b:1;s:27:\"edit_others_feed_blacklists\";b:1;s:23:\"publish_feed_blacklists\";b:1;s:28:\"read_private_feed_blacklists\";b:1;s:22:\"delete_feed_blacklists\";b:1;s:30:\"delete_private_feed_blacklists\";b:1;s:32:\"delete_published_feed_blacklists\";b:1;s:29:\"delete_others_feed_blacklists\";b:1;s:28:\"edit_private_feed_blacklists\";b:1;s:30:\"edit_published_feed_blacklists\";b:1;s:27:\"manage_feed_blacklist_terms\";b:1;s:25:\"edit_feed_blacklist_terms\";b:1;s:27:\"delete_feed_blacklist_terms\";b:1;s:27:\"assign_feed_blacklist_terms\";b:1;s:18:\"edit_feed_template\";b:1;s:18:\"read_feed_template\";b:1;s:20:\"delete_feed_template\";b:1;s:19:\"edit_feed_templates\";b:1;s:26:\"edit_others_feed_templates\";b:1;s:22:\"publish_feed_templates\";b:1;s:27:\"read_private_feed_templates\";b:1;s:21:\"delete_feed_templates\";b:1;s:29:\"delete_private_feed_templates\";b:1;s:31:\"delete_published_feed_templates\";b:1;s:28:\"delete_others_feed_templates\";b:1;s:27:\"edit_private_feed_templates\";b:1;s:29:\"edit_published_feed_templates\";b:1;s:26:\"manage_feed_template_terms\";b:1;s:24:\"edit_feed_template_terms\";b:1;s:26:\"delete_feed_template_terms\";b:1;s:26:\"assign_feed_template_terms\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:129:{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:20:\"manage_feed_settings\";b:1;s:9:\"edit_feed\";b:1;s:9:\"read_feed\";b:1;s:11:\"delete_feed\";b:1;s:10:\"edit_feeds\";b:1;s:17:\"edit_others_feeds\";b:1;s:13:\"publish_feeds\";b:1;s:18:\"read_private_feeds\";b:1;s:12:\"delete_feeds\";b:1;s:20:\"delete_private_feeds\";b:1;s:22:\"delete_published_feeds\";b:1;s:19:\"delete_others_feeds\";b:1;s:18:\"edit_private_feeds\";b:1;s:20:\"edit_published_feeds\";b:1;s:17:\"manage_feed_terms\";b:1;s:15:\"edit_feed_terms\";b:1;s:17:\"delete_feed_terms\";b:1;s:17:\"assign_feed_terms\";b:1;s:16:\"edit_feed_source\";b:1;s:16:\"read_feed_source\";b:1;s:18:\"delete_feed_source\";b:1;s:17:\"edit_feed_sources\";b:1;s:24:\"edit_others_feed_sources\";b:1;s:20:\"publish_feed_sources\";b:1;s:25:\"read_private_feed_sources\";b:1;s:19:\"delete_feed_sources\";b:1;s:27:\"delete_private_feed_sources\";b:1;s:29:\"delete_published_feed_sources\";b:1;s:26:\"delete_others_feed_sources\";b:1;s:25:\"edit_private_feed_sources\";b:1;s:27:\"edit_published_feed_sources\";b:1;s:24:\"manage_feed_source_terms\";b:1;s:22:\"edit_feed_source_terms\";b:1;s:24:\"delete_feed_source_terms\";b:1;s:24:\"assign_feed_source_terms\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;s:14:\"edit_feed_item\";b:1;s:14:\"read_feed_item\";b:1;s:16:\"delete_feed_item\";b:1;s:15:\"edit_feed_items\";b:1;s:22:\"edit_others_feed_items\";b:1;s:18:\"publish_feed_items\";b:1;s:23:\"read_private_feed_items\";b:1;s:17:\"delete_feed_items\";b:1;s:25:\"delete_private_feed_items\";b:1;s:27:\"delete_published_feed_items\";b:1;s:24:\"delete_others_feed_items\";b:1;s:23:\"edit_private_feed_items\";b:1;s:25:\"edit_published_feed_items\";b:1;s:22:\"manage_feed_item_terms\";b:1;s:20:\"edit_feed_item_terms\";b:1;s:22:\"delete_feed_item_terms\";b:1;s:22:\"assign_feed_item_terms\";b:1;s:19:\"edit_feed_blacklist\";b:1;s:19:\"read_feed_blacklist\";b:1;s:21:\"delete_feed_blacklist\";b:1;s:20:\"edit_feed_blacklists\";b:1;s:27:\"edit_others_feed_blacklists\";b:1;s:23:\"publish_feed_blacklists\";b:1;s:28:\"read_private_feed_blacklists\";b:1;s:22:\"delete_feed_blacklists\";b:1;s:30:\"delete_private_feed_blacklists\";b:1;s:32:\"delete_published_feed_blacklists\";b:1;s:29:\"delete_others_feed_blacklists\";b:1;s:28:\"edit_private_feed_blacklists\";b:1;s:30:\"edit_published_feed_blacklists\";b:1;s:27:\"manage_feed_blacklist_terms\";b:1;s:25:\"edit_feed_blacklist_terms\";b:1;s:27:\"delete_feed_blacklist_terms\";b:1;s:27:\"assign_feed_blacklist_terms\";b:1;s:18:\"edit_feed_template\";b:1;s:18:\"read_feed_template\";b:1;s:20:\"delete_feed_template\";b:1;s:19:\"edit_feed_templates\";b:1;s:26:\"edit_others_feed_templates\";b:1;s:22:\"publish_feed_templates\";b:1;s:27:\"read_private_feed_templates\";b:1;s:21:\"delete_feed_templates\";b:1;s:29:\"delete_private_feed_templates\";b:1;s:31:\"delete_published_feed_templates\";b:1;s:28:\"delete_others_feed_templates\";b:1;s:27:\"edit_private_feed_templates\";b:1;s:29:\"edit_published_feed_templates\";b:1;s:26:\"manage_feed_template_terms\";b:1;s:24:\"edit_feed_template_terms\";b:1;s:26:\"delete_feed_template_terms\";b:1;s:26:\"assign_feed_template_terms\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:11:{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:15:\"wpseo_bulk_edit\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:80:{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:20:\"manage_feed_settings\";b:1;s:9:\"edit_feed\";b:1;s:9:\"read_feed\";b:1;s:11:\"delete_feed\";b:1;s:10:\"edit_feeds\";b:1;s:17:\"edit_others_feeds\";b:1;s:13:\"publish_feeds\";b:1;s:18:\"read_private_feeds\";b:1;s:12:\"delete_feeds\";b:1;s:20:\"delete_private_feeds\";b:1;s:22:\"delete_published_feeds\";b:1;s:19:\"delete_others_feeds\";b:1;s:18:\"edit_private_feeds\";b:1;s:20:\"edit_published_feeds\";b:1;s:17:\"manage_feed_terms\";b:1;s:15:\"edit_feed_terms\";b:1;s:17:\"delete_feed_terms\";b:1;s:17:\"assign_feed_terms\";b:1;s:16:\"edit_feed_source\";b:1;s:16:\"read_feed_source\";b:1;s:18:\"delete_feed_source\";b:1;s:17:\"edit_feed_sources\";b:1;s:24:\"edit_others_feed_sources\";b:1;s:20:\"publish_feed_sources\";b:1;s:25:\"read_private_feed_sources\";b:1;s:19:\"delete_feed_sources\";b:1;s:27:\"delete_private_feed_sources\";b:1;s:29:\"delete_published_feed_sources\";b:1;s:26:\"delete_others_feed_sources\";b:1;s:25:\"edit_private_feed_sources\";b:1;s:27:\"edit_published_feed_sources\";b:1;s:24:\"manage_feed_source_terms\";b:1;s:22:\"edit_feed_source_terms\";b:1;s:24:\"delete_feed_source_terms\";b:1;s:24:\"assign_feed_source_terms\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:79:{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:20:\"manage_feed_settings\";b:1;s:9:\"edit_feed\";b:1;s:9:\"read_feed\";b:1;s:11:\"delete_feed\";b:1;s:10:\"edit_feeds\";b:1;s:17:\"edit_others_feeds\";b:1;s:13:\"publish_feeds\";b:1;s:18:\"read_private_feeds\";b:1;s:12:\"delete_feeds\";b:1;s:20:\"delete_private_feeds\";b:1;s:22:\"delete_published_feeds\";b:1;s:19:\"delete_others_feeds\";b:1;s:18:\"edit_private_feeds\";b:1;s:20:\"edit_published_feeds\";b:1;s:17:\"manage_feed_terms\";b:1;s:15:\"edit_feed_terms\";b:1;s:17:\"delete_feed_terms\";b:1;s:17:\"assign_feed_terms\";b:1;s:16:\"edit_feed_source\";b:1;s:16:\"read_feed_source\";b:1;s:18:\"delete_feed_source\";b:1;s:17:\"edit_feed_sources\";b:1;s:24:\"edit_others_feed_sources\";b:1;s:20:\"publish_feed_sources\";b:1;s:25:\"read_private_feed_sources\";b:1;s:19:\"delete_feed_sources\";b:1;s:27:\"delete_private_feed_sources\";b:1;s:29:\"delete_published_feed_sources\";b:1;s:26:\"delete_others_feed_sources\";b:1;s:25:\"edit_private_feed_sources\";b:1;s:27:\"edit_published_feed_sources\";b:1;s:24:\"manage_feed_source_terms\";b:1;s:22:\"edit_feed_source_terms\";b:1;s:24:\"delete_feed_source_terms\";b:1;s:24:\"assign_feed_source_terms\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),
(93,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(94,'widget_recent-posts','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}i:3;a:3:{s:5:\"title\";s:10:\"What\'s New\";s:6:\"number\";i:5;s:9:\"show_date\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),
(95,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(96,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(97,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(98,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:16:\"main-widget-area\";a:3:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:14:\"recent-posts-2\";}s:21:\"portfolio-widget-area\";a:0:{}s:15:\"faq-widget-area\";a:0:{}s:16:\"page-widget-area\";a:2:{i:0;s:6:\"text-6\";i:1;s:6:\"text-5\";}s:18:\"footer-widget-area\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:14:\"recent-posts-3\";i:3;s:6:\"text-4\";}s:16:\"shop-widget-area\";a:0:{}s:18:\"smartslider_area_1\";a:0:{}s:13:\"array_version\";i:3;}','yes'),
(99,'cron','a:22:{i:1763181007;a:1:{s:21:\"updraft_backup_resume\";a:1:{s:32:\"00f8b4d9760738b7c4d5aa10726c5f67\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:2:{i:0;i:1;i:1;s:12:\"516753892fb5\";}}}}i:1763181939;a:1:{s:24:\"akismet_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1763182010;a:1:{s:26:\"wprss_fetch_all_feeds_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1763182208;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1763182618;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1763183709;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:1763197917;a:1:{s:49:\"WPEngineSecurityAuditor_Scans_fingerprint_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1763200619;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:1763202058;a:1:{s:39:\"WPEngineSecurityAuditor_Scans_scheduler\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1763223839;a:1:{s:33:\"updraftplus_clean_temporary_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1763225804;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1763230639;a:1:{s:23:\"seowizard_sitemap_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1763231248;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1763232484;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1763246837;a:1:{s:25:\"wprss_truncate_posts_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1763250041;a:1:{s:14:\"redux_tracking\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1763255204;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1763257038;a:1:{s:19:\"wprss_truncate_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1763263059;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:1763757979;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1763785428;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),
(117,'db_upgraded','','on'),
(129,'limit_login_retries','a:1:{s:13:\"43.248.10.132\";i:1;}','no'),
(130,'limit_login_retries_valid','a:1:{s:13:\"43.248.10.132\";i:1425335535;}','no'),
(133,'wpe_notices','a:0:{}','yes'),
(134,'wpe_notices_ttl','1634800395','yes'),
(158,'_transient_twentyfourteen_category_count','1','yes'),
(159,'recently_activated','a:0:{}','off'),
(160,'akismet_available_servers','a:4:{s:12:\"192.0.80.246\";b:1;s:12:\"66.135.58.62\";b:1;s:12:\"192.0.80.244\";b:1;s:12:\"66.135.58.61\";b:1;}','yes'),
(161,'akismet_connectivity_time','1399350123','yes'),
(162,'akismet_strictness','0','yes'),
(163,'akismet_show_user_comments_approved','0','yes'),
(164,'wordpress_api_key','f4be702fcdac','yes'),
(192,'easy-pie-mm-options','a:11:{s:14:\"plugin_version\";s:5:\"1.0.1\";s:7:\"enabled\";b:0;s:17:\"page_template_key\";s:5:\"plain\";s:5:\"title\";s:47:\"Active Club Solutions - New site launching soon\";s:6:\"header\";s:0:\"\";s:8:\"headline\";s:34:\"New Website Launching Soon<br><br>\";s:7:\"message\";s:90:\"Active Club Solutions\' new website will be launching very soon. Please check back shortly.\";s:8:\"logo_url\";s:71:\"https://activeclubsolutions.net/wp-content/uploads/2014/05/logo-500.png\";s:20:\"active_manifest_path\";N;s:3:\"css\";s:0:\"\";s:12:\"503_redirect\";b:0;}','yes'),
(259,'theme_mods_twentyfourteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1400542700;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','no'),
(260,'current_theme','Active Club Solutions','yes'),
(261,'theme_mods_active-club','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:11:\"header-menu\";i:2;}s:18:\"custom_css_post_id\";i:2684;s:18:\"jetpack_custom_css\";a:3:{s:12:\"preprocessor\";s:0:\"\";s:7:\"replace\";b:0;s:13:\"content_width\";s:0:\"\";}}','yes'),
(262,'theme_switched','','yes'),
(263,'redux-framework-tracking','a:3:{s:8:\"dev_mode\";b:0;s:4:\"hash\";s:32:\"e1348a6a4e3fbb074015329f1bf4e5b8\";s:14:\"allow_tracking\";s:2:\"no\";}','yes'),
(264,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"384\";s:6:\"height\";s:3:\"410\";s:4:\"crop\";i:1;}','yes'),
(265,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"640\";s:4:\"crop\";i:1;}','yes'),
(266,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"100\";s:6:\"height\";s:3:\"100\";s:4:\"crop\";i:1;}','yes'),
(268,'nz_ninzio','a:172:{s:8:\"last_tab\";s:0:\"\";s:14:\"ninzio-favicon\";a:5:{s:3:\"url\";s:70:\"https://activeclubsolutions.net/wp-content/uploads/2019/09/favicon.ico\";s:2:\"id\";s:4:\"3780\";s:6:\"height\";s:2:\"32\";s:5:\"width\";s:2:\"32\";s:9:\"thumbnail\";s:70:\"https://activeclubsolutions.net/wp-content/uploads/2019/09/favicon.ico\";}s:13:\"ninzio-layout\";s:4:\"full\";s:20:\"ninzio-page-comments\";s:1:\"0\";s:22:\"ninzio-faq-widget-area\";s:1:\"0\";s:20:\"ninzio-smooth-scroll\";s:1:\"0\";s:15:\"ninzio-one-page\";s:1:\"0\";s:28:\"ninzio-one-page-scroll-speed\";s:3:\"750\";s:22:\"ninzio-one-page-easing\";s:5:\"swing\";s:27:\"ninzio-one-page-update-hash\";s:1:\"0\";s:22:\"ninzio-one-page-filter\";s:0:\"\";s:24:\"ninzio-error-404-message\";s:0:\"\";s:23:\"ninzio-google-analytics\";s:44:\"                                            \";s:21:\"ninzio-google-map-api\";s:0:\"\";s:27:\"ninzio-google-map-client-id\";s:0:\"\";s:18:\"ninzio-normal-logo\";a:5:{s:3:\"url\";s:85:\"https://activeclubsolutions.net/wp-content/uploads/2019/09/Activ8ColorStacked-150.png\";s:2:\"id\";s:4:\"3775\";s:6:\"height\";s:2:\"62\";s:5:\"width\";s:3:\"150\";s:9:\"thumbnail\";s:92:\"https://activeclubsolutions.net/wp-content/uploads/2019/09/Activ8ColorStacked-150-150x62.png\";}s:18:\"ninzio-retina-logo\";a:5:{s:3:\"url\";s:85:\"https://activeclubsolutions.net/wp-content/uploads/2019/09/Activ8ColorStacked-300.png\";s:2:\"id\";s:4:\"3776\";s:6:\"height\";s:3:\"125\";s:5:\"width\";s:3:\"300\";s:9:\"thumbnail\";s:93:\"https://activeclubsolutions.net/wp-content/uploads/2019/09/Activ8ColorStacked-300-150x125.png\";}s:24:\"ninzio-header-attachment\";s:6:\"scroll\";s:24:\"ninzio-header-responsive\";s:1:\"0\";s:20:\"ninzio-header-search\";s:1:\"1\";s:37:\"ninzio-header-menu-dropdown-indicator\";s:1:\"0\";s:20:\"ninzio-header-height\";s:2:\"90\";s:17:\"ninzio-header-top\";s:1:\"1\";s:34:\"ninzio-header-top-background-color\";s:7:\"#f5f5f5\";s:28:\"ninzio-header-top-text-color\";s:7:\"#bdbcbc\";s:26:\"ninzio-header-social-links\";s:1:\"1\";s:40:\"ninzio-header-social-links-default-color\";s:7:\"#3a92aa\";s:38:\"ninzio-header-social-links-hover-color\";s:7:\"#3a92aa\";s:49:\"ninzio-header-social-links-hover-background-color\";s:7:\"#3a92aa\";s:13:\"ninzio-slogan\";s:62:\"call today <span style=\"color: #3a92aa;\">1-877-441-2582</span>\";s:30:\"ninzio-header-background-color\";s:0:\"\";s:30:\"ninzio-menu-default-text-color\";s:7:\"#333333\";s:28:\"ninzio-menu-hover-text-color\";s:7:\"#ffffff\";s:24:\"ninzio-menu-hover-effect\";s:4:\"fill\";s:30:\"ninzio-menu-hover-effect-color\";s:7:\"#b10101\";s:26:\"ninzio-menu-text-transform\";s:9:\"uppercase\";s:23:\"ninzio-menu-font-weight\";s:6:\"normal\";s:21:\"ninzio-menu-font-size\";s:2:\"14\";s:23:\"ninzio-menu-font-family\";s:9:\"istok-web\";s:29:\"ninzio-submenu-text-transform\";s:4:\"none\";s:26:\"ninzio-submenu-font-weight\";s:6:\"normal\";s:24:\"ninzio-submenu-font-size\";s:2:\"13\";s:26:\"ninzio-submenu-font-family\";s:9:\"istok-web\";s:25:\"ninzio-submenu-text-color\";s:7:\"#dddddd\";s:31:\"ninzio-submenu-hover-text-color\";s:7:\"#ffffff\";s:31:\"ninzio-submenu-background-color\";s:7:\"#5c6366\";s:37:\"ninzio-submenu-hover-background-color\";s:7:\"#565e60\";s:27:\"ninzio-submenu-border-color\";s:7:\"#4b5051\";s:38:\"ninzio-submenu-top-bottom-border-color\";s:7:\"#474d4f\";s:22:\"ninzio-submenu-opacity\";s:1:\"1\";s:22:\"ninzio-megamenu-border\";s:1:\"1\";s:30:\"ninzio-megamenu-submenu-border\";s:1:\"0\";s:37:\"ninzio-megamenu-top-level-font-weight\";s:6:\"normal\";s:40:\"ninzio-megamenu-top-level-text-transform\";s:4:\"none\";s:36:\"ninzio-megamenu-top-level-text-color\";s:7:\"#dddddd\";s:42:\"ninzio-megamenu-top-level-hover-text-color\";s:7:\"#ffffff\";s:42:\"ninzio-megamenu-top-level-background-color\";s:0:\"\";s:48:\"ninzio-megamenu-top-level-hover-background-color\";s:0:\"\";s:40:\"ninzio-megamenu-sub-level-text-transform\";s:4:\"none\";s:36:\"ninzio-megamenu-sub-level-text-color\";s:7:\"#dddddd\";s:42:\"ninzio-megamenu-sub-level-hover-text-color\";s:7:\"#ffffff\";s:42:\"ninzio-megamenu-sub-level-background-color\";s:0:\"\";s:48:\"ninzio-megamenu-sub-level-hover-background-color\";s:0:\"\";s:30:\"ninzio-footer-background-color\";s:7:\"#3e5157\";s:24:\"ninzio-footer-text-color\";s:7:\"#ffffff\";s:23:\"ninzio-footer-font-size\";s:2:\"14\";s:25:\"ninzio-footer-line-height\";s:2:\"22\";s:26:\"ninzio-footer-social-links\";s:1:\"1\";s:16:\"ninzio-copyright\";s:84:\"<small>2020 Activ8 Commerce / Active Club Solutions © All rights reserved. </small>\";s:42:\"ninzio-footer-widget-area-background-color\";s:7:\"#34474d\";s:44:\"ninzio-footer-widget-area-widget-title-color\";s:7:\"#ffffff\";s:36:\"ninzio-footer-widget-area-text-color\";s:7:\"#999999\";s:33:\"ninzio-footer-widget-area-columns\";s:1:\"4\";s:17:\"ninzio-main-color\";s:7:\"#3a92aa\";s:11:\"ninzio-skin\";s:5:\"light\";s:28:\"ninzio-site-background-color\";s:7:\"#ffffff\";s:28:\"ninzio-site-background-image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:35:\"ninzio-site-background-image-repeat\";s:9:\"no-repeat\";s:37:\"ninzio-site-background-image-position\";s:8:\"left_top\";s:39:\"ninzio-site-background-image-attachment\";s:6:\"scroll\";s:33:\"ninzio-site-background-image-size\";s:4:\"auto\";s:33:\"ninzio-light-skin-main-text-color\";s:7:\"#555555\";s:33:\"ninzio-light-skin-dark-text-color\";s:7:\"#444444\";s:34:\"ninzio-light-skin-light-text-color\";s:7:\"#999999\";s:32:\"ninzio-dark-skin-main-text-color\";s:7:\"#999999\";s:32:\"ninzio-dark-skin-dark-text-color\";s:7:\"#ffffff\";s:33:\"ninzio-dark-skin-light-text-color\";s:7:\"#777777\";s:17:\"ninzio-custom-css\";s:1097:\"                        .footer a.button {color: #fff !important;}\r\n.content-box.v1 .box .box-title {width: 91%;}\r\n.content-box.v1 .box h4.box-title {color: #fff; position: absolute; text-align: center; top: 110px; font-size: 50px;}\r\nh1 {margin-bottom: 10px !important;}\r\nh1,h2,h3,h4 {font-weight: normal !important;}\r\n#table-1 td {width: 25% !important;}\r\n\r\n/*-----------------------------------------------*/\r\n/*	EMBEDDED BLOG VIDEOS\r\n/*-----------------------------------------------*/\r\n.single-format-standard iframe {width:100%; height: 505px;}\r\n@media only screen and (max-width: 1200px) {\r\n.single-format-standard iframe {height: 360px;}\r\n}\r\n@media only screen and (max-width: 979px) {\r\n.single-format-standard iframe {height: 300px;}\r\n}\r\n@media only screen and (max-width: 767px) {\r\n.single-format-standard iframe {height: 250px !important;}\r\n}\r\n.ninzio-overlay:hover {opacity: 0;}\r\n\r\n.slogan {\r\nfont-size: 16px;\r\ntext-align: right !important;;\r\nwidth: 85%;\r\n}\r\n@media only screen and (max-width: 1023px) {\r\n.slogan {\r\ntext-align: center !important;\r\nwidth: 100%;\r\n}\r\n}                    \";s:23:\"ninzio-body-font-family\";s:6:\"roboto\";s:21:\"ninzio-body-font-size\";s:2:\"14\";s:23:\"ninzio-body-line-height\";s:2:\"22\";s:27:\"ninzio-body-small-font-size\";s:2:\"11\";s:29:\"ninzio-body-small-line-height\";s:2:\"18\";s:27:\"ninzio-headings-font-family\";s:15:\"cabin-condensed\";s:19:\"ninzio-h1-font-size\";s:2:\"32\";s:21:\"ninzio-h1-line-height\";s:2:\"33\";s:19:\"ninzio-h2-font-size\";s:2:\"26\";s:21:\"ninzio-h2-line-height\";s:2:\"32\";s:19:\"ninzio-h3-font-size\";s:2:\"24\";s:21:\"ninzio-h3-line-height\";s:2:\"28\";s:19:\"ninzio-h4-font-size\";s:2:\"22\";s:21:\"ninzio-h4-line-height\";s:2:\"28\";s:19:\"ninzio-h5-font-size\";s:2:\"20\";s:21:\"ninzio-h5-line-height\";s:2:\"26\";s:19:\"ninzio-h6-font-size\";s:2:\"18\";s:21:\"ninzio-h6-line-height\";s:2:\"24\";s:25:\"ninzio-button-font-family\";s:9:\"istok-web\";s:26:\"ninzio-buttons-font-weight\";s:3:\"600\";s:19:\"ninzio-custom-fonts\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:22:\"ninzio-font-custom-css\";s:44:\"                                            \";s:18:\"ninzio-page-tweets\";s:1:\"0\";s:31:\"ninzio-page-tweets-consumer-key\";s:0:\"\";s:34:\"ninzio-page-tweets-consumer-secret\";s:0:\"\";s:31:\"ninzio-page-tweets-access-token\";s:0:\"\";s:38:\"ninzio-page-tweets-access-token-secret\";s:0:\"\";s:21:\"ninzio-page-tweets-id\";s:0:\"\";s:25:\"ninzio-page-tweets-number\";s:0:\"\";s:17:\"ninzio-social-rss\";s:36:\"https://activeclubsolutions.net/feed\";s:22:\"ninzio-social-facebook\";s:39:\"http://facebook.com/activeclubsolutions\";s:21:\"ninzio-social-twitter\";s:0:\"\";s:24:\"ninzio-social-googleplus\";s:0:\"\";s:21:\"ninzio-social-youtube\";s:38:\"http://youtube.com/activeclubsolutions\";s:19:\"ninzio-social-vimeo\";s:0:\"\";s:22:\"ninzio-social-linkedin\";s:0:\"\";s:23:\"ninzio-social-pinterest\";s:0:\"\";s:20:\"ninzio-social-flickr\";s:0:\"\";s:23:\"ninzio-social-instagram\";s:0:\"\";s:19:\"ninzio-social-apple\";s:0:\"\";s:20:\"ninzio-social-tumblr\";s:0:\"\";s:22:\"ninzio-social-dribbble\";s:0:\"\";s:21:\"ninzio-social-android\";s:0:\"\";s:19:\"ninzio-social-email\";s:0:\"\";s:18:\"ninzio-blog-layout\";s:4:\"full\";s:26:\"ninzio-blog-excerpt-length\";s:3:\"285\";s:28:\"ninzio-blog-main-widget-area\";s:1:\"1\";s:35:\"ninzio-blog-single-main-widget-area\";s:1:\"1\";s:18:\"ninzio-blog-author\";s:1:\"0\";s:20:\"ninzio-blog-comments\";s:1:\"0\";s:24:\"ninzio-blog-social-share\";s:1:\"1\";s:22:\"ninzio-portfolio-title\";s:9:\"Portfolio\";s:23:\"ninzio-portfolio-layout\";s:6:\"medium\";s:28:\"ninzio-portfolio-solo-layout\";s:1:\"0\";s:28:\"ninzio-portfolio-widget-area\";s:1:\"0\";s:27:\"ninzio-portfolio-pagination\";s:1:\"1\";s:25:\"ninzio-portfolio-comments\";s:1:\"1\";s:29:\"ninzio-portfolio-social-share\";s:1:\"1\";s:23:\"ninzio-shop-rich-header\";s:1:\"0\";s:25:\"ninzio-shop-ninzio-slider\";s:1:\"0\";s:17:\"ninzio-shop-title\";s:0:\"\";s:20:\"ninzio-shop-subtitle\";s:0:\"\";s:34:\"ninzio-shop-title-background-color\";s:7:\"#000000\";s:42:\"ninzio-shop-title-background-color-opacity\";s:3:\"0.6\";s:28:\"ninzio-shop-title-text-color\";s:7:\"#ffffff\";s:37:\"ninzio-shop-subtitle-background-color\";s:7:\"#f34a53\";s:45:\"ninzio-shop-subtitle-background-color-opacity\";s:4:\"0.95\";s:31:\"ninzio-shop-subtitle-text-color\";s:7:\"#ffffff\";s:35:\"ninzio-shop-header-background-color\";s:7:\"#f6f6f6\";s:35:\"ninzio-shop-header-background-image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:42:\"ninzio-shop-header-background-image-repeat\";s:9:\"no-repeat\";s:44:\"ninzio-shop-header-background-image-position\";s:8:\"left_top\";s:46:\"ninzio-shop-header-background-image-attachment\";s:6:\"scroll\";s:40:\"ninzio-shop-header-background-image-size\";s:4:\"auto\";s:27:\"ninzio-shop-header-parallax\";s:1:\"0\";s:26:\"ninzio-shop-ninzio-sidebar\";s:4:\"none\";s:25:\"ninzio-shop-ninzio-layout\";s:6:\"medium\";s:16:\"ninzio-shop-cart\";s:1:\"0\";s:27:\"ninzio-shop-cart-text-color\";s:7:\"#333333\";s:33:\"ninzio-shop-cart-background-color\";s:0:\"\";s:28:\"ninzio-shop-related-products\";s:1:\"0\";s:35:\"ninzio-shop-related-products-number\";s:1:\"4\";s:26:\"ninzio-shop-shortcode-area\";s:0:\"\";s:33:\"ninzio-shop-single-shortcode-area\";s:0:\"\";}','yes'),
(269,'ninzio_slider_settings','a:6:{s:13:\"ninzio_slider\";s:3:\"yes\";s:20:\"ninzio_slider_mobile\";s:3:\"yes\";s:20:\"ninzio_slider_height\";s:3:\"584\";s:24:\"ninzio_slider_transition\";s:4:\"fade\";s:22:\"ninzio_slider_autoplay\";s:3:\"yes\";s:27:\"ninzio_slider_autoplaydelay\";s:5:\"11000\";}','yes'),
(274,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.1.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1458827911;s:7:\"version\";s:3:\"4.4\";s:11:\"count_valid\";i:0;s:13:\"count_invalid\";i:2;}}','yes'),
(277,'_site_transient_envato-wordpress-toolkit-master/index.php_new_ve','1.7.2','yes'),
(279,'_site_transient_envato-wordpress-toolkit-master/index.php_github','O:8:\"stdClass\":70:{s:2:\"id\";i:2558893;s:4:\"name\";s:24:\"envato-wordpress-toolkit\";s:9:\"full_name\";s:31:\"envato/envato-wordpress-toolkit\";s:5:\"owner\";O:8:\"stdClass\":17:{s:5:\"login\";s:6:\"envato\";s:2:\"id\";i:14786;s:10:\"avatar_url\";s:48:\"http://avatars.githubusercontent.com/u/14786?v=3\";s:11:\"gravatar_id\";s:0:\"\";s:3:\"url\";s:34:\"http://api.github.com/users/envato\";s:8:\"html_url\";s:24:\"http://github.com/envato\";s:13:\"followers_url\";s:44:\"http://api.github.com/users/envato/followers\";s:13:\"following_url\";s:57:\"http://api.github.com/users/envato/following{/other_user}\";s:9:\"gists_url\";s:50:\"http://api.github.com/users/envato/gists{/gist_id}\";s:11:\"starred_url\";s:57:\"http://api.github.com/users/envato/starred{/owner}{/repo}\";s:17:\"subscriptions_url\";s:48:\"http://api.github.com/users/envato/subscriptions\";s:17:\"organizations_url\";s:39:\"http://api.github.com/users/envato/orgs\";s:9:\"repos_url\";s:40:\"http://api.github.com/users/envato/repos\";s:10:\"events_url\";s:51:\"http://api.github.com/users/envato/events{/privacy}\";s:19:\"received_events_url\";s:50:\"http://api.github.com/users/envato/received_events\";s:4:\"type\";s:12:\"Organization\";s:10:\"site_admin\";b:0;}s:7:\"private\";b:0;s:8:\"html_url\";s:49:\"http://github.com/envato/envato-wordpress-toolkit\";s:11:\"description\";s:53:\"WordPress Toolkit for Envato Marketplace hosted items\";s:4:\"fork\";b:0;s:3:\"url\";s:59:\"http://api.github.com/repos/envato/envato-wordpress-toolkit\";s:9:\"forks_url\";s:65:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/forks\";s:8:\"keys_url\";s:73:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/keys{/key_id}\";s:17:\"collaborators_url\";s:88:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/collaborators{/collaborator}\";s:9:\"teams_url\";s:65:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/teams\";s:9:\"hooks_url\";s:65:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/hooks\";s:16:\"issue_events_url\";s:82:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/issues/events{/number}\";s:10:\"events_url\";s:66:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/events\";s:13:\"assignees_url\";s:76:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/assignees{/user}\";s:12:\"branches_url\";s:77:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/branches{/branch}\";s:8:\"tags_url\";s:64:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/tags\";s:9:\"blobs_url\";s:75:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/git/blobs{/sha}\";s:12:\"git_tags_url\";s:74:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/git/tags{/sha}\";s:12:\"git_refs_url\";s:74:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/git/refs{/sha}\";s:9:\"trees_url\";s:75:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/git/trees{/sha}\";s:12:\"statuses_url\";s:74:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/statuses/{sha}\";s:13:\"languages_url\";s:69:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/languages\";s:14:\"stargazers_url\";s:70:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/stargazers\";s:16:\"contributors_url\";s:72:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/contributors\";s:15:\"subscribers_url\";s:71:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/subscribers\";s:16:\"subscription_url\";s:72:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/subscription\";s:11:\"commits_url\";s:73:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/commits{/sha}\";s:15:\"git_commits_url\";s:77:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/git/commits{/sha}\";s:12:\"comments_url\";s:77:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/comments{/number}\";s:17:\"issue_comment_url\";s:84:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/issues/comments{/number}\";s:12:\"contents_url\";s:76:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/contents/{+path}\";s:11:\"compare_url\";s:83:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/compare/{base}...{head}\";s:10:\"merges_url\";s:66:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/merges\";s:11:\"archive_url\";s:82:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/{archive_format}{/ref}\";s:13:\"downloads_url\";s:69:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/downloads\";s:10:\"issues_url\";s:75:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/issues{/number}\";s:9:\"pulls_url\";s:74:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/pulls{/number}\";s:14:\"milestones_url\";s:79:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/milestones{/number}\";s:17:\"notifications_url\";s:99:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/notifications{?since,all,participating}\";s:10:\"labels_url\";s:73:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/labels{/name}\";s:12:\"releases_url\";s:73:\"http://api.github.com/repos/envato/envato-wordpress-toolkit/releases{/id}\";s:10:\"created_at\";s:20:\"2011-10-11T22:58:26Z\";s:10:\"updated_at\";s:20:\"2015-03-14T11:49:50Z\";s:9:\"pushed_at\";s:20:\"2015-02-13T05:28:57Z\";s:7:\"git_url\";s:52:\"git://github.com/envato/envato-wordpress-toolkit.git\";s:7:\"ssh_url\";s:50:\"git@github.com:envato/envato-wordpress-toolkit.git\";s:9:\"clone_url\";s:53:\"http://github.com/envato/envato-wordpress-toolkit.git\";s:7:\"svn_url\";s:49:\"http://github.com/envato/envato-wordpress-toolkit\";s:8:\"homepage\";s:0:\"\";s:4:\"size\";i:582;s:16:\"stargazers_count\";i:229;s:14:\"watchers_count\";i:229;s:8:\"language\";s:3:\"PHP\";s:10:\"has_issues\";b:1;s:13:\"has_downloads\";b:1;s:8:\"has_wiki\";b:1;s:9:\"has_pages\";b:0;s:11:\"forks_count\";i:79;s:10:\"mirror_url\";N;s:17:\"open_issues_count\";i:10;s:5:\"forks\";i:79;s:11:\"open_issues\";i:10;s:8:\"watchers\";i:229;s:14:\"default_branch\";s:6:\"master\";s:12:\"organization\";O:8:\"stdClass\":17:{s:5:\"login\";s:6:\"envato\";s:2:\"id\";i:14786;s:10:\"avatar_url\";s:48:\"http://avatars.githubusercontent.com/u/14786?v=3\";s:11:\"gravatar_id\";s:0:\"\";s:3:\"url\";s:34:\"http://api.github.com/users/envato\";s:8:\"html_url\";s:24:\"http://github.com/envato\";s:13:\"followers_url\";s:44:\"http://api.github.com/users/envato/followers\";s:13:\"following_url\";s:57:\"http://api.github.com/users/envato/following{/other_user}\";s:9:\"gists_url\";s:50:\"http://api.github.com/users/envato/gists{/gist_id}\";s:11:\"starred_url\";s:57:\"http://api.github.com/users/envato/starred{/owner}{/repo}\";s:17:\"subscriptions_url\";s:48:\"http://api.github.com/users/envato/subscriptions\";s:17:\"organizations_url\";s:39:\"http://api.github.com/users/envato/orgs\";s:9:\"repos_url\";s:40:\"http://api.github.com/users/envato/repos\";s:10:\"events_url\";s:51:\"http://api.github.com/users/envato/events{/privacy}\";s:19:\"received_events_url\";s:50:\"http://api.github.com/users/envato/received_events\";s:4:\"type\";s:12:\"Organization\";s:10:\"site_admin\";b:0;}s:13:\"network_count\";i:79;s:17:\"subscribers_count\";i:76;}','yes'),
(431,'portfolio-category_children','a:0:{}','yes'),
(432,'faq-category_children','a:0:{}','yes'),
(563,'widget_twitter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(564,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(574,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','off'),
(696,'_transient_random_seed','1b84848a488e281c12dc5c31fcba22c6','yes'),
(1074,'nz_ninzio-transients','a:2:{s:14:\"changed_values\";a:2:{s:16:\"ninzio-shop-cart\";s:1:\"1\";s:28:\"ninzio-shop-related-products\";s:1:\"1\";}s:9:\"last_save\";i:1604880914;}','yes'),
(1272,'WPLANG','','yes'),
(1346,'itsec_data','a:5:{s:5:\"build\";i:4034;s:20:\"activation_timestamp\";i:1411077308;s:17:\"already_supported\";b:0;s:15:\"setup_completed\";b:1;s:18:\"tooltips_dismissed\";b:1;}','yes'),
(1347,'itsec_global','a:22:{s:11:\"write_files\";b:1;s:18:\"notification_email\";a:1:{i:0;s:30:\"helene@activeclubsolutions.net\";}s:12:\"backup_email\";a:1:{i:0;s:30:\"helene@activeclubsolutions.net\";}s:15:\"lockout_message\";s:5:\"error\";s:20:\"user_lockout_message\";s:64:\"You have been locked out due to too many invalid login attempts.\";s:25:\"community_lockout_message\";s:77:\"Your IP address has been flagged as a threat by the iThemes Security network.\";s:9:\"blacklist\";b:1;s:15:\"blacklist_count\";i:3;s:16:\"blacklist_period\";i:7;s:14:\"lockout_period\";i:500;s:18:\"lockout_white_list\";a:1:{i:0;s:13:\"50.186.22.233\";}s:19:\"email_notifications\";b:1;s:8:\"log_type\";i:0;s:12:\"log_rotation\";i:14;s:12:\"log_location\";s:71:\"/nas/wp/www/staging/activeclub/wp-content/uploads/ithemes-security/logs\";s:11:\"did_upgrade\";b:0;s:14:\"allow_tracking\";b:0;s:10:\"nginx_file\";s:41:\"/nas/wp/www/staging/activeclub/nginx.conf\";s:24:\"infinitewp_compatibility\";b:0;s:8:\"log_info\";s:30:\"active-club-solution-cUROt2m4B\";s:9:\"lock_file\";b:0;s:12:\"digest_email\";b:0;}','yes'),
(1348,'itsec_initials','a:3:{s:5:\"login\";b:0;s:5:\"admin\";b:0;s:11:\"file_editor\";b:0;}','yes'),
(1350,'itsec_ipcheck','a:1:{s:7:\"api_ban\";b:0;}','yes'),
(1351,'itsec_four_oh_four','a:5:{s:12:\"check_period\";i:5;s:15:\"error_threshold\";i:20;s:10:\"white_list\";a:9:{i:0;s:12:\"/favicon.ico\";i:1;s:11:\"/robots.txt\";i:2;s:21:\"/apple-touch-icon.png\";i:3;s:33:\"/apple-touch-icon-precomposed.png\";i:4;s:17:\"/wp-content/cache\";i:5;s:18:\"/browserconfig.xml\";i:6;s:16:\"/crossdomain.xml\";i:7;s:11:\"/labels.rdf\";i:8;s:27:\"/trafficbasedsspsitemap.xml\";}s:5:\"types\";a:5:{i:0;s:4:\".jpg\";i:1;s:5:\".jpeg\";i:2;s:4:\".png\";i:3;s:4:\".gif\";i:4;s:4:\".css\";}s:7:\"enabled\";b:0;}','yes'),
(1352,'itsec_away_mode','a:4:{s:4:\"type\";i:1;s:7:\"enabled\";b:0;s:5:\"start\";i:1411084800;s:3:\"end\";i:1411192800;}','yes'),
(1353,'itsec_ban_users','a:4:{s:7:\"default\";b:1;s:7:\"enabled\";b:1;s:9:\"host_list\";a:0:{}s:10:\"agent_list\";a:1:{i:0;s:0:\"\";}}','yes'),
(1355,'itsec_brute_force','a:5:{s:7:\"enabled\";b:1;s:17:\"max_attempts_host\";i:5;s:17:\"max_attempts_user\";i:10;s:12:\"check_period\";i:5;s:14:\"auto_ban_admin\";b:0;}','yes'),
(1356,'itsec_backup','a:9:{s:6:\"method\";i:1;s:8:\"location\";s:74:\"/nas/wp/www/staging/activeclub/wp-content/uploads/ithemes-security/backups\";s:6:\"retain\";i:0;s:3:\"zip\";b:1;s:7:\"exclude\";a:3:{i:0;s:14:\"itsec_lockouts\";i:1;s:9:\"itsec_log\";i:2;s:10:\"itsec_temp\";}s:8:\"interval\";i:3;s:7:\"enabled\";b:0;s:9:\"all_sites\";b:0;s:8:\"last_run\";i:0;}','yes'),
(1357,'itsec_file_change','a:9:{s:6:\"method\";b:1;s:9:\"file_list\";a:1:{i:0;s:0:\"\";}s:5:\"types\";a:6:{i:0;s:4:\".jpg\";i:1;s:5:\".jpeg\";i:2;s:4:\".png\";i:3;s:4:\".log\";i:4;s:3:\".mo\";i:5;s:3:\".po\";}s:5:\"email\";b:1;s:12:\"notify_admin\";b:1;s:7:\"enabled\";b:0;s:5:\"split\";b:0;s:10:\"last_chunk\";b:0;s:8:\"last_run\";i:1410966299;}','yes'),
(1358,'itsec_hide_backend','a:7:{s:7:\"enabled\";b:1;s:4:\"slug\";s:9:\"log-me-in\";s:12:\"theme_compat\";b:1;s:17:\"theme_compat_slug\";s:9:\"not_found\";s:16:\"post_logout_slug\";s:0:\"\";s:12:\"show-tooltip\";b:0;s:8:\"register\";s:15:\"wp-register.php\";}','yes'),
(1359,'itsec_malware','a:2:{s:7:\"api_key\";s:0:\"\";s:7:\"enabled\";b:0;}','yes'),
(1360,'itsec_ssl','a:3:{s:8:\"frontend\";i:0;s:5:\"login\";b:0;s:5:\"admin\";b:0;}','yes'),
(1362,'itsec_strong_passwords','a:2:{s:7:\"enabled\";b:1;s:4:\"roll\";s:13:\"administrator\";}','yes'),
(1363,'itsec_tweaks','a:22:{s:13:\"protect_files\";b:1;s:18:\"directory_browsing\";b:1;s:15:\"request_methods\";b:1;s:24:\"suspicious_query_strings\";b:1;s:22:\"non_english_characters\";b:1;s:16:\"long_url_strings\";b:1;s:17:\"write_permissions\";b:1;s:11:\"uploads_php\";b:1;s:13:\"generator_tag\";b:1;s:18:\"wlwmanifest_header\";b:1;s:14:\"disable_xmlrpc\";i:0;s:12:\"login_errors\";b:1;s:21:\"force_unique_nicename\";b:1;s:27:\"disable_unused_author_pages\";b:1;s:14:\"edituri_header\";b:0;s:13:\"theme_updates\";b:0;s:14:\"plugin_updates\";b:0;s:12:\"core_updates\";b:0;s:12:\"comment_spam\";b:0;s:14:\"random_version\";b:0;s:11:\"file_editor\";b:0;s:11:\"safe_jquery\";b:0;}','yes'),
(1389,'itsec_jquery_version','1.11.1','yes'),
(1894,'limit_login_lockouts','a:0:{}','yes'),
(1895,'limit_login_logged','a:167:{s:12:\"83.31.22.240\";a:1:{s:5:\"admin\";i:1;}s:13:\"79.168.189.88\";a:1:{s:5:\"admin\";i:1;}s:11:\"109.65.2.94\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"185.29.84.70\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:11:\"85.65.3.186\";a:2:{s:5:\"admin\";i:2;s:19:\"activeclubsolutions\";i:1;}s:12:\"82.14.27.216\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:10:\"94.96.15.5\";a:1:{s:5:\"admin\";i:1;}s:12:\"93.123.85.15\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:14:\"163.178.104.96\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"78.98.91.233\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"94.59.76.118\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:14:\"90.198.222.171\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:11:\"89.123.7.28\";a:1:{s:5:\"admin\";i:1;}s:13:\"87.18.242.185\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"86.149.3.104\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"177.206.3.187\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"90.213.101.89\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:11:\"77.59.248.2\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"71.164.231.54\";a:1:{s:5:\"admin\";i:1;}s:14:\"105.237.48.132\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"91.106.32.66\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:14:\"89.134.175.163\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:15:\"121.119.109.205\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"98.229.86.171\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:15:\"122.128.229.156\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"91.105.23.211\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"39.47.234.230\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"78.100.236.0\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:11:\"95.93.62.42\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"79.17.30.103\";a:1:{s:5:\"admin\";i:1;}s:12:\"2.90.121.116\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"78.162.249.80\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"69.27.80.130\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"83.31.17.134\";a:3:{s:5:\"admin\";i:1;s:4:\"test\";i:1;s:19:\"activeclubsolutions\";i:1;}s:15:\"200.109.205.246\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:14:\"82.232.219.192\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"70.115.228.90\";a:2:{s:5:\"admin\";i:1;s:4:\"test\";i:1;}s:13:\"79.177.122.81\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:14:\"79.107.179.139\";a:1:{s:5:\"admin\";i:1;}s:15:\"151.236.247.200\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"189.214.3.161\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"71.224.21.171\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"5.145.45.206\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:14:\"78.180.115.119\";a:1:{s:5:\"admin\";i:1;}s:14:\"89.152.232.240\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:14:\"143.176.102.36\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"90.175.68.32\";a:1:{s:5:\"admin\";i:1;}s:12:\"39.48.84.217\";a:1:{s:5:\"admin\";i:1;}s:11:\"24.62.79.12\";a:1:{s:5:\"admin\";i:1;}s:12:\"87.68.69.135\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"79.181.25.151\";a:1:{s:5:\"admin\";i:1;}s:14:\"61.214.204.157\";a:1:{s:4:\"test\";i:1;}s:13:\"145.2.231.152\";a:1:{s:5:\"admin\";i:1;}s:12:\"78.143.92.88\";a:2:{s:4:\"test\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"111.252.12.90\";a:1:{s:4:\"test\";i:1;}s:11:\"2.28.76.246\";a:2:{s:4:\"test\";i:1;s:19:\"activeclubsolutions\";i:1;}s:15:\"200.233.117.109\";a:1:{s:4:\"test\";i:1;}s:14:\"85.110.194.122\";a:2:{s:5:\"admin\";i:1;s:19:\"activeclubsolutions\";i:1;}s:12:\"88.219.94.53\";a:2:{s:4:\"test\";i:1;s:19:\"activeclubsolutions\";i:1;}s:14:\"79.180.122.176\";a:1:{s:4:\"test\";i:1;}s:12:\"79.179.21.99\";a:1:{s:4:\"test\";i:1;}s:12:\"178.61.6.156\";a:1:{s:4:\"test\";i:1;}s:12:\"83.8.251.202\";a:1:{s:4:\"test\";i:1;}s:13:\"89.134.74.108\";a:1:{s:4:\"test\";i:1;}s:11:\"79.180.0.58\";a:1:{s:4:\"test\";i:1;}s:15:\"175.193.125.107\";a:2:{s:4:\"test\";i:1;s:19:\"activeclubsolutions\";i:1;}s:13:\"77.31.112.147\";a:1:{s:4:\"test\";i:1;}s:13:\"188.78.171.92\";a:2:{s:4:\"test\";i:1;s:19:\"activeclubsolutions\";i:1;}s:11:\"37.48.87.44\";a:1:{s:4:\"test\";i:1;}s:14:\"176.42.212.249\";a:1:{s:4:\"test\";i:1;}s:13:\"14.153.133.27\";a:2:{s:4:\"test\";i:1;s:19:\"activeclubsolutions\";i:1;}s:15:\"117.194.205.143\";a:1:{s:4:\"test\";i:1;}s:13:\"144.76.180.27\";a:1:{s:4:\"test\";i:1;}s:15:\"176.106.203.177\";a:1:{s:4:\"test\";i:1;}s:10:\"5.54.97.87\";a:1:{s:4:\"test\";i:1;}s:14:\"79.101.199.195\";a:1:{s:4:\"test\";i:1;}s:12:\"2.139.251.20\";a:1:{s:4:\"test\";i:1;}s:15:\"120.173.139.159\";a:1:{s:4:\"test\";i:1;}s:13:\"111.94.48.245\";a:1:{s:4:\"test\";i:1;}s:14:\"178.173.140.74\";a:1:{s:4:\"test\";i:1;}s:14:\"125.167.213.99\";a:1:{s:4:\"test\";i:1;}s:14:\"65.124.232.124\";a:1:{s:4:\"test\";i:1;}s:12:\"46.17.158.57\";a:1:{s:4:\"test\";i:1;}s:14:\"188.173.50.202\";a:1:{s:4:\"test\";i:1;}s:14:\"84.108.100.122\";a:1:{s:4:\"test\";i:1;}s:14:\"222.124.215.51\";a:1:{s:4:\"test\";i:1;}s:14:\"176.78.185.175\";a:1:{s:4:\"test\";i:1;}s:12:\"92.16.17.177\";a:1:{s:4:\"test\";i:1;}s:13:\"91.181.154.85\";a:1:{s:4:\"test\";i:1;}s:14:\"177.42.224.233\";a:1:{s:4:\"test\";i:1;}s:14:\"93.139.206.104\";a:1:{s:4:\"test\";i:1;}s:13:\"89.146.152.30\";a:1:{s:4:\"test\";i:1;}s:12:\"83.89.66.194\";a:1:{s:4:\"test\";i:1;}s:11:\"93.42.45.29\";a:1:{s:4:\"test\";i:1;}s:13:\"67.167.30.187\";a:1:{s:4:\"test\";i:1;}s:14:\"79.180.112.114\";a:1:{s:4:\"test\";i:1;}s:15:\"149.200.220.190\";a:1:{s:4:\"test\";i:1;}s:11:\"115.135.9.5\";a:1:{s:4:\"test\";i:1;}s:15:\"187.115.110.234\";a:1:{s:4:\"test\";i:1;}s:12:\"39.48.236.84\";a:1:{s:4:\"test\";i:1;}s:14:\"94.122.179.143\";a:1:{s:4:\"test\";i:1;}s:12:\"78.1.131.238\";a:1:{s:4:\"test\";i:1;}s:13:\"115.66.83.237\";a:1:{s:4:\"test\";i:1;}s:14:\"93.173.171.241\";a:1:{s:4:\"test\";i:1;}s:14:\"90.165.168.118\";a:1:{s:4:\"test\";i:1;}s:15:\"203.215.120.173\";a:1:{s:4:\"test\";i:1;}s:13:\"197.200.88.62\";a:1:{s:4:\"test\";i:1;}s:12:\"93.46.219.70\";a:1:{s:4:\"test\";i:1;}s:13:\"79.169.96.112\";a:1:{s:4:\"test\";i:1;}s:12:\"78.58.232.36\";a:1:{s:4:\"test\";i:1;}s:14:\"77.125.131.230\";a:1:{s:4:\"test\";i:1;}s:13:\"77.228.43.135\";a:1:{s:4:\"test\";i:1;}s:15:\"190.195.117.184\";a:1:{s:4:\"test\";i:1;}s:14:\"120.139.129.29\";a:1:{s:4:\"test\";i:1;}s:11:\"78.62.62.45\";a:1:{s:4:\"test\";i:1;}s:14:\"186.14.219.230\";a:1:{s:4:\"test\";i:1;}s:13:\"89.66.216.196\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"112.205.172.28\";a:1:{s:4:\"test\";i:1;}s:15:\"208.126.107.131\";a:1:{s:4:\"test\";i:1;}s:13:\"62.80.225.192\";a:1:{s:4:\"test\";i:1;}s:12:\"90.148.30.96\";a:1:{s:4:\"test\";i:1;}s:13:\"86.144.219.45\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:13:\"171.96.179.95\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:11:\"78.88.25.40\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"179.236.13.175\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:11:\"81.134.20.2\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:13:\"216.185.63.23\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:12:\"83.89.24.138\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"188.253.229.18\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:13:\"175.110.67.62\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"146.255.145.92\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"62.254.165.178\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"88.249.225.207\";a:1:{s:4:\"test\";i:1;}s:15:\"181.165.176.145\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"216.184.127.90\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:13:\"201.43.230.30\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:13:\"212.25.60.197\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:15:\"189.235.138.154\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:12:\"41.250.87.13\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"142.68.149.213\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"84.109.126.247\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:15:\"222.154.182.230\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:13:\"2.179.131.101\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:12:\"85.84.136.96\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:13:\"112.198.77.33\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:15:\"105.184.235.114\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:15:\"124.104.165.128\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:13:\"41.109.137.13\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:12:\"92.56.176.61\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"89.201.224.171\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"105.111.238.36\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"76.118.118.123\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"175.137.27.193\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:13:\"89.146.133.66\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:12:\"84.94.64.229\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:13:\"81.183.69.159\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"46.197.207.179\";a:1:{s:19:\"activeclubsolutions\";i:1;}s:14:\"76.106.154.157\";a:1:{s:4:\"test\";i:1;}s:15:\"220.126.210.123\";a:1:{s:5:\"admin\";i:1;}s:13:\"188.77.89.246\";a:1:{s:4:\"test\";i:1;}s:14:\"104.194.11.125\";a:1:{s:5:\"admin\";i:1;}s:13:\"182.19.173.37\";a:1:{s:5:\"admin\";i:1;}s:13:\"79.177.57.148\";a:1:{s:5:\"admin\";i:1;}s:13:\"77.126.90.164\";a:1:{s:5:\"admin\";i:1;}s:14:\"77.127.222.129\";a:1:{s:5:\"admin\";i:1;}s:13:\"109.67.65.207\";a:1:{s:5:\"admin\";i:1;}s:13:\"75.66.205.154\";a:1:{s:10:\"activeclub\";i:1;}}','no'),
(1896,'limit_login_lockouts_total','215','no'),
(2111,'widget_gadash_frontend_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(2382,'wprss_settings_general','a:35:{s:20:\"limit_feed_items_age\";s:0:\"\";s:25:\"limit_feed_items_age_unit\";s:4:\"days\";s:25:\"limit_feed_items_imported\";s:1:\"0\";s:13:\"cron_interval\";s:6:\"hourly\";s:15:\"custom_feed_url\";s:5:\"wprss\";s:17:\"custom_feed_title\";s:148:\"Latest imported feed items on Active Club Solutions Wine Club Software Wine Club Management Software Winery Vineyard Online Shopping Cart Winery POS\";s:17:\"custom_feed_limit\";s:0:\"\";s:8:\"tracking\";s:1:\"0\";s:9:\"log_level\";s:7:\"default\";s:10:\"title_link\";i:1;s:11:\"title_limit\";s:0:\"\";s:10:\"video_link\";s:5:\"false\";s:10:\"pagination\";s:7:\"default\";s:10:\"feed_limit\";s:2:\"15\";s:7:\"open_dd\";s:5:\"blank\";s:9:\"follow_dd\";s:9:\"no_follow\";s:13:\"source_enable\";i:1;s:21:\"text_preceding_source\";s:7:\"Source:\";s:11:\"date_enable\";i:1;s:19:\"text_preceding_date\";s:12:\"Published on\";s:11:\"date_format\";s:5:\"Y-m-d\";s:14:\"styles_disable\";i:0;s:19:\"limit_feed_items_db\";i:200;s:11:\"source_link\";i:0;s:22:\"time_ago_format_enable\";i:0;s:14:\"authors_enable\";i:0;s:13:\"unique_titles\";i:0;s:16:\"certificate-path\";s:38:\"wp-includes/certificates/ca-bundle.crt\";s:24:\"expiration_notice_period\";s:7:\"2 weeks\";s:22:\"feed_request_useragent\";s:0:\"\";s:27:\"limit_feed_items_per_import\";N;s:23:\"feed_items_import_order\";s:6:\"latest\";s:10:\"custom_css\";s:0:\"\";s:12:\"html_classes\";s:0:\"\";s:18:\"feed_cache_enabled\";i:0;}','yes'),
(2387,'wprss_db_version','16','yes'),
(2391,'wprss_pwsv','4.6.2','yes'),
(2821,'gadwp_version','5.3.9','yes'),
(4365,'auto_core_update_notified','a:4:{s:4:\"type\";s:6:\"manual\";s:5:\"email\";s:30:\"helene@activeclubsolutions.net\";s:7:\"version\";s:5:\"4.0.1\";s:9:\"timestamp\";i:1416528377;}','yes'),
(4375,'akismet_spam_count','1525','yes'),
(20429,'SEOWizard_Options','a:29:{s:21:\"chk_keyword_to_titles\";s:1:\"1\";s:24:\"chk_nofollow_in_external\";s:1:\"1\";s:21:\"chk_nofollow_in_image\";s:1:\"1\";s:16:\"chk_use_facebook\";s:1:\"1\";s:15:\"chk_use_twitter\";s:1:\"0\";s:20:\"chk_use_richsnippets\";s:1:\"1\";s:25:\"chk_keyword_decorate_bold\";s:1:\"0\";s:27:\"chk_keyword_decorate_italic\";s:1:\"0\";s:30:\"chk_keyword_decorate_underline\";s:1:\"0\";s:30:\"opt_keyword_decorate_bold_type\";s:1:\"0\";s:32:\"opt_keyword_decorate_italic_type\";s:1:\"0\";s:35:\"opt_keyword_decorate_underline_type\";s:1:\"0\";s:24:\"opt_image_alternate_type\";s:5:\"empty\";s:20:\"opt_image_title_type\";s:5:\"empty\";s:19:\"txt_image_alternate\";s:0:\"\";s:15:\"txt_image_title\";s:0:\"\";s:16:\"lsi_bing_api_key\";s:0:\"\";s:19:\"chk_use_headings_h1\";s:1:\"0\";s:19:\"chk_use_headings_h2\";s:1:\"0\";s:19:\"chk_use_headings_h3\";s:1:\"0\";s:24:\"chk_tagging_using_google\";s:1:\"0\";s:16:\"txt_generic_tags\";s:0:\"\";s:18:\"chk_author_linking\";s:1:\"0\";s:14:\"wsw_initial_dt\";i:1421345839;s:20:\"chk_block_login_page\";s:1:\"0\";s:20:\"chk_block_admin_page\";s:1:\"0\";s:18:\"chk_use_meta_robot\";s:1:\"0\";s:19:\"chk_tweak_permalink\";s:1:\"1\";s:16:\"chk_make_sitemap\";s:1:\"0\";}','yes'),
(20725,'wpseo','a:21:{s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:4:\"12.4\";s:24:\"bf_banner_2019_dismissed\";b:0;s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:14:\"corporateOther\";s:20:\"has_multiple_authors\";b:1;s:16:\"environment_type\";s:10:\"production\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1519855932;s:13:\"myyoast-oauth\";b:0;}','yes'),
(20727,'wpseo_titles','a:158:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:1;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:0;s:23:\"is-media-purge-relevant\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:14:\"person_logo_id\";i:0;s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:74:\"https://activeclubsolutions.net/wp-content/uploads/2014/03/home-block1.jpg\";s:15:\"company_logo_id\";i:1427;s:12:\"company_name\";s:21:\"Active Club Solutions\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:20:\"title-qcpx_portfolio\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-qcpx_portfolio\";s:0:\"\";s:22:\"noindex-qcpx_portfolio\";b:0;s:23:\"showdate-qcpx_portfolio\";b:0;s:33:\"display-metabox-pt-qcpx_portfolio\";b:1;s:33:\"post_types-qcpx_portfolio-maintax\";i:0;s:30:\"title-ptarchive-qcpx_portfolio\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:33:\"metadesc-ptarchive-qcpx_portfolio\";s:0:\"\";s:32:\"bctitle-ptarchive-qcpx_portfolio\";s:0:\"\";s:32:\"noindex-ptarchive-qcpx_portfolio\";b:0;s:17:\"title-portfolio-x\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-portfolio-x\";s:0:\"\";s:19:\"noindex-portfolio-x\";b:0;s:20:\"showdate-portfolio-x\";b:0;s:30:\"display-metabox-pt-portfolio-x\";b:1;s:30:\"post_types-portfolio-x-maintax\";i:0;s:27:\"title-ptarchive-portfolio-x\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:30:\"metadesc-ptarchive-portfolio-x\";s:0:\"\";s:29:\"bctitle-ptarchive-portfolio-x\";s:0:\"\";s:29:\"noindex-ptarchive-portfolio-x\";b:0;s:16:\"title-wprss_feed\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-wprss_feed\";s:0:\"\";s:18:\"noindex-wprss_feed\";b:0;s:19:\"showdate-wprss_feed\";b:0;s:29:\"display-metabox-pt-wprss_feed\";b:1;s:29:\"post_types-wprss_feed-maintax\";i:0;s:19:\"title-ninzio-slider\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:22:\"metadesc-ninzio-slider\";s:0:\"\";s:21:\"noindex-ninzio-slider\";b:0;s:22:\"showdate-ninzio-slider\";b:0;s:32:\"display-metabox-pt-ninzio-slider\";b:1;s:32:\"post_types-ninzio-slider-maintax\";i:0;s:15:\"title-portfolio\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-portfolio\";s:0:\"\";s:17:\"noindex-portfolio\";b:0;s:18:\"showdate-portfolio\";b:0;s:28:\"display-metabox-pt-portfolio\";b:1;s:28:\"post_types-portfolio-maintax\";i:0;s:25:\"title-ptarchive-portfolio\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-ptarchive-portfolio\";s:0:\"\";s:27:\"bctitle-ptarchive-portfolio\";s:0:\"\";s:27:\"noindex-ptarchive-portfolio\";b:0;s:9:\"title-faq\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:12:\"metadesc-faq\";s:0:\"\";s:11:\"noindex-faq\";b:0;s:12:\"showdate-faq\";b:0;s:22:\"display-metabox-pt-faq\";b:1;s:22:\"post_types-faq-maintax\";i:0;s:19:\"title-ptarchive-faq\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:22:\"metadesc-ptarchive-faq\";s:0:\"\";s:21:\"bctitle-ptarchive-faq\";s:0:\"\";s:21:\"noindex-ptarchive-faq\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:24:\"title-tax-portfolio_type\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:27:\"metadesc-tax-portfolio_type\";s:0:\"\";s:34:\"display-metabox-tax-portfolio_type\";b:1;s:26:\"noindex-tax-portfolio_type\";b:0;s:32:\"taxonomy-portfolio_type-ptparent\";i:0;s:30:\"title-tax-portfolio_technology\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:33:\"metadesc-tax-portfolio_technology\";s:0:\"\";s:40:\"display-metabox-tax-portfolio_technology\";b:1;s:32:\"noindex-tax-portfolio_technology\";b:0;s:38:\"taxonomy-portfolio_technology-ptparent\";i:0;s:28:\"title-tax-portfolio-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-tax-portfolio-category\";s:0:\"\";s:38:\"display-metabox-tax-portfolio-category\";b:1;s:30:\"noindex-tax-portfolio-category\";b:0;s:36:\"taxonomy-portfolio-category-ptparent\";i:0;s:23:\"title-tax-portfolio-tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-tax-portfolio-tag\";s:0:\"\";s:33:\"display-metabox-tax-portfolio-tag\";b:1;s:25:\"noindex-tax-portfolio-tag\";b:0;s:31:\"taxonomy-portfolio-tag-ptparent\";i:0;s:22:\"title-tax-faq-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-tax-faq-category\";s:0:\"\";s:32:\"display-metabox-tax-faq-category\";b:1;s:24:\"noindex-tax-faq-category\";b:0;s:30:\"taxonomy-faq-category-ptparent\";i:0;s:17:\"title-tax-faq-tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-tax-faq-tag\";s:0:\"\";s:27:\"display-metabox-tax-faq-tag\";b:1;s:19:\"noindex-tax-faq-tag\";b:0;s:25:\"taxonomy-faq-tag-ptparent\";i:0;s:21:\"title-wprss_feed_item\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-wprss_feed_item\";s:0:\"\";s:23:\"noindex-wprss_feed_item\";b:0;s:24:\"showdate-wprss_feed_item\";b:0;s:34:\"display-metabox-pt-wprss_feed_item\";b:1;}','yes'),
(20728,'wpseo_social','a:19:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:0;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),
(31295,'widget_facebook','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(31296,'widget_photos_from_flickr','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(31297,'widget_recent_portfolio','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(31298,'widget_akismet_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(31299,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(31300,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(31302,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(39112,'gadwp_got_updated','1','yes'),
(42705,'finished_splitting_shared_terms','1','yes'),
(54080,'site_icon','0','yes'),
(54081,'medium_large_size_w','768','yes'),
(54082,'medium_large_size_h','0','yes'),
(57617,'widget_gadwp-frontwidget-report','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(66211,'wpengine_admin_bar_enabled','1','yes'),
(66212,'wpe-adminbar-roles','a:1:{i:0;s:13:\"administrator\";}','no'),
(66318,'txfx_plt_schema_version','3','yes'),
(68417,'widget_wpe_powered_by_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(71998,'advancediFrameAdminOptions','a:125:{s:11:\"securitykey\";s:40:\"ad3b3c3f4c907a46af08f8f6568b0a3ba8e180a2\";s:3:\"src\";s:24:\"//www.tinywebgallery.com\";s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:3:\"600\";s:9:\"scrolling\";s:4:\"none\";s:11:\"marginwidth\";s:1:\"0\";s:12:\"marginheight\";s:1:\"0\";s:11:\"frameborder\";s:1:\"0\";s:12:\"transparency\";s:4:\"true\";s:10:\"content_id\";s:0:\"\";s:14:\"content_styles\";s:0:\"\";s:13:\"hide_elements\";s:0:\"\";s:5:\"class\";s:0:\"\";s:20:\"shortcode_attributes\";s:4:\"true\";s:21:\"url_forward_parameter\";s:0:\"\";s:2:\"id\";s:15:\"advanced_iframe\";s:4:\"name\";s:0:\"\";s:6:\"onload\";s:0:\"\";s:13:\"onload_resize\";s:5:\"false\";s:17:\"onload_scroll_top\";s:5:\"false\";s:13:\"additional_js\";s:0:\"\";s:14:\"additional_css\";s:0:\"\";s:22:\"store_height_in_cookie\";s:0:\"\";s:17:\"additional_height\";s:1:\"0\";s:17:\"iframe_content_id\";s:0:\"\";s:21:\"iframe_content_styles\";s:0:\"\";s:20:\"iframe_hide_elements\";s:0:\"\";s:15:\"version_counter\";s:6:\"321017\";s:24:\"onload_show_element_only\";s:0:\"\";s:11:\"include_url\";s:0:\"\";s:15:\"include_content\";s:0:\"\";s:14:\"include_height\";s:0:\"\";s:12:\"include_fade\";s:0:\"\";s:30:\"include_hide_page_until_loaded\";s:5:\"false\";s:15:\"donation_bottom\";s:5:\"false\";s:19:\"onload_resize_width\";s:0:\"\";s:14:\"resize_on_ajax\";s:0:\"\";s:21:\"resize_on_ajax_jquery\";s:0:\"\";s:15:\"resize_on_click\";s:0:\"\";s:24:\"resize_on_click_elements\";s:1:\"a\";s:22:\"hide_page_until_loaded\";s:5:\"false\";s:19:\"show_part_of_iframe\";s:5:\"false\";s:21:\"show_part_of_iframe_x\";s:3:\"100\";s:21:\"show_part_of_iframe_y\";s:3:\"100\";s:25:\"show_part_of_iframe_width\";s:3:\"400\";s:26:\"show_part_of_iframe_height\";s:3:\"300\";s:30:\"show_part_of_iframe_new_window\";s:0:\"\";s:27:\"show_part_of_iframe_new_url\";s:0:\"\";s:39:\"show_part_of_iframe_next_viewports_hide\";s:5:\"false\";s:34:\"show_part_of_iframe_next_viewports\";s:0:\"\";s:39:\"show_part_of_iframe_next_viewports_loop\";s:5:\"false\";s:5:\"style\";s:0:\"\";s:29:\"use_shortcode_attributes_only\";s:5:\"false\";s:33:\"enable_external_height_workaround\";s:4:\"true\";s:20:\"keep_overflow_hidden\";s:5:\"false\";s:31:\"hide_page_until_loaded_external\";s:5:\"false\";s:19:\"onload_resize_delay\";s:0:\"\";s:11:\"expert_mode\";s:4:\"true\";s:44:\"show_part_of_iframe_allow_scrollbar_vertical\";s:0:\"\";s:46:\"show_part_of_iframe_allow_scrollbar_horizontal\";s:0:\"\";s:19:\"hide_part_of_iframe\";s:0:\"\";s:26:\"change_parent_links_target\";s:0:\"\";s:19:\"change_iframe_links\";s:0:\"\";s:26:\"change_iframe_links_target\";s:0:\"\";s:7:\"browser\";s:0:\"\";s:25:\"show_part_of_iframe_style\";s:0:\"\";s:20:\"map_parameter_to_url\";s:0:\"\";s:11:\"iframe_zoom\";s:0:\"\";s:14:\"accordeon_menu\";s:5:\"false\";s:18:\"show_iframe_loader\";s:5:\"false\";s:11:\"tab_visible\";s:0:\"\";s:10:\"tab_hidden\";s:0:\"\";s:24:\"enable_responsive_iframe\";s:5:\"false\";s:15:\"allowfullscreen\";s:5:\"false\";s:19:\"iframe_height_ratio\";s:0:\"\";s:16:\"enable_lazy_load\";s:5:\"false\";s:26:\"enable_lazy_load_threshold\";s:4:\"3000\";s:25:\"enable_lazy_load_fadetime\";s:1:\"0\";s:23:\"enable_lazy_load_manual\";s:5:\"false\";s:14:\"pass_id_by_url\";s:0:\"\";s:25:\"include_scripts_in_footer\";s:4:\"true\";s:18:\"write_css_directly\";s:5:\"false\";s:24:\"resize_on_element_resize\";s:0:\"\";s:30:\"resize_on_element_resize_delay\";s:3:\"250\";s:20:\"add_css_class_parent\";s:5:\"false\";s:9:\"auto_zoom\";s:5:\"false\";s:18:\"auto_zoom_by_ratio\";s:0:\"\";s:18:\"single_save_button\";s:4:\"true\";s:31:\"enable_lazy_load_manual_element\";s:0:\"\";s:21:\"alternative_shortcode\";s:0:\"\";s:14:\"show_menu_link\";s:4:\"true\";s:19:\"iframe_redirect_url\";s:0:\"\";s:12:\"install_date\";i:1474574389;s:40:\"show_part_of_iframe_last_viewport_remove\";s:5:\"false\";s:11:\"load_jquery\";s:4:\"true\";s:20:\"show_iframe_as_layer\";s:5:\"false\";s:23:\"add_iframe_url_as_param\";s:5:\"false\";s:30:\"add_iframe_url_as_param_prefix\";s:0:\"\";s:15:\"reload_interval\";s:0:\"\";s:18:\"iframe_content_css\";s:0:\"\";s:25:\"additional_js_file_iframe\";s:0:\"\";s:26:\"additional_css_file_iframe\";s:0:\"\";s:20:\"add_css_class_iframe\";s:5:\"false\";s:12:\"editorbutton\";s:11:\"securitykey\";s:15:\"iframe_zoom_ie8\";s:5:\"false\";s:30:\"enable_lazy_load_reserve_space\";s:0:\"\";s:31:\"hide_content_until_iframe_color\";s:0:\"\";s:21:\"use_zoom_absolute_fix\";s:5:\"false\";s:12:\"include_html\";s:0:\"\";s:26:\"enable_ios_mobile_scolling\";s:5:\"false\";s:7:\"sandbox\";s:0:\"\";s:32:\"show_iframe_as_layer_header_file\";s:0:\"\";s:34:\"show_iframe_as_layer_header_height\";s:3:\"100\";s:36:\"show_iframe_as_layer_header_position\";s:3:\"top\";s:17:\"resize_min_height\";s:1:\"1\";s:25:\"show_iframe_as_layer_full\";s:0:\"\";s:4:\"demo\";s:5:\"false\";s:24:\"show_part_of_iframe_zoom\";s:5:\"false\";s:32:\"external_height_workaround_delay\";s:1:\"0\";s:19:\"add_document_domain\";s:5:\"false\";s:15:\"document_domain\";s:23:\"activeclubsolutions.net\";s:20:\"multi_domain_enabled\";s:4:\"true\";s:15:\"check_shortcode\";s:4:\"true\";s:16:\"use_post_message\";s:4:\"true\";s:25:\"element_to_measure_offset\";s:1:\"0\";}','yes'),
(71999,'widget_advanced-iframe-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(72355,'do_activate','0','yes'),
(72368,'widget_blog_subscription','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(72369,'widget_facebook-likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(72370,'widget_wpcom-goodreads','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(72372,'widget_grofile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(72374,'widget_rss_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(72375,'widget_wpcom_social_media_icons_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(72376,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(72377,'widget_jetpack_display_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(72391,'jetpack_sync_settings_meta_blacklist','a:0:{}','yes'),
(72419,'jetpack_sync_full__constants_total','1','no'),
(72420,'jetpack_sync_full__constants_config','1','no'),
(72421,'jetpack_sync_full__functions_total','1','no'),
(72422,'jetpack_sync_full__functions_config','1','no'),
(72423,'jetpack_sync_full__options_total','1','no'),
(72424,'jetpack_sync_full__options_config','1','no'),
(72425,'jetpack_sync_full__terms_total','8','no'),
(72426,'jetpack_sync_full__terms_config','1','no'),
(72427,'jetpack_sync_full__themes_total','1','no'),
(72428,'jetpack_sync_full__themes_config','1','no'),
(72429,'jetpack_sync_full__users_total','1','no'),
(72430,'jetpack_sync_full__users_config','1','no'),
(72431,'jetpack_sync_full__posts_total','30','no'),
(72432,'jetpack_sync_full__posts_config','1','no'),
(72433,'jetpack_sync_full__updates_total','1','no'),
(72434,'jetpack_sync_full__updates_config','1','no'),
(72436,'jetpack_sync_full__constants_queued','1','no'),
(72438,'jetpack_sync_full__functions_queued','1','no'),
(72440,'jetpack_sync_full__options_queued','1','no'),
(72449,'jetpack_sync_full__terms_queued','8','no'),
(72451,'jetpack_sync_full__themes_queued','1','no'),
(72453,'jetpack_sync_full__users_queued','1','no'),
(72484,'jetpack_sync_full__posts_queued','30','no'),
(72486,'jetpack_sync_full__updates_queued','1','no'),
(72493,'jetpack_sync_full__sent_started','1474779417','no'),
(72500,'jetpack_next_sync_time','1485302648','yes'),
(72511,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),
(72512,'gravatar_disable_hovercards','disabled','yes'),
(72514,'stats_cache','a:2:{s:32:\"651729b57ba657cba09fccd7a5f7bd00\";a:1:{i:1633127518;a:8:{i:0;a:4:{s:7:\"post_id\";s:4:\"3897\";s:10:\"post_title\";s:24:\"Sales order summary line\";s:14:\"post_permalink\";s:92:\"https://activeclubsolutions.net/manager-online-ctiv8cloud%e2%80%8a-sales-order-summary-line/\";s:5:\"views\";s:2:\"12\";}i:1;a:4:{s:7:\"post_id\";s:3:\"848\";s:10:\"post_title\";s:41:\"Winery POS and Tasting Room POS Home Page\";s:14:\"post_permalink\";s:32:\"https://activeclubsolutions.net/\";s:5:\"views\";s:1:\"9\";}i:2;a:4:{s:7:\"post_id\";s:4:\"2670\";s:10:\"post_title\";s:33:\"Manage Your Activ8 Client Account\";s:14:\"post_permalink\";s:54:\"http://www.activeclubsolutions.com/manage-acs-account/\";s:5:\"views\";s:1:\"8\";}i:3;a:4:{s:7:\"post_id\";s:1:\"0\";s:10:\"post_title\";s:9:\"Home page\";s:14:\"post_permalink\";s:32:\"https://activeclubsolutions.net/\";s:5:\"views\";s:1:\"5\";}i:4;a:4:{s:7:\"post_id\";s:4:\"1590\";s:10:\"post_title\";s:38:\"Integration with Quickbooks Accounting\";s:14:\"post_permalink\";s:66:\"http://www.activeclubsolutions.com/winery-pos-features/accounting/\";s:5:\"views\";s:1:\"4\";}i:5;a:4:{s:7:\"post_id\";s:4:\"2860\";s:10:\"post_title\";s:14:\"VideoTutorials\";s:14:\"post_permalink\";s:47:\"https://activeclubsolutions.net/videotutorials/\";s:5:\"views\";s:1:\"4\";}i:6;a:4:{s:7:\"post_id\";s:4:\"1497\";s:10:\"post_title\";s:41:\"Phone, Tablet, Desktop Designed Ecommerce\";s:14:\"post_permalink\";s:69:\"https://activeclubsolutions.net/winery-pos-features/winery-ecommerce/\";s:5:\"views\";s:1:\"3\";}i:7;a:4:{s:7:\"post_id\";s:4:\"3937\";s:10:\"post_title\";s:26:\"Modifying display headings\";s:14:\"post_permalink\";s:59:\"https://activeclubsolutions.net/modifying-display-headings/\";s:5:\"views\";s:1:\"3\";}}}s:32:\"a4ad33574509da9916b7ba495701fd7b\";a:1:{i:1633127518;a:0:{}}}','yes'),
(72563,'safecss','','yes'),
(72581,'widget_widget_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(72582,'widget_top-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(72630,'post_by_email_address2','NULL','yes'),
(72631,'monitor_receive_notifications','1','yes'),
(74232,'post_by_email_address6','NULL','yes'),
(170384,'regex_html_post_process','a:1:{s:100:\"<link rel=\"icon\" type=\"image/ico\" href=\"https://secureclub.net/images/activeclubmgmt/favicon.ico\" />\";s:0:\"\";}','no'),
(175401,'wpseo_onpage','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1485389626;}','yes'),
(176461,'wpseo-gsc-refresh_token','1/2ipKi3AIksCcVQuz8657g6DAr_-cKtWkuSxA5Ur7HvY','yes'),
(176462,'wpseo-gsc-access_token','a:5:{s:13:\"refresh_token\";s:45:\"1/2ipKi3AIksCcVQuz8657g6DAr_-cKtWkuSxA5Ur7HvY\";s:12:\"access_token\";s:132:\"ya29.Gl3NBORDLGKwIJcUj1-OyyBMKO5Nz--t1zxsf8q3DhdFHdeSwY60VUBPfVh9Zjt8V97_BZsM4QuZ1o56eFbmRIyhFXtV7kLV4mvOIRDE6RRRHtNjOPChLyEHSn51YiQ\";s:7:\"expires\";d:1505996577;s:10:\"expires_in\";i:3600;s:7:\"created\";i:1506018177;}','yes'),
(176465,'wpseo-gsc','a:1:{s:7:\"profile\";s:31:\"https://activeclubsolutions.net\";}','yes'),
(176468,'wpseo_gsc_issues_counts','a:0:{}','yes'),
(176469,'wpseo_gsc_last_fetch','1485475458','no'),
(176673,'widget_authors','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(176674,'widget_google_translate_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(176675,'widget_milestone_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(176676,'widget_jetpack_my_community','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(176677,'widget_upcoming_events_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(176703,'jpsq_sync_checkout','0:0','no'),
(189831,'widget_blog-stats','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(207481,'wpcom_publish_posts_with_markdown','1','yes'),
(207511,'wprss_first_activation_time','1415743719','yes'),
(208586,'wpe_settings','','yes'),
(243300,'widget_eu_cookie_law_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(243301,'widget_flickr','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(243302,'widget_internet_defense_league_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(243303,'widget_widget_mailchimp_subscriber_popup','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(251113,'fresh_site','0','off'),
(282141,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(282142,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(282143,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(305101,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(319986,'jpsq_full_sync_checkout','0:0','no'),
(320185,'n2_ss3_version','3.3.11r2910','yes'),
(320188,'widget_smartslider3','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(342797,'hs_settings','a:3:{s:9:\"hs_portal\";s:7:\"3351922\";s:12:\"hs_installed\";s:1:\"0\";s:10:\"hs_version\";s:5:\"1.2.1\";}','yes'),
(380114,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(414323,'pixel_your_site','a:6:{s:7:\"general\";a:15:{s:8:\"pixel_id\";s:0:\"\";s:7:\"enabled\";i:0;s:18:\"add_traffic_source\";i:1;s:23:\"enable_advance_matching\";i:1;s:9:\"in_footer\";i:0;s:21:\"general_event_enabled\";i:1;s:18:\"general_event_name\";s:12:\"GeneralEvent\";s:30:\"general_event_on_posts_enabled\";i:1;s:30:\"general_event_on_pages_enabled\";i:1;s:28:\"general_event_on_tax_enabled\";i:1;s:28:\"general_event_on_woo_enabled\";i:0;s:28:\"general_event_on_edd_enabled\";i:0;s:22:\"general_event_add_tags\";i:0;s:18:\"timeonpage_enabled\";i:1;s:20:\"search_event_enabled\";i:1;}s:3:\"std\";a:1:{s:7:\"enabled\";i:0;}s:3:\"dyn\";a:3:{s:7:\"enabled\";i:0;s:18:\"enabled_on_content\";i:0;s:17:\"enabled_on_widget\";i:0;}s:3:\"woo\";a:47:{s:7:\"enabled\";i:0;s:10:\"content_id\";s:2:\"id\";s:12:\"variation_id\";s:9:\"variation\";s:24:\"enable_additional_params\";i:1;s:11:\"enable_tags\";i:1;s:3:\"tax\";s:4:\"incl\";s:15:\"on_view_content\";i:1;s:25:\"enable_view_content_value\";i:1;s:25:\"view_content_value_option\";s:5:\"price\";s:26:\"view_content_percent_value\";s:0:\"\";s:25:\"view_content_global_value\";s:0:\"\";s:16:\"on_view_category\";i:1;s:18:\"on_add_to_cart_btn\";i:1;s:19:\"on_add_to_cart_page\";i:0;s:23:\"on_add_to_cart_checkout\";i:0;s:24:\"enable_add_to_cart_value\";i:1;s:24:\"add_to_cart_value_option\";s:5:\"price\";s:25:\"add_to_cart_percent_value\";s:0:\"\";s:24:\"add_to_cart_global_value\";s:0:\"\";s:16:\"on_checkout_page\";i:1;s:21:\"enable_checkout_value\";i:1;s:21:\"checkout_value_option\";s:5:\"price\";s:22:\"checkout_percent_value\";s:0:\"\";s:21:\"checkout_global_value\";s:0:\"\";s:17:\"on_thank_you_page\";i:1;s:21:\"enable_purchase_value\";i:1;s:18:\"purchase_fire_once\";i:1;s:18:\"purchase_transport\";s:8:\"included\";s:21:\"purchase_value_option\";s:5:\"total\";s:22:\"purchase_percent_value\";s:0:\"\";s:21:\"purchase_global_value\";s:0:\"\";s:20:\"purchase_add_address\";i:1;s:27:\"purchase_add_payment_method\";i:1;s:28:\"purchase_add_shipping_method\";i:1;s:20:\"purchase_add_coupons\";i:1;s:16:\"enable_aff_event\";i:0;s:9:\"aff_event\";s:10:\"predefined\";s:20:\"aff_predefined_value\";s:4:\"Lead\";s:16:\"aff_custom_value\";s:0:\"\";s:16:\"aff_value_option\";s:4:\"none\";s:16:\"aff_global_value\";s:0:\"\";s:19:\"enable_paypal_event\";i:0;s:8:\"pp_event\";s:10:\"predefined\";s:19:\"pp_predefined_value\";s:15:\"InitiatePayment\";s:15:\"pp_custom_value\";s:0:\"\";s:15:\"pp_value_option\";s:4:\"none\";s:15:\"pp_global_value\";s:0:\"\";}s:3:\"edd\";a:32:{s:7:\"enabled\";i:0;s:10:\"content_id\";s:2:\"id\";s:24:\"enable_additional_params\";i:1;s:11:\"enable_tags\";i:1;s:3:\"tax\";s:4:\"incl\";s:15:\"on_view_content\";i:1;s:21:\"on_view_content_delay\";N;s:25:\"enable_view_content_value\";i:1;s:25:\"view_content_value_option\";s:5:\"price\";s:26:\"view_content_percent_value\";N;s:25:\"view_content_global_value\";N;s:16:\"on_view_category\";i:1;s:18:\"on_add_to_cart_btn\";i:1;s:23:\"on_add_to_cart_checkout\";i:0;s:24:\"enable_add_to_cart_value\";i:1;s:24:\"add_to_cart_value_option\";s:5:\"price\";s:25:\"add_to_cart_percent_value\";N;s:24:\"add_to_cart_global_value\";N;s:16:\"on_checkout_page\";i:1;s:21:\"enable_checkout_value\";i:1;s:21:\"checkout_value_option\";s:5:\"price\";s:22:\"checkout_percent_value\";N;s:21:\"checkout_global_value\";N;s:15:\"on_success_page\";i:1;s:21:\"enable_purchase_value\";i:1;s:18:\"purchase_fire_once\";i:1;s:21:\"purchase_value_option\";s:5:\"total\";s:22:\"purchase_percent_value\";N;s:21:\"purchase_global_value\";N;s:20:\"purchase_add_address\";b:1;s:27:\"purchase_add_payment_method\";b:1;s:20:\"purchase_add_coupons\";b:1;}s:4:\"gdpr\";a:1:{s:21:\"enable_before_consent\";b:1;}}','yes'),
(414328,'pys_free_activation_time','1519698150','yes'),
(414329,'pys_free_notices_version','5.0.0','yes'),
(414330,'pys_free_dismissed_options','a:0:{}','yes'),
(423485,'jetpack_plugin_api_action_links','a:1:{s:37:\"tinymce-advanced/tinymce-advanced.php\";a:1:{s:8:\"Settings\";s:82:\"https://activeclubsolutions.net/wp-admin/options-general.php?page=tinymce-advanced\";}}','yes'),
(423515,'gadwp_options','{\"ga_dash_pgd\":0,\"ga_dash_rd\":0,\"ga_dash_sd\":0,\"ga_dash_map\":0,\"ga_dash_traffic\":0,\"ga_event_tracking\":0,\"ga_event_downloads\":\"zip|mp3*|mpe*g|pdf|docx*|pptx*|xlsx*|jpe*g|png|gif|tiff|rar*\",\"ga_target_geomap\":\"\",\"ga_target_number\":10,\"ga_realtime_pages\":10,\"ga_enhanced_links\":1,\"ga_speed_samplerate\":1,\"ga_event_bouncerate\":\"1\",\"ga_crossdomain_tracking\":1,\"ga_crossdomain_list\":\"\",\"ga_author_dimindex\":0,\"ga_category_dimindex\":0,\"ga_user_dimindex\":0,\"ga_pubyear_dimindex\":0,\"ga_aff_tracking\":0,\"ga_event_affiliates\":\"\\/out\\/\",\"ga_hash_tracking\":0,\"automatic_updates_minorversion\":\"1\",\"dashboard_widget\":1,\"switch_profile\":0,\"backend_item_reports\":1,\"frontend_item_reports\":0,\"api_backoff\":0,\"ga_cookiedomain\":\"\",\"ga_cookiename\":\"\",\"ga_cookieexpires\":\"\",\"ga_tag_dimindex\":0,\"ga_pubyearmonth_dimindex\":0,\"pagetitle_404\":\"Page Not Found\",\"maps_api_key\":\"\",\"ga_enhanced_excludesa\":0,\"tm_author_var\":0,\"tm_category_var\":0,\"tm_tag_var\":0,\"tm_user_var\":0,\"tm_pubyear_var\":0,\"tm_pubyearmonth_var\":0,\"amp_tracking_analytics\":0,\"optimize_tracking\":0,\"optimize_pagehiding\":0,\"amp_tracking_tagmanager\":0,\"trackingcode_infooter\":0,\"trackingevents_infooter\":0,\"ga_formsubmit_tracking\":0,\"ga_pagescrolldepth_tracking\":0,\"tm_pagescrolldepth_tracking\":0,\"web_containerid\":\"\",\"amp_containerid\":\"\",\"optimize_containerid\":\"\",\"ecommerce_mode\":\"disabled\",\"ga_event_precision\":1,\"ga_user_samplerate\":100,\"token\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"access_front\":[\"administrator\"],\"access_back\":[\"administrator\"],\"tableid_jail\":\"64890315\",\"tracking_type\":\"universal\",\"user_api\":0,\"network_mode\":0,\"ga_anonymize_ip\":\"1\",\"ga_profiles_list\":[[\"ActiveClubSolutions\",\"64890315\",\"UA-35433848-1\",\"http:\\/\\/activeclubsolutions.net\",-28800,\"America\\/Los_Angeles\",null]],\"ga_remarketing\":\"1\",\"superadmin_tracking\":0,\"track_exclude\":[],\"theme_color\":\"#3366CC\",\"with_endpoint\":2,\"amp_tracking_clientidapi\":0,\"ga_force_ssl\":0,\"backend_realtime_report\":0,\"ga_optout\":0,\"ga_dnt_optout\":0,\"ga_with_gtag\":0,\"tm_optout\":0,\"tm_dnt_optout\":0,\"usage_tracking\":0,\"hide_am_notices\":0,\"network_hide_am_notices\":0}','yes'),
(423527,'wpseo_license_server_version','2','yes'),
(457794,'post_by_email_address10','NULL','yes'),
(466197,'widget_jetpack_widget_social_icons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(466218,'_amn_exact-metrics_last_checked','1573257600','yes'),
(480341,'akismet_comment_form_privacy_notice','hide','yes'),
(480375,'post_by_email_address14','NULL','yes'),
(484658,'widget_cvm-latest-videos-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(484659,'widget_cvm-video-categories-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(484664,'cvm_plugin_review_callout','a:1:{s:9:\"timestamp\";i:1530167815;}','yes'),
(499116,'wpephpcompat.test_version','7.0','no'),
(499117,'wpephpcompat.only_active','yes','no'),
(499135,'wpephpcompat.scan_results','Name: Active Club Solutions\n\nFILE: /home/activ8commerce/public_html/activeclubsolutions.net/wp-content/themes/active-club/optionpanel/inc/browser.php\n----------------------------------------------------------------------------------------------\nFOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE\n----------------------------------------------------------------------------------------------\n 191 | WARNING | Use of deprecated PHP4 style class constructor is not supported since PHP 7.\n----------------------------------------------------------------------------------------------\n\n\nFILE: /home/activ8commerce/public_html/activeclubsolutions.net/wp-content/themes/active-club/optionpanel/inc/tracking.php\n------------------------------------------------------------------------------------------------------------\nFOUND 1 ERROR AFFECTING 1 LINE\n------------------------------------------------------------------------------------------------------------\n 361 | ERROR | Extension \'mysql_\' is deprecated since PHP 5.5 and removed since PHP 7.0; Use mysqli instead\n------------------------------------------------------------------------------------------------------------\n\n\nFILE: /home/activ8commerce/public_html/activeclubsolutions.net/wp-content/themes/active-club/optionpanel/inc/sysinfo.php\n-------------------------------------------------------------------------------------------------\nFOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE\n-------------------------------------------------------------------------------------------------\n 223 | WARNING | INI directive \'safe_mode\' is deprecated since PHP 5.3 and removed since PHP 5.4\n-------------------------------------------------------------------------------------------------\n\n\nFILE: /home/activ8commerce/public_html/activeclubsolutions.net/wp-content/themes/active-club/functions.php\n------------------------------------------------------------------------------\nFOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE\n------------------------------------------------------------------------------\n 1 | WARNING | File has mixed line endings; this may cause incorrect results\n------------------------------------------------------------------------------\n\nName: Akismet Anti-Spam\n\nPHP 7.0 compatible.\nUpdate Available: 4.0.8; Current Version: 4.0.6;\n\nName: Better RSS Feeds\n\nPHP 7.0 compatible.\n\nName: Contact Form 7\n\nPHP 7.0 compatible.\n\nName: EZP Maintenance Mode\n\nPHP 7.0 compatible.\n\nName: Google Analytics Dashboard for WP (GADWP)\n\nPHP 7.0 compatible.\nUpdate Available: 5.3.5; Current Version: 5.3.3;\n\nName: Jetpack by WordPress.com\n\nPHP 7.0 compatible.\nUpdate Available: 6.3.2; Current Version: 6.1.1;\n\nName: Page Links To\n\nPHP 7.0 compatible.\nUpdate Available: 2.11.1; Current Version: 2.9.10;\n\nName: PixelYourSite\n\nPHP 7.0 compatible.\n\nName: Really Simple CAPTCHA\n\nPHP 7.0 compatible.\n\nName: Remove Protected In Title\n\nPHP 7.0 compatible.\n\nName: Smart Slider 3 Pro\n\nThe plugin/theme was skipped as it was too large to scan before the server killed the process.\n\nName: WordPress Importer\n\nPHP 7.0 compatible.\n\nName: WP Editor\n\nPHP 7.0 compatible.\n\nName: WP RSS Aggregator\n\nFILE: /home/activ8commerce/public_html/activeclubsolutions.net/wp-content/plugins/wp-rss-aggregator/includes/opml-importer.php\n---------------------------------------------------------------------------------------------------------------------------------------------------------------\nFOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE\n---------------------------------------------------------------------------------------------------------------------------------------------------------------\n 48 | WARNING | Method name \"WPRSS_OPML_Importer::__contruct\" is discouraged; PHP has reserved all method names with a double underscore prefix for future use\n---------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nFILE: /home/activ8commerce/public_html/activeclubsolutions.net/wp-content/plugins/wp-rss-aggregator/includes/libraries/php-markdown/markdown.php\n--------------------------------------------------------------------------------------------------------------------\nFOUND 0 ERRORS AND 2 WARNINGS AFFECTING 2 LINES\n--------------------------------------------------------------------------------------------------------------------\n  242 | WARNING | Use of deprecated PHP4 style class constructor is not supported since PHP 7.\n 1694 | WARNING | Use of deprecated PHP4 style class constructor is not supported since PHP 7.\n--------------------------------------------------------------------------------------------------------------------\n\n\nFILE: /home/activ8commerce/public_html/activeclubsolutions.net/wp-content/plugins/wp-rss-aggregator/includes/libraries/browser.php\n------------------------------------------------------------------------------------------------------\nFOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE\n------------------------------------------------------------------------------------------------------\n 225 | WARNING | Use of deprecated PHP4 style class constructor is not supported since PHP 7.\n------------------------------------------------------------------------------------------------------\n\n\nFILE: /home/activ8commerce/public_html/activeclubsolutions.net/wp-content/plugins/wp-rss-aggregator/includes/system-info.php\n--------------------------------------------------------------------------------------------------------------\nFOUND 2 ERRORS AND 1 WARNING AFFECTING 3 LINES\n--------------------------------------------------------------------------------------------------------------\n  81 | WARNING | INI directive \'safe_mode\' is deprecated since PHP 5.3 and removed since PHP 5.4\n 244 | ERROR   | Extension \'mysql_\' is deprecated since PHP 5.5 and removed since PHP 7.0; Use mysqli instead\n 246 | ERROR   | Extension \'mysql_\' is deprecated since PHP 5.5 and removed since PHP 7.0; Use mysqli instead\n--------------------------------------------------------------------------------------------------------------\n\n\nFILE: /home/activ8commerce/public_html/activeclubsolutions.net/wp-content/plugins/wp-rss-aggregator/includes/Aventura/Wprss/Core/DataObject.php\n------------------------------------------------------------------------------------------------------------------------------------------------------\nFOUND 0 ERRORS AND 3 WARNINGS AFFECTING 3 LINES\n------------------------------------------------------------------------------------------------------------------------------------------------------\n 387 | WARNING | Method name \"DataObject::__toArray\" is discouraged; PHP has reserved all method names with a double underscore prefix for future use\n 443 | WARNING | Method name \"DataObject::__toXml\" is discouraged; PHP has reserved all method names with a double underscore prefix for future use\n 488 | WARNING | Method name \"DataObject::__toJson\" is discouraged; PHP has reserved all method names with a double underscore prefix for future use\n------------------------------------------------------------------------------------------------------------------------------------------------------\n\n\nFILE: /home/activ8commerce/public_html/activeclubsolutions.net/wp-content/plugins/wp-rss-aggregator/includes/feed-access.php\n-------------------------------------------------------------------------------------------------\nFOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE\n-------------------------------------------------------------------------------------------------\n 411 | WARNING | INI directive \'safe_mode\' is deprecated since PHP 5.3 and removed since PHP 5.4\n-------------------------------------------------------------------------------------------------\n\nName: Yoast SEO\n\nThe plugin/theme was skipped as it was too large to scan before the server killed the process.\n\n','no'),
(520171,'post_by_email_address16','NULL','yes'),
(522809,'widget_qcldlatestportfolio_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(522810,'option_tree_settings','a:2:{s:8:\"sections\";a:1:{i:0;a:2:{s:2:\"id\";s:7:\"general\";s:5:\"title\";s:7:\"General\";}}s:8:\"settings\";a:1:{i:0;a:10:{s:2:\"id\";s:11:\"sample_text\";s:5:\"label\";s:23:\"Sample Text Field Label\";s:4:\"desc\";s:38:\"Description for the sample text field.\";s:7:\"section\";s:7:\"general\";s:4:\"type\";s:4:\"text\";s:3:\"std\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:7:\"choices\";a:0:{}}}}','yes'),
(522812,'qcpx_plugin_options','a:110:{s:18:\"qc_single_open_opt\";s:12:\"popup-window\";s:23:\"qcpx_details_page_width\";s:10:\"single_box\";s:27:\"qcpx_details_page_width_val\";s:4:\"1170\";s:19:\"qcld_template_links\";s:2:\"on\";s:20:\"qcpx_list_page_width\";s:9:\"list_full\";s:24:\"qcpx_list_page_width_val\";s:4:\"1170\";s:18:\"qcld_post_per_page\";s:2:\"20\";s:20:\"qcpx_target_web_link\";s:13:\"Visit Website\";s:15:\"qcld_link_title\";s:3:\"off\";s:19:\"qcpx_top_btn_bg_clr\";s:7:\"#587285\";s:23:\"qcpx_top_btn_bg_clr_hvr\";s:7:\"#ffffff\";s:23:\"qcpx_top_btn_shadow_clr\";s:7:\"#2f4351\";s:20:\"qcpx_top_btn_txt_clr\";s:7:\"#ffffff\";s:24:\"qcpx_top_btn_txt_clr_hvr\";s:7:\"#1896f2\";s:24:\"qcpx_top_btn_bdr_clr_hvr\";s:7:\"#1896f2\";s:20:\"qcpo_hvrbtn_bg_color\";s:7:\"#ffffff\";s:22:\"qcpo_hvrbtn_text_color\";s:7:\"#000000\";s:27:\"qcpo_hvrbtn_separator_color\";s:7:\"#e1e1e1\";s:24:\"qcpx_use_pre_google_font\";s:6:\"Roboto\";s:27:\"qcpx_use_custom_google_font\";s:0:\"\";s:19:\"qcpx_use_theme_font\";s:3:\"off\";s:25:\"qcpo_single_title_font_si\";s:2:\"20\";s:23:\"qcpo_single_des_font_si\";s:2:\"16\";s:18:\"qcpo_tpl1_lazyload\";s:2:\"on\";s:23:\"qcpo_tpl1_serial_number\";s:3:\"off\";s:22:\"qcpo_tpl1_color_scheme\";s:1:\"1\";s:27:\"qcpo_tpl1_img_shading_color\";s:7:\"#5b5b5b\";s:32:\"qcpo_tpl1_qcld_img_border_radius\";s:2:\"10\";s:21:\"qcpo_tpl1_num_font_si\";s:3:\"310\";s:23:\"qcpo_tpl1_title_font_si\";s:2:\"32\";s:21:\"qcpo_tpl1_des_font_si\";s:2:\"14\";s:18:\"qcpo_tpl2_lazyload\";s:3:\"off\";s:28:\"qcpo_tpl2_container_bg_color\";s:7:\"#F5F5F5\";s:25:\"qcpo_tpl2_title_txt_color\";s:7:\"#2a2a2a\";s:28:\"qcpo_tpl2_item_border_radius\";s:1:\"0\";s:24:\"qcpo_tpl2_item_margin_tp\";s:1:\"0\";s:24:\"qcpo_tpl2_item_margin_rt\";s:1:\"8\";s:24:\"qcpo_tpl2_item_margin_bt\";s:1:\"8\";s:24:\"qcpo_tpl2_item_margin_lt\";s:1:\"0\";s:23:\"qcpo_tpl2_title_font_si\";s:2:\"20\";s:18:\"qcpo_tpl3_lazyload\";s:3:\"off\";s:21:\"qcpo_tpl3_title_color\";s:7:\"#403433\";s:20:\"qcpo_tpl3_title_size\";s:2:\"20\";s:18:\"qcpo_tpl4_lazyload\";s:3:\"off\";s:21:\"qcpo_tpl4_title_color\";s:7:\"#0f3647\";s:27:\"qcpo_tpl4_title_color_hover\";s:7:\"#ffffff\";s:24:\"qcpo_tpl4_title_bg_color\";s:7:\"#ededed\";s:30:\"qcpo_tpl4_title_bg_color_hover\";s:7:\"#232325\";s:26:\"qcpo_tpl4_popup_txt1_color\";s:4:\"#000\";s:26:\"qcpo_tpl4_popup_txt2_color\";s:7:\"#03a65a\";s:23:\"qcpo_tpl4_title_font_si\";s:2:\"15\";s:21:\"qcpo_tpl4_des_font_si\";s:2:\"14\";s:22:\"qcpo_tpl4_date_font_si\";s:2:\"20\";s:18:\"qcpo_tpl5_lazyload\";s:3:\"off\";s:21:\"qcpo_tpl5_title_color\";s:7:\"#0f3647\";s:20:\"qcpo_tpl5_text_color\";s:7:\"#ffffff\";s:23:\"qcpo_tpl5_title_font_si\";s:2:\"24\";s:21:\"qcpo_tpl6_title_color\";s:7:\"#ffffff\";s:27:\"qcpo_tpl6_title_color_hover\";s:7:\"#ffffff\";s:22:\"qcpo_tpl6_border_color\";s:7:\"#2e3444\";s:22:\"qcpo_tpl6_border_width\";s:2:\"14\";s:23:\"qcpo_tpl6_title_font_si\";s:2:\"16\";s:25:\"qcpo_tpl7_title_color_big\";s:7:\"#000000\";s:21:\"qcpo_tpl7_title_color\";s:7:\"#000000\";s:27:\"qcpo_tpl7_description_color\";s:7:\"#000000\";s:27:\"qcpo_tpl7_title_font_si_big\";s:2:\"60\";s:23:\"qcpo_tpl7_title_font_si\";s:2:\"16\";s:21:\"qcpo_tpl7_des_font_si\";s:2:\"14\";s:18:\"qcpo_tpl8_lazyload\";s:3:\"off\";s:18:\"qcpo_tpl8_bg_color\";s:7:\"#F5F5F5\";s:22:\"qcpo_tpl8_txt_bg_color\";s:7:\"#3FA6C9\";s:21:\"qcpo_tpl8_title_color\";s:7:\"#ffffff\";s:23:\"qcpo_tpl8_subtext_color\";s:7:\"#ffffff\";s:23:\"qcpo_tpl8_divider_color\";s:7:\"#1a84ab\";s:23:\"qcpo_tpl8_title_font_si\";s:2:\"28\";s:22:\"qcpo_tpl8_date_font_si\";s:2:\"12\";s:18:\"qcpo_tpl9_lazyload\";s:3:\"off\";s:19:\"qcpo_tpl9_bar_color\";s:7:\"#51c336\";s:23:\"qcpo_tpl9_title_font_si\";s:2:\"25\";s:22:\"qcpo_tpl9_desc_font_si\";s:2:\"14\";s:19:\"qcpo_tpl10_lazyload\";s:3:\"off\";s:20:\"qcpo_tpl10_bar_color\";s:7:\"#51c336\";s:22:\"qcpo_tpl10_label_color\";s:4:\"#888\";s:20:\"qcpo_tpl10_tag_color\";s:7:\"#00aeef\";s:24:\"qcpo_tpl10_title_font_si\";s:2:\"25\";s:23:\"qcpo_tpl10_desc_font_si\";s:2:\"14\";s:19:\"qcpo_tpl11_lazyload\";s:3:\"off\";s:26:\"qcpo_tpl11_title_color_big\";s:7:\"#000000\";s:28:\"qcpo_tpl11_title_font_si_big\";s:2:\"60\";s:22:\"qcpo_tpl12_title_color\";s:7:\"#ffffff\";s:21:\"qcpo_tpl12_text_color\";s:7:\"#ffffff\";s:19:\"qcpo_tpl12_bg_color\";s:7:\"#E53935\";s:23:\"qcpo_tpl12_shadow_color\";s:0:\"\";s:19:\"qcpo_tpl13_lazyload\";s:3:\"off\";s:23:\"qcpo_tpl13_circle_color\";s:7:\"#dddddd\";s:23:\"qcpo_tpl13_circle_width\";s:1:\"5\";s:20:\"qcpo_tpl13_variation\";s:8:\"four-col\";s:19:\"qcpo_tpl14_lazyload\";s:3:\"off\";s:22:\"qcpo_tpl14_anim_color1\";s:7:\"#ef4dbc\";s:22:\"qcpo_tpl14_anim_color2\";s:7:\"#bc4bfd\";s:22:\"qcpo_tpl14_anim_color3\";s:7:\"#5c9cfe\";s:22:\"qcpo_tpl14_anim_color4\";s:7:\"#24cffb\";s:21:\"qcpo_tpl15_title_size\";s:2:\"16\";s:24:\"qcpo_tpl15_category_size\";s:2:\"14\";s:22:\"qcpo_tpl15_title_color\";s:7:\"#ffffff\";s:25:\"qcpo_tpl15_category_color\";s:7:\"#ffffff\";s:19:\"qcpo_tpl16_lazyload\";s:3:\"off\";s:23:\"qcpo_tpl16_circle_color\";s:7:\"#dddddd\";s:23:\"qcpo_tpl16_circle_width\";s:1:\"5\";s:20:\"qcld_port_custom_css\";s:0:\"\";}','yes'),
(522813,'option_tree','a:1:{s:11:\"sample_text\";s:0:\"\";}','yes'),
(522816,'ot_media_post_ID','3300','yes'),
(524223,'portfolio_type_children','a:0:{}','yes'),
(528667,'wpeac_config','a:24:{s:20:\"sanitized_post_types\";a:8:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:14:\"qcpx_portfolio\";s:14:\"qcpx_portfolio\";s:11:\"portfolio-x\";s:11:\"portfolio-x\";s:10:\"wprss_feed\";s:10:\"wprss_feed\";s:13:\"ninzio-slider\";s:13:\"ninzio-slider\";s:9:\"portfolio\";s:9:\"portfolio\";s:3:\"faq\";s:3:\"faq\";}s:28:\"sanitized_builtin_post_types\";a:2:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";}s:21:\"smarter_cache_enabled\";s:1:\"0\";s:21:\"last_modified_enabled\";s:1:\"0\";s:27:\"wpe_ac_global_last_modified\";s:10:\"1600453098\";s:24:\"post_cache_expires_value\";s:3:\"600\";s:24:\"page_cache_expires_value\";s:3:\"600\";s:34:\"qcpx_portfolio_cache_expires_value\";s:4:\"3600\";s:31:\"portfolio-x_cache_expires_value\";s:4:\"3600\";s:30:\"wprss_feed_cache_expires_value\";s:4:\"3600\";s:33:\"ninzio-slider_cache_expires_value\";s:4:\"3600\";s:29:\"portfolio_cache_expires_value\";s:4:\"3600\";s:23:\"faq_cache_expires_value\";s:4:\"3600\";s:10:\"namespaces\";a:10:{i:0;s:10:\"oembed/1.0\";i:1;s:10:\"akismet/v1\";i:2;s:17:\"contact-form-7/v1\";i:3;s:14:\"redirection/v1\";i:4;s:8:\"yoast/v1\";i:5;s:16:\"yoast/v1/myyoast\";i:6;s:7:\"wpra/v1\";i:7;s:5:\"wp/v2\";i:8;s:17:\"wp-site-health/v1\";i:9;s:18:\"wp-block-editor/v1\";}s:30:\"oembed/1.0_cache_expires_value\";s:4:\"3600\";s:30:\"akismet/v1_cache_expires_value\";s:4:\"3600\";s:37:\"contact-form-7/v1_cache_expires_value\";s:4:\"3600\";s:34:\"redirection/v1_cache_expires_value\";s:4:\"3600\";s:28:\"yoast/v1_cache_expires_value\";s:4:\"3600\";s:36:\"yoast/v1/myyoast_cache_expires_value\";s:4:\"3600\";s:27:\"wpra/v1_cache_expires_value\";s:4:\"3600\";s:25:\"wp/v2_cache_expires_value\";s:4:\"3600\";s:37:\"wp-site-health/v1_cache_expires_value\";s:4:\"3600\";s:38:\"wp-block-editor/v1_cache_expires_value\";s:4:\"3600\";}','yes'),
(623169,'exactmetrics_tracking_notice','1','yes'),
(623181,'wp_page_for_privacy_policy','0','yes'),
(623182,'show_comments_cookies_opt_in','0','yes'),
(623933,'wp_snow_effect_activation_date','1545714206','yes'),
(628132,'tadv_settings','a:10:{s:9:\"toolbar_1\";s:106:\"formatselect,bold,italic,blockquote,bullist,numlist,alignleft,aligncenter,alignright,link,unlink,undo,redo\";s:9:\"toolbar_2\";s:103:\"fontselect,fontsizeselect,outdent,indent,pastetext,removeformat,charmap,wp_more,forecolor,table,wp_help\";s:9:\"toolbar_3\";s:0:\"\";s:9:\"toolbar_4\";s:0:\"\";s:21:\"toolbar_classic_block\";s:123:\"formatselect,bold,italic,blockquote,bullist,numlist,alignleft,aligncenter,alignright,link,forecolor,backcolor,table,wp_help\";s:7:\"options\";s:73:\"menubar,menubar_block,merge_toolbars,advlist,menubar_block,merge_toolbars\";s:7:\"plugins\";s:13:\"table,advlist\";s:13:\"toolbar_block\";s:21:\"core/image,core/image\";s:18:\"toolbar_block_side\";s:74:\"tadv/sup,tadv/sub,core/strikethrough,core/code,tadv/mark,tadv/removeformat\";s:12:\"panels_block\";s:44:\"tadv/color-panel,tadv/background-color-panel\";}','yes'),
(628133,'tadv_admin_settings','a:2:{s:7:\"options\";s:155:\"hybrid_mode,classic_paragraph_block,replace_block_editor,hybrid_mode,classic_paragraph_block,table_resize_bars,table_grid,table_tab_navigation,table_advtab\";s:16:\"disabled_editors\";s:0:\"\";}','yes'),
(628134,'tadv_version','5210','yes'),
(641256,'wp_snow_effect_admin_notices','a:1:{i:0;s:331:\"You have been using <b>WP Snow Effect</b> plugin for a week now, do you like it? If so, please leave us a review with your feedback! <a href=\"http://wordpress.org/support/plugin/wp-snow-effect/reviews/#new-post\" target=\"_blank\">Leave A Review</a> | <a href=\"https://activeclubsolutions.net/wp-admin/?wpsenobug=1\">Leave Me Alone</a>\";}','yes'),
(703599,'sm_options','a:52:{s:18:\"sm_b_prio_provider\";s:41:\"GoogleSitemapGeneratorPrioByCountProvider\";s:9:\"sm_b_ping\";b:1;s:10:\"sm_b_stats\";b:0;s:12:\"sm_b_pingmsn\";b:1;s:12:\"sm_b_autozip\";b:1;s:11:\"sm_b_memory\";s:0:\"\";s:9:\"sm_b_time\";i:-1;s:18:\"sm_b_style_default\";b:1;s:10:\"sm_b_style\";s:0:\"\";s:12:\"sm_b_baseurl\";s:0:\"\";s:11:\"sm_b_robots\";b:1;s:9:\"sm_b_html\";b:1;s:12:\"sm_b_exclude\";a:0:{}s:17:\"sm_b_exclude_cats\";a:0:{}s:10:\"sm_in_home\";b:1;s:11:\"sm_in_posts\";b:1;s:15:\"sm_in_posts_sub\";b:0;s:11:\"sm_in_pages\";b:1;s:10:\"sm_in_cats\";b:0;s:10:\"sm_in_arch\";b:0;s:10:\"sm_in_auth\";b:0;s:10:\"sm_in_tags\";b:0;s:9:\"sm_in_tax\";a:0:{}s:17:\"sm_in_customtypes\";a:0:{}s:13:\"sm_in_lastmod\";b:1;s:10:\"sm_cf_home\";s:5:\"daily\";s:11:\"sm_cf_posts\";s:7:\"monthly\";s:11:\"sm_cf_pages\";s:6:\"weekly\";s:10:\"sm_cf_cats\";s:6:\"weekly\";s:10:\"sm_cf_auth\";s:6:\"weekly\";s:15:\"sm_cf_arch_curr\";s:5:\"daily\";s:14:\"sm_cf_arch_old\";s:6:\"yearly\";s:10:\"sm_cf_tags\";s:6:\"weekly\";s:10:\"sm_pr_home\";d:1;s:11:\"sm_pr_posts\";d:0.6;s:15:\"sm_pr_posts_min\";d:0.2;s:11:\"sm_pr_pages\";d:0.6;s:10:\"sm_pr_cats\";d:0.3;s:10:\"sm_pr_arch\";d:0.3;s:10:\"sm_pr_auth\";d:0.3;s:10:\"sm_pr_tags\";d:0.3;s:12:\"sm_i_donated\";b:0;s:17:\"sm_i_hide_donated\";b:0;s:17:\"sm_i_install_date\";i:1554333158;s:16:\"sm_i_hide_survey\";b:0;s:14:\"sm_i_hide_note\";b:0;s:15:\"sm_i_hide_works\";b:0;s:16:\"sm_i_hide_donors\";b:0;s:9:\"sm_i_hash\";s:20:\"ad8f56635a942537f7a6\";s:13:\"sm_i_lastping\";i:1559252289;s:16:\"sm_i_supportfeed\";b:1;s:22:\"sm_i_supportfeed_cache\";i:1558826145;}','yes'),
(717089,'sm_status','O:28:\"GoogleSitemapGeneratorStatus\":4:{s:39:\"\0GoogleSitemapGeneratorStatus\0startTime\";d:1559252287.891449;s:37:\"\0GoogleSitemapGeneratorStatus\0endTime\";d:1559252288.637793;s:41:\"\0GoogleSitemapGeneratorStatus\0pingResults\";a:2:{s:6:\"google\";a:5:{s:9:\"startTime\";d:1559252287.894623;s:7:\"endTime\";d:1559252287.932869;s:7:\"success\";b:1;s:3:\"url\";s:110:\"http://www.google.com/webmasters/sitemaps/ping?sitemap=https%3A%2F%2Fwww.activeclubsolutions.com%2Fsitemap.xml\";s:4:\"name\";s:6:\"Google\";}s:4:\"bing\";a:5:{s:9:\"startTime\";d:1559252287.936376;s:7:\"endTime\";d:1559252288.626014;s:7:\"success\";b:1;s:3:\"url\";s:103:\"http://www.bing.com/webmaster/ping.aspx?siteMap=https%3A%2F%2Fwww.activeclubsolutions.com%2Fsitemap.xml\";s:4:\"name\";s:4:\"Bing\";}}s:38:\"\0GoogleSitemapGeneratorStatus\0autoSave\";b:1;}','no'),
(817791,'recovery_keys','a:1:{s:22:\"EpVpLs2P3GINKoFtONh4ia\";a:2:{s:10:\"hashed_key\";s:49:\"$generic$LkmIJRUivfKGrGBId8UYITgCZCUksdlGJH7wj-D6\";s:10:\"created_at\";i:1763184340;}}','off'),
(872672,'pantheon_session_version','0.9.0','yes'),
(872713,'_amn_exact-metrics_to_check','1763236602','yes'),
(872774,'pys_core','a:62:{s:18:\"general_event_name\";s:12:\"GeneralEvent\";s:19:\"general_event_delay\";i:0;s:30:\"general_event_on_posts_enabled\";b:1;s:30:\"general_event_on_pages_enabled\";b:1;s:28:\"general_event_on_tax_enabled\";b:1;s:28:\"general_event_on_woo_enabled\";b:1;s:28:\"general_event_on_edd_enabled\";b:1;s:25:\"download_event_extensions\";a:8:{i:0;s:3:\"doc\";i:1;s:3:\"exe\";i:2;s:2:\"js\";i:3;s:3:\"pdf\";i:4;s:3:\"ppt\";i:5;s:3:\"tgz\";i:6;s:3:\"zip\";i:7;s:3:\"xls\";}s:13:\"debug_enabled\";b:0;s:23:\"do_not_track_user_roles\";a:0:{}s:17:\"admin_permissions\";a:1:{i:0;s:13:\"administrator\";}s:11:\"woo_enabled\";b:0;s:31:\"woo_add_to_cart_on_button_click\";b:1;s:28:\"woo_add_to_cart_on_cart_page\";b:0;s:32:\"woo_add_to_cart_on_checkout_page\";b:0;s:25:\"woo_purchase_value_option\";s:5:\"total\";s:25:\"woo_purchase_value_global\";i:0;s:35:\"woo_initiate_checkout_value_enabled\";b:1;s:34:\"woo_initiate_checkout_value_option\";s:5:\"price\";s:34:\"woo_initiate_checkout_value_global\";i:0;s:29:\"woo_add_to_cart_value_enabled\";b:1;s:28:\"woo_add_to_cart_value_option\";s:5:\"price\";s:28:\"woo_add_to_cart_value_global\";i:0;s:22:\"woo_view_content_delay\";i:0;s:30:\"woo_view_content_value_enabled\";b:1;s:29:\"woo_view_content_value_option\";s:5:\"price\";s:29:\"woo_view_content_value_global\";i:0;s:11:\"edd_enabled\";b:0;s:31:\"edd_add_to_cart_on_button_click\";b:1;s:32:\"edd_add_to_cart_on_checkout_page\";b:0;s:25:\"edd_purchase_value_option\";s:5:\"price\";s:25:\"edd_purchase_value_global\";i:0;s:35:\"edd_initiate_checkout_value_enabled\";b:1;s:34:\"edd_initiate_checkout_value_option\";s:5:\"price\";s:34:\"edd_initiate_checkout_value_global\";i:0;s:29:\"edd_add_to_cart_value_enabled\";b:1;s:28:\"edd_add_to_cart_value_option\";s:5:\"price\";s:28:\"edd_add_to_cart_value_global\";i:0;s:22:\"edd_view_content_delay\";i:0;s:30:\"edd_view_content_value_enabled\";b:1;s:29:\"edd_view_content_value_option\";s:5:\"price\";s:29:\"edd_view_content_value_global\";i:0;s:21:\"custom_events_enabled\";b:0;s:35:\"gdpr_facebook_prior_consent_enabled\";b:1;s:36:\"gdpr_analytics_prior_consent_enabled\";b:1;s:36:\"gdpr_pinterest_prior_consent_enabled\";b:1;s:31:\"gdpr_bing_prior_consent_enabled\";b:1;s:34:\"gdpr_cookiebot_integration_enabled\";b:0;s:40:\"gdpr_cookiebot_facebook_consent_category\";s:9:\"marketing\";s:41:\"gdpr_cookiebot_analytics_consent_category\";s:10:\"statistics\";s:41:\"gdpr_cookiebot_pinterest_consent_category\";s:9:\"marketing\";s:36:\"gdpr_cookiebot_bing_consent_category\";s:9:\"marketing\";s:31:\"gdpr_ginger_integration_enabled\";b:0;s:38:\"gdpr_cookie_notice_integration_enabled\";b:0;s:40:\"gdpr_cookie_law_info_integration_enabled\";b:0;s:17:\"gdpr_ajax_enabled\";b:0;s:39:\"general_event_on_qcpx_portfolio_enabled\";b:0;s:36:\"general_event_on_portfolio-x_enabled\";b:0;s:35:\"general_event_on_wprss_feed_enabled\";b:0;s:38:\"general_event_on_ninzio-slider_enabled\";b:0;s:34:\"general_event_on_portfolio_enabled\";b:0;s:28:\"general_event_on_faq_enabled\";b:0;}','yes'),
(872775,'pys_facebook','a:29:{s:7:\"enabled\";b:0;s:8:\"pixel_id\";a:0:{}s:25:\"advanced_matching_enabled\";b:0;s:15:\"remove_metadata\";b:0;s:21:\"general_event_enabled\";b:1;s:20:\"search_event_enabled\";b:1;s:21:\"comment_event_enabled\";b:1;s:22:\"download_event_enabled\";b:1;s:18:\"form_event_enabled\";b:1;s:22:\"woo_variable_as_simple\";b:0;s:14:\"woo_content_id\";s:10:\"product_id\";s:21:\"woo_content_id_prefix\";s:0:\"\";s:21:\"woo_content_id_suffix\";s:0:\"\";s:20:\"woo_content_id_logic\";s:7:\"default\";s:20:\"woo_purchase_enabled\";b:1;s:29:\"woo_initiate_checkout_enabled\";b:1;s:28:\"woo_remove_from_cart_enabled\";b:1;s:23:\"woo_add_to_cart_enabled\";b:1;s:24:\"woo_view_content_enabled\";b:1;s:25:\"woo_view_category_enabled\";b:1;s:14:\"edd_content_id\";s:11:\"download_id\";s:21:\"edd_content_id_prefix\";s:0:\"\";s:21:\"edd_content_id_suffix\";s:0:\"\";s:20:\"edd_purchase_enabled\";b:1;s:29:\"edd_initiate_checkout_enabled\";b:1;s:28:\"edd_remove_from_cart_enabled\";b:1;s:23:\"edd_add_to_cart_enabled\";b:1;s:24:\"edd_view_content_enabled\";b:1;s:25:\"edd_view_category_enabled\";b:1;}','yes'),
(872776,'pys_core_version','7.1.3','yes'),
(872777,'pys_updated_at','1573263113','yes'),
(872778,'pys_free_promo_notices_start_time','1573263113','yes'),
(872784,'rewrite_rules','a:339:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s: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:17:\"qcpx_portfolio/?$\";s:34:\"index.php?post_type=qcpx_portfolio\";s:47:\"qcpx_portfolio/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?post_type=qcpx_portfolio&feed=$matches[1]\";s:42:\"qcpx_portfolio/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?post_type=qcpx_portfolio&feed=$matches[1]\";s:34:\"qcpx_portfolio/page/([0-9]{1,})/?$\";s:52:\"index.php?post_type=qcpx_portfolio&paged=$matches[1]\";s:14:\"portfolio-x/?$\";s:31:\"index.php?post_type=portfolio-x\";s:44:\"portfolio-x/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=portfolio-x&feed=$matches[1]\";s:39:\"portfolio-x/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?post_type=portfolio-x&feed=$matches[1]\";s:31:\"portfolio-x/page/([0-9]{1,})/?$\";s:49:\"index.php?post_type=portfolio-x&paged=$matches[1]\";s:12:\"portfolio/?$\";s:29:\"index.php?post_type=portfolio\";s:48:\"portfolio/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:43:\"portfolio/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:46:\"index.php?post_type=portfolio&feed=$matches[1]\";s:29:\"portfolio/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=portfolio&paged=$matches[1]\";s:6:\"faq/?$\";s:23:\"index.php?post_type=faq\";s:42:\"faq/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:40:\"index.php?post_type=faq&feed=$matches[1]\";s:37:\"faq/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:40:\"index.php?post_type=faq&feed=$matches[1]\";s:23:\"faq/page/([0-9]{1,})/?$\";s:41:\"index.php?post_type=faq&paged=$matches[1]\";s:53:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:48:\"category/(.+?)/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:50:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:45:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:51:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:46:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:61:\"portfolio_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:53:\"index.php?portfolio_type=$matches[1]&feed=$matches[2]\";s:56:\"portfolio_type/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:53:\"index.php?portfolio_type=$matches[1]&feed=$matches[2]\";s:31:\"portfolio_type/([^/]+)/embed/?$\";s:47:\"index.php?portfolio_type=$matches[1]&embed=true\";s:43:\"portfolio_type/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?portfolio_type=$matches[1]&paged=$matches[2]\";s:25:\"portfolio_type/([^/]+)/?$\";s:36:\"index.php?portfolio_type=$matches[1]\";s:67:\"portfolio_technology/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:59:\"index.php?portfolio_technology=$matches[1]&feed=$matches[2]\";s:62:\"portfolio_technology/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:59:\"index.php?portfolio_technology=$matches[1]&feed=$matches[2]\";s:37:\"portfolio_technology/([^/]+)/embed/?$\";s:53:\"index.php?portfolio_technology=$matches[1]&embed=true\";s:49:\"portfolio_technology/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?portfolio_technology=$matches[1]&paged=$matches[2]\";s:31:\"portfolio_technology/([^/]+)/?$\";s:42:\"index.php?portfolio_technology=$matches[1]\";s:63:\"portfolio-category/(.+?)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:58:\"portfolio-category/(.+?)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:33:\"portfolio-category/(.+?)/embed/?$\";s:51:\"index.php?portfolio-category=$matches[1]&embed=true\";s:45:\"portfolio-category/(.+?)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:27:\"portfolio-category/(.+?)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:60:\"portfolio-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:55:\"portfolio-tag/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:30:\"portfolio-tag/([^/]+)/embed/?$\";s:46:\"index.php?portfolio-tag=$matches[1]&embed=true\";s:42:\"portfolio-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?portfolio-tag=$matches[1]&paged=$matches[2]\";s:24:\"portfolio-tag/([^/]+)/?$\";s:35:\"index.php?portfolio-tag=$matches[1]\";s:57:\"faq-category/(.+?)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:51:\"index.php?faq-category=$matches[1]&feed=$matches[2]\";s:52:\"faq-category/(.+?)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:51:\"index.php?faq-category=$matches[1]&feed=$matches[2]\";s:27:\"faq-category/(.+?)/embed/?$\";s:45:\"index.php?faq-category=$matches[1]&embed=true\";s:39:\"faq-category/(.+?)/page/?([0-9]{1,})/?$\";s:52:\"index.php?faq-category=$matches[1]&paged=$matches[2]\";s:21:\"faq-category/(.+?)/?$\";s:34:\"index.php?faq-category=$matches[1]\";s:54:\"faq-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:46:\"index.php?faq-tag=$matches[1]&feed=$matches[2]\";s:49:\"faq-tag/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:46:\"index.php?faq-tag=$matches[1]&feed=$matches[2]\";s:24:\"faq-tag/([^/]+)/embed/?$\";s:40:\"index.php?faq-tag=$matches[1]&embed=true\";s:36:\"faq-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?faq-tag=$matches[1]&paged=$matches[2]\";s:18:\"faq-tag/([^/]+)/?$\";s:29:\"index.php?faq-tag=$matches[1]\";s:37:\"pys_event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"pys_event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"pys_event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"pys_event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"pys_event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"pys_event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"pys_event/([^/]+)/embed/?$\";s:42:\"index.php?pys_event=$matches[1]&embed=true\";s:30:\"pys_event/([^/]+)/trackback/?$\";s:36:\"index.php?pys_event=$matches[1]&tb=1\";s:38:\"pys_event/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?pys_event=$matches[1]&paged=$matches[2]\";s:45:\"pys_event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?pys_event=$matches[1]&cpage=$matches[2]\";s:34:\"pys_event/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?pys_event=$matches[1]&page=$matches[2]\";s:26:\"pys_event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"pys_event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"pys_event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"pys_event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"pys_event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"pys_event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"amn_exact-metrics/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"amn_exact-metrics/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:81:\"amn_exact-metrics/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:76:\"amn_exact-metrics/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"amn_exact-metrics/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"amn_exact-metrics/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"amn_exact-metrics/([^/]+)/embed/?$\";s:50:\"index.php?amn_exact-metrics=$matches[1]&embed=true\";s:38:\"amn_exact-metrics/([^/]+)/trackback/?$\";s:44:\"index.php?amn_exact-metrics=$matches[1]&tb=1\";s:46:\"amn_exact-metrics/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?amn_exact-metrics=$matches[1]&paged=$matches[2]\";s:53:\"amn_exact-metrics/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?amn_exact-metrics=$matches[1]&cpage=$matches[2]\";s:42:\"amn_exact-metrics/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?amn_exact-metrics=$matches[1]&page=$matches[2]\";s:34:\"amn_exact-metrics/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"amn_exact-metrics/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"amn_exact-metrics/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"amn_exact-metrics/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"amn_exact-metrics/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"amn_exact-metrics/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"wpephpcompat_jobs/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"wpephpcompat_jobs/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:81:\"wpephpcompat_jobs/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:76:\"wpephpcompat_jobs/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"wpephpcompat_jobs/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"wpephpcompat_jobs/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"wpephpcompat_jobs/([^/]+)/embed/?$\";s:50:\"index.php?wpephpcompat_jobs=$matches[1]&embed=true\";s:38:\"wpephpcompat_jobs/([^/]+)/trackback/?$\";s:44:\"index.php?wpephpcompat_jobs=$matches[1]&tb=1\";s:46:\"wpephpcompat_jobs/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?wpephpcompat_jobs=$matches[1]&paged=$matches[2]\";s:53:\"wpephpcompat_jobs/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?wpephpcompat_jobs=$matches[1]&cpage=$matches[2]\";s:42:\"wpephpcompat_jobs/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?wpephpcompat_jobs=$matches[1]&page=$matches[2]\";s:34:\"wpephpcompat_jobs/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"wpephpcompat_jobs/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"wpephpcompat_jobs/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"wpephpcompat_jobs/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"wpephpcompat_jobs/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"wpephpcompat_jobs/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"qcpx_portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"qcpx_portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:78:\"qcpx_portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"qcpx_portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"qcpx_portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"qcpx_portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"qcpx_portfolio/([^/]+)/embed/?$\";s:47:\"index.php?qcpx_portfolio=$matches[1]&embed=true\";s:35:\"qcpx_portfolio/([^/]+)/trackback/?$\";s:41:\"index.php?qcpx_portfolio=$matches[1]&tb=1\";s:61:\"qcpx_portfolio/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:53:\"index.php?qcpx_portfolio=$matches[1]&feed=$matches[2]\";s:56:\"qcpx_portfolio/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:53:\"index.php?qcpx_portfolio=$matches[1]&feed=$matches[2]\";s:43:\"qcpx_portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?qcpx_portfolio=$matches[1]&paged=$matches[2]\";s:50:\"qcpx_portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?qcpx_portfolio=$matches[1]&cpage=$matches[2]\";s:39:\"qcpx_portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?qcpx_portfolio=$matches[1]&page=$matches[2]\";s:31:\"qcpx_portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"qcpx_portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"qcpx_portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"qcpx_portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"qcpx_portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"qcpx_portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"portfolio-x/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"portfolio-x/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"portfolio-x/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"portfolio-x/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"portfolio-x/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"portfolio-x/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"portfolio-x/([^/]+)/embed/?$\";s:44:\"index.php?portfolio-x=$matches[1]&embed=true\";s:32:\"portfolio-x/([^/]+)/trackback/?$\";s:38:\"index.php?portfolio-x=$matches[1]&tb=1\";s:58:\"portfolio-x/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:50:\"index.php?portfolio-x=$matches[1]&feed=$matches[2]\";s:53:\"portfolio-x/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:50:\"index.php?portfolio-x=$matches[1]&feed=$matches[2]\";s:40:\"portfolio-x/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?portfolio-x=$matches[1]&paged=$matches[2]\";s:47:\"portfolio-x/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?portfolio-x=$matches[1]&cpage=$matches[2]\";s:36:\"portfolio-x/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?portfolio-x=$matches[1]&page=$matches[2]\";s:28:\"portfolio-x/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"portfolio-x/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"portfolio-x/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"portfolio-x/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"portfolio-x/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"portfolio-x/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"feeds/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"feeds/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"feeds/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"feeds/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"feeds/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"feeds/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"feeds/([^/]+)/embed/?$\";s:44:\"index.php?feed_source=$matches[1]&embed=true\";s:26:\"feeds/([^/]+)/trackback/?$\";s:38:\"index.php?feed_source=$matches[1]&tb=1\";s:34:\"feeds/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?feed_source=$matches[1]&paged=$matches[2]\";s:41:\"feeds/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?feed_source=$matches[1]&cpage=$matches[2]\";s:30:\"feeds/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?feed_source=$matches[1]&page=$matches[2]\";s:22:\"feeds/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"feeds/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"feeds/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"feeds/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"feeds/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"feeds/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"feed-templates/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"feed-templates/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:78:\"feed-templates/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"feed-templates/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"feed-templates/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"feed-templates/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"feed-templates/([^/]+)/embed/?$\";s:46:\"index.php?feed_template=$matches[1]&embed=true\";s:35:\"feed-templates/([^/]+)/trackback/?$\";s:40:\"index.php?feed_template=$matches[1]&tb=1\";s:43:\"feed-templates/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?feed_template=$matches[1]&paged=$matches[2]\";s:50:\"feed-templates/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?feed_template=$matches[1]&cpage=$matches[2]\";s:39:\"feed-templates/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?feed_template=$matches[1]&page=$matches[2]\";s:31:\"feed-templates/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"feed-templates/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"feed-templates/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"feed-templates/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"feed-templates/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"feed-templates/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"ninzio-slider/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"ninzio-slider/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"ninzio-slider/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"ninzio-slider/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"ninzio-slider/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"ninzio-slider/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"ninzio-slider/([^/]+)/embed/?$\";s:46:\"index.php?ninzio-slider=$matches[1]&embed=true\";s:34:\"ninzio-slider/([^/]+)/trackback/?$\";s:40:\"index.php?ninzio-slider=$matches[1]&tb=1\";s:42:\"ninzio-slider/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?ninzio-slider=$matches[1]&paged=$matches[2]\";s:49:\"ninzio-slider/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?ninzio-slider=$matches[1]&cpage=$matches[2]\";s:38:\"ninzio-slider/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?ninzio-slider=$matches[1]&page=$matches[2]\";s:30:\"ninzio-slider/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"ninzio-slider/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"ninzio-slider/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"ninzio-slider/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"ninzio-slider/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"ninzio-slider/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"portfolio/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"portfolio/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"portfolio/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"portfolio/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"portfolio/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"portfolio/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"portfolio/([^/]+)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:30:\"portfolio/([^/]+)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:56:\"portfolio/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:48:\"index.php?portfolio=$matches[1]&feed=$matches[2]\";s:38:\"portfolio/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:45:\"portfolio/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:34:\"portfolio/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:26:\"portfolio/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"portfolio/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"portfolio/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"portfolio/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"portfolio/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"faq/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"faq/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"faq/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"faq/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"faq/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"faq/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:20:\"faq/([^/]+)/embed/?$\";s:36:\"index.php?faq=$matches[1]&embed=true\";s:24:\"faq/([^/]+)/trackback/?$\";s:30:\"index.php?faq=$matches[1]&tb=1\";s:50:\"faq/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:42:\"index.php?faq=$matches[1]&feed=$matches[2]\";s:45:\"faq/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:42:\"index.php?faq=$matches[1]&feed=$matches[2]\";s:32:\"faq/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&paged=$matches[2]\";s:39:\"faq/([^/]+)/comment-page-([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&cpage=$matches[2]\";s:28:\"faq/([^/]+)(?:/([0-9]+))?/?$\";s:42:\"index.php?faq=$matches[1]&page=$matches[2]\";s:20:\"faq/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\"faq/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"faq/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"faq/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"faq/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\"faq/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:43:\"wprss_blacklist/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"wprss_blacklist/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:79:\"wprss_blacklist/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:74:\"wprss_blacklist/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"wprss_blacklist/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"wprss_blacklist/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"wprss_blacklist/([^/]+)/embed/?$\";s:48:\"index.php?wprss_blacklist=$matches[1]&embed=true\";s:36:\"wprss_blacklist/([^/]+)/trackback/?$\";s:42:\"index.php?wprss_blacklist=$matches[1]&tb=1\";s:44:\"wprss_blacklist/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?wprss_blacklist=$matches[1]&paged=$matches[2]\";s:51:\"wprss_blacklist/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?wprss_blacklist=$matches[1]&cpage=$matches[2]\";s:40:\"wprss_blacklist/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?wprss_blacklist=$matches[1]&page=$matches[2]\";s:32:\"wprss_blacklist/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"wprss_blacklist/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"wprss_blacklist/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"wprss_blacklist/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"wprss_blacklist/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"wprss_blacklist/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";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:38:\"feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:33:\"(feed|rdf|rss|rss2|atom|wprss)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=848&cpage=$matches[1]\";s:47:\"comments/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:42:\"comments/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:50:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:45:\"search/(.+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:53:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:48:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:75:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:70:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:62:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:57:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:49:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:44:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:63:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:46:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:41:\"(.?.+?)/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:63:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:46:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:41:\"([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";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:52:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|wprss)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|wprss)/?$\";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'),
(940784,'admin_email_lifespan','1765121041','yes'),
(953487,'_transient_jetpack_akismet_key_is_valid','valid','no'),
(997891,'_transient_jetpack_assumed_site_creation_date','2014-01-23 21:54:49','yes'),
(1016477,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":7,\"critical\":1}','yes'),
(1024177,'duplicate_page_options','a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}','yes'),
(1024219,'shfs_insert_header','','yes'),
(1024220,'shfs_insert_footer','','yes'),
(1024221,'shfs_insert_header_priority','10','yes'),
(1024222,'shfs_insert_footer_priority','10','yes'),
(1095471,'action_scheduler_hybrid_store_demarkation','3826','yes'),
(1095472,'schema-ActionScheduler_StoreSchema','3.0.1597173557','yes'),
(1095473,'schema-ActionScheduler_LoggerSchema','2.0.1597173557','yes'),
(1095476,'woocommerce_schema_version','430','yes'),
(1095477,'woocommerce_store_address','','yes'),
(1095478,'woocommerce_store_address_2','','yes'),
(1095479,'woocommerce_store_city','','yes'),
(1095480,'woocommerce_default_country','US:CA','yes'),
(1095481,'woocommerce_store_postcode','','yes'),
(1095482,'woocommerce_allowed_countries','all','yes'),
(1095483,'woocommerce_all_except_countries','a:0:{}','yes'),
(1095484,'woocommerce_specific_allowed_countries','a:0:{}','yes'),
(1095485,'woocommerce_ship_to_countries','','yes'),
(1095486,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),
(1095487,'woocommerce_default_customer_address','base','yes'),
(1095488,'woocommerce_calc_taxes','no','yes'),
(1095489,'woocommerce_enable_coupons','yes','yes'),
(1095490,'woocommerce_calc_discounts_sequentially','no','no'),
(1095491,'woocommerce_currency','USD','yes'),
(1095492,'woocommerce_currency_pos','left','yes'),
(1095493,'woocommerce_price_thousand_sep',',','yes'),
(1095494,'woocommerce_price_decimal_sep','.','yes'),
(1095495,'woocommerce_price_num_decimals','2','yes'),
(1095496,'woocommerce_shop_page_id','','yes'),
(1095497,'woocommerce_cart_redirect_after_add','no','yes'),
(1095498,'woocommerce_enable_ajax_add_to_cart','yes','yes'),
(1095499,'woocommerce_placeholder_image','3826','yes'),
(1095500,'woocommerce_weight_unit','kg','yes'),
(1095501,'woocommerce_dimension_unit','cm','yes'),
(1095502,'woocommerce_enable_reviews','yes','yes'),
(1095503,'woocommerce_review_rating_verification_label','yes','no'),
(1095504,'woocommerce_review_rating_verification_required','no','no'),
(1095505,'woocommerce_enable_review_rating','yes','yes'),
(1095506,'woocommerce_review_rating_required','yes','no'),
(1095507,'woocommerce_manage_stock','yes','yes'),
(1095508,'woocommerce_hold_stock_minutes','60','no'),
(1095509,'woocommerce_notify_low_stock','yes','no'),
(1095510,'woocommerce_notify_no_stock','yes','no'),
(1095511,'woocommerce_stock_email_recipient','arne@activeclubsolutions.com','no'),
(1095512,'woocommerce_notify_low_stock_amount','2','no'),
(1095513,'woocommerce_notify_no_stock_amount','0','yes'),
(1095514,'woocommerce_hide_out_of_stock_items','no','yes'),
(1095515,'woocommerce_stock_format','','yes'),
(1095516,'woocommerce_file_download_method','force','no'),
(1095517,'woocommerce_downloads_require_login','no','no'),
(1095518,'woocommerce_downloads_grant_access_after_payment','yes','no'),
(1095519,'woocommerce_downloads_add_hash_to_filename','yes','yes'),
(1095520,'woocommerce_prices_include_tax','no','yes'),
(1095521,'woocommerce_tax_based_on','shipping','yes'),
(1095522,'woocommerce_shipping_tax_class','inherit','yes'),
(1095523,'woocommerce_tax_round_at_subtotal','no','yes'),
(1095524,'woocommerce_tax_classes','','yes'),
(1095525,'woocommerce_tax_display_shop','excl','yes'),
(1095526,'woocommerce_tax_display_cart','excl','yes'),
(1095527,'woocommerce_price_display_suffix','','yes'),
(1095528,'woocommerce_tax_total_display','itemized','no'),
(1095529,'woocommerce_enable_shipping_calc','yes','no'),
(1095530,'woocommerce_shipping_cost_requires_address','no','yes'),
(1095531,'woocommerce_ship_to_destination','billing','no'),
(1095532,'woocommerce_shipping_debug_mode','no','yes'),
(1095533,'woocommerce_enable_guest_checkout','yes','no'),
(1095534,'woocommerce_enable_checkout_login_reminder','no','no'),
(1095535,'woocommerce_enable_signup_and_login_from_checkout','no','no'),
(1095536,'woocommerce_enable_myaccount_registration','no','no'),
(1095537,'woocommerce_registration_generate_username','yes','no'),
(1095538,'woocommerce_registration_generate_password','yes','no'),
(1095539,'woocommerce_erasure_request_removes_order_data','no','no'),
(1095540,'woocommerce_erasure_request_removes_download_data','no','no'),
(1095541,'woocommerce_allow_bulk_remove_personal_data','no','no'),
(1095542,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),
(1095543,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),
(1095544,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),
(1095545,'woocommerce_trash_pending_orders','','no'),
(1095546,'woocommerce_trash_failed_orders','','no'),
(1095547,'woocommerce_trash_cancelled_orders','','no'),
(1095548,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),
(1095549,'woocommerce_email_from_name','Winery POS Tasting Room POS mobile ipad POS wine club software','no'),
(1095550,'woocommerce_email_from_address','arne@activeclubsolutions.com','no'),
(1095551,'woocommerce_email_header_image','','no'),
(1095552,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),
(1095553,'woocommerce_email_base_color','#96588a','no'),
(1095554,'woocommerce_email_background_color','#f7f7f7','no'),
(1095555,'woocommerce_email_body_background_color','#ffffff','no'),
(1095556,'woocommerce_email_text_color','#3c3c3c','no'),
(1095557,'woocommerce_cart_page_id','','no'),
(1095558,'woocommerce_checkout_page_id','','no'),
(1095559,'woocommerce_myaccount_page_id','','no'),
(1095560,'woocommerce_terms_page_id','','no'),
(1095561,'woocommerce_checkout_pay_endpoint','order-pay','yes'),
(1095562,'woocommerce_checkout_order_received_endpoint','order-received','yes'),
(1095563,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),
(1095564,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),
(1095565,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),
(1095566,'woocommerce_myaccount_orders_endpoint','orders','yes'),
(1095567,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),
(1095568,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),
(1095569,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),
(1095570,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),
(1095571,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),
(1095572,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),
(1095573,'woocommerce_logout_endpoint','customer-logout','yes'),
(1095574,'woocommerce_api_enabled','no','yes'),
(1095575,'woocommerce_allow_tracking','no','no'),
(1095576,'woocommerce_show_marketplace_suggestions','yes','no'),
(1095577,'woocommerce_single_image_width','600','yes'),
(1095578,'woocommerce_thumbnail_image_width','300','yes'),
(1095579,'woocommerce_checkout_highlight_required_fields','yes','yes'),
(1095580,'woocommerce_demo_store','no','no'),
(1095581,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),
(1095582,'current_theme_supports_woocommerce','yes','yes'),
(1095583,'woocommerce_queue_flush_rewrite_rules','no','yes'),
(1095584,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),
(1095598,'product_cat_children','a:0:{}','yes'),
(1095599,'default_product_cat','173','yes'),
(1095619,'woocommerce_admin_notices','a:1:{i:0;s:7:\"install\";}','yes'),
(1095622,'woocommerce_version','4.3.2','yes'),
(1095623,'woocommerce_db_version','4.3.2','yes'),
(1095624,'woocommerce_homescreen_enabled','yes','yes'),
(1095643,'action_scheduler_lock_async-request-runner','1620246887','yes'),
(1095644,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"alwsFu0wfAyVNRzrUJSbDu3EKgDcL6em\";}','yes'),
(1095645,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),
(1095646,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095647,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095648,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095649,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095650,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095651,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095652,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095653,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095654,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095655,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095656,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095657,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1095660,'woocommerce_admin_version','1.3.1','yes'),
(1095661,'woocommerce_admin_install_timestamp','1597173573','yes'),
(1095665,'wc_admin_note_home_screen_feedback_homescreen_accessed','1597173574','yes'),
(1095667,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),
(1095668,'woocommerce_meta_box_errors','a:0:{}','yes'),
(1095669,'wc_blocks_db_schema_version','260','yes'),
(1095673,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:0;}','yes'),
(1095674,'woocommerce_onboarding_opt_in','yes','yes'),
(1095677,'_transient_woocommerce_reports-transient-version','1597173591','yes'),
(1125629,'_transient_product_query-transient-version','1620020054','yes'),
(1187165,'_transient_shipping-transient-version','1604880124','yes'),
(1187202,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:26:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:14;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:15;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:16;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:18;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:19;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:20;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:21;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:22;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:23;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:24;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:25;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1604880359;}','no'),
(1187209,'woocommerce_task_list_tracked_completed_tasks','a:1:{i:0;s:13:\"store_details\";}','yes'),
(1187220,'woocommerce_task_list_welcome_modal_dismissed','1','yes'),
(1188867,'disallowed_keys','','no'),
(1188868,'comment_previously_approved','1','yes'),
(1188869,'auto_plugin_theme_update_emails','a:0:{}','no'),
(1188870,'finished_updating_comment_type','1','yes'),
(1196314,'wpe-health-check-site-status-result','{\"good\":14,\"recommended\":7,\"critical\":1}','yes'),
(1287342,'auto_update_core_dev','enabled','yes'),
(1287343,'auto_update_core_minor','enabled','yes'),
(1287344,'auto_update_core_major','unset','yes'),
(1344377,'https_detection_errors','a:0:{}','off'),
(1463373,'tock_domain_name','activeclubsolutions.com','yes'),
(1468547,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1475386,'wp_force_deactivated_plugins','a:0:{}','off'),
(1483113,'subscription_options','a:2:{s:10:\"invitation\";s:226:\"Howdy.\r\n\r\nYou recently followed this blog\'s posts. This means you will receive each new post by email.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\";s:14:\"comment_follow\";s:239:\"Howdy.\r\n\r\nYou recently followed one of my posts. This means you will receive an email when new comments are posted.\r\n\r\nTo activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.\";}','yes'),
(1483284,'redirection_options','a:33:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"d9ed9586108cbf51a97502b73ca6f484\";s:12:\"monitor_post\";i:0;s:13:\"monitor_types\";a:0:{}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:-1;s:10:\"expire_404\";i:-1;s:12:\"log_external\";b:0;s:10:\"log_header\";b:0;s:10:\"track_hits\";b:1;s:7:\"modules\";a:0:{}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:0;s:13:\"last_group_id\";i:1;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:7:\"headers\";a:0:{}s:8:\"database\";s:3:\"4.2\";s:8:\"relocate\";s:0:\"\";s:16:\"preferred_domain\";s:0:\"\";s:7:\"aliases\";a:0:{}s:10:\"permalinks\";a:0:{}s:9:\"cache_key\";i:0;s:13:\"plugin_update\";s:6:\"prompt\";s:13:\"update_notice\";i:0;s:10:\"flag_query\";s:5:\"exact\";s:9:\"flag_case\";b:0;s:13:\"flag_trailing\";b:0;s:10:\"flag_regex\";b:0;s:16:\"log_redirections\";i:0;s:8:\"log_404s\";i:0;}','yes'),
(1510098,'post_by_email_address4','NULL','yes'),
(1510117,'tiled_galleries','1','yes'),
(1510132,'jetpack_protect_error','Invalid Action Specified','no'),
(1510215,'jetpack_constants_sync_checksum','a:20:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:734881840;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:163515461;s:14:\"WP_CONTENT_DIR\";i:2798250024;s:9:\"FS_METHOD\";i:3577458903;s:18:\"DISALLOW_FILE_EDIT\";i:734881840;s:18:\"DISALLOW_FILE_MODS\";i:734881840;s:19:\"WP_AUTO_UPDATE_CORE\";i:734881840;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:622893295;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:734881840;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:3556376702;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1839787262;s:8:\"WP_DEBUG\";i:734881840;}','yes'),
(1510216,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:5:\"https\";}','yes'),
(1510217,'jetpack_sync_https_history_site_url','a:2:{i:0;s:5:\"https\";i:1;s:5:\"https\";}','yes'),
(1510218,'jetpack_sync_https_history_home_url','a:2:{i:0;s:5:\"https\";i:1;s:5:\"https\";}','yes'),
(1510254,'jetpack_callables_sync_checksum','a:33:{s:18:\"wp_max_upload_size\";i:897710703;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:771465957;s:8:\"site_url\";i:771465957;s:8:\"home_url\";i:771465957;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:3425443202;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:4101907682;s:10:\"post_types\";i:1029196008;s:18:\"post_type_features\";i:2290726433;s:10:\"shortcodes\";i:3322469286;s:27:\"rest_api_allowed_post_types\";i:2990871343;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:1257903391;s:11:\"get_plugins\";i:3549120816;s:24:\"get_plugins_action_links\";i:2494500850;s:14:\"active_modules\";i:1795394883;s:16:\"hosting_provider\";i:315663626;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;s:5:\"roles\";i:3259997843;s:8:\"timezone\";i:4162107118;s:24:\"available_jetpack_blocks\";i:1193766353;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;}','no'),
(1513773,'wpe_cache_config','a:25:{s:20:\"sanitized_post_types\";a:8:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:14:\"qcpx_portfolio\";s:14:\"qcpx_portfolio\";s:11:\"portfolio-x\";s:11:\"portfolio-x\";s:10:\"wprss_feed\";s:10:\"wprss_feed\";s:13:\"ninzio-slider\";s:13:\"ninzio-slider\";s:9:\"portfolio\";s:9:\"portfolio\";s:3:\"faq\";s:3:\"faq\";}s:28:\"sanitized_builtin_post_types\";a:2:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";}s:21:\"smarter_cache_enabled\";s:1:\"0\";s:21:\"last_modified_enabled\";s:1:\"0\";s:27:\"wpe_ac_global_last_modified\";s:10:\"1262304000\";s:24:\"post_cache_expires_value\";s:2:\"-1\";s:24:\"page_cache_expires_value\";s:2:\"-1\";s:34:\"qcpx_portfolio_cache_expires_value\";s:2:\"-1\";s:31:\"portfolio-x_cache_expires_value\";s:2:\"-1\";s:30:\"wprss_feed_cache_expires_value\";s:2:\"-1\";s:33:\"ninzio-slider_cache_expires_value\";s:2:\"-1\";s:29:\"portfolio_cache_expires_value\";s:2:\"-1\";s:23:\"faq_cache_expires_value\";s:2:\"-1\";s:10:\"namespaces\";a:11:{i:0;s:10:\"oembed/1.0\";i:1;s:19:\"wpe/cache-plugin/v1\";i:2;s:21:\"wpe_sign_on_plugin/v1\";i:3;s:10:\"akismet/v1\";i:4;s:17:\"contact-form-7/v1\";i:5;s:14:\"redirection/v1\";i:6;s:8:\"yoast/v1\";i:7;s:16:\"yoast/v1/myyoast\";i:8;s:7:\"wpra/v1\";i:9;s:5:\"wp/v2\";i:10;s:17:\"wp-site-health/v1\";}s:30:\"oembed/1.0_cache_expires_value\";s:2:\"-1\";s:39:\"wpe/cache-plugin/v1_cache_expires_value\";s:2:\"-1\";s:41:\"wpe_sign_on_plugin/v1_cache_expires_value\";s:2:\"-1\";s:30:\"akismet/v1_cache_expires_value\";s:2:\"-1\";s:37:\"contact-form-7/v1_cache_expires_value\";s:2:\"-1\";s:34:\"redirection/v1_cache_expires_value\";s:2:\"-1\";s:28:\"yoast/v1_cache_expires_value\";s:2:\"-1\";s:36:\"yoast/v1/myyoast_cache_expires_value\";s:2:\"-1\";s:27:\"wpra/v1_cache_expires_value\";s:2:\"-1\";s:25:\"wp/v2_cache_expires_value\";s:2:\"-1\";s:37:\"wp-site-health/v1_cache_expires_value\";s:2:\"-1\";}','yes'),
(1534923,'wp_calendar_block_has_published_posts','1','yes'),
(1558571,'gadwp_cache_qr3_1390351998','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:259:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:64890315&metrics=ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:avgSessionDuration&start-date=30daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:9:{i:0;s:3:\"956\";i:1;s:3:\"735\";i:2;s:4:\"1574\";i:3;s:17:\"42.88702928870293\";i:4;s:1:\"1\";i:5;s:18:\"1.6464435146443515\";i:6;s:18:\"187.78155339805826\";i:7;s:17:\"5.221070422535211\";i:8;s:18:\"121.38912133891213\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:259:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:64890315&metrics=ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:avgSessionDuration&start-date=30daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:9:{s:11:\"ga:sessions\";s:3:\"956\";s:8:\"ga:users\";s:3:\"735\";s:12:\"ga:pageviews\";s:4:\"1574\";s:13:\"ga:BounceRate\";s:17:\"42.88702928870293\";s:18:\"ga:organicSearches\";s:1:\"1\";s:22:\"ga:pageviewsPerSession\";s:18:\"1.6464435146443515\";s:16:\"ga:avgTimeOnPage\";s:18:\"187.78155339805826\";s:18:\"ga:avgPageLoadTime\";s:17:\"5.221070422535211\";s:21:\"ga:avgSessionDuration\";s:18:\"121.38912133891213\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:7:{s:10:\"start-date\";s:9:\"30daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:64890315\";s:7:\"metrics\";a:9:{i:0;s:11:\"ga:sessions\";i:1;s:8:\"ga:users\";i:2;s:12:\"ga:pageviews\";i:3;s:13:\"ga:BounceRate\";i:4;s:18:\"ga:organicSearches\";i:5;s:22:\"ga:pageviewsPerSession\";i:6;s:16:\"ga:avgTimeOnPage\";i:7;s:18:\"ga:avgPageLoadTime\";i:8;s:21:\"ga:avgSessionDuration\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"64890315\";s:9:\"accountId\";s:8:\"35433848\";s:13:\"webPropertyId\";s:13:\"UA-35433848-1\";s:21:\"internalWebPropertyId\";s:8:\"63269103\";s:11:\"profileName\";s:19:\"ActiveClubSolutions\";s:7:\"tableId\";s:11:\"ga:64890315\";}s:13:\"columnHeaders\";a:9:{i:0;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:3;a:3:{s:4:\"name\";s:13:\"ga:BounceRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}i:4;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:5;a:3:{s:4:\"name\";s:22:\"ga:pageviewsPerSession\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:6;a:3:{s:4:\"name\";s:16:\"ga:avgTimeOnPage\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}i:7;a:3:{s:4:\"name\";s:18:\"ga:avgPageLoadTime\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:8;a:3:{s:4:\"name\";s:21:\"ga:avgSessionDuration\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1654156800;}','no'),
(1583702,'gadwp_cache_errors_count','a:2:{s:5:\"value\";i:1;s:7:\"expires\";i:1660118400;}','no'),
(1594761,'user_count','16','no'),
(1699067,'wp_attachment_pages_enabled','1','yes'),
(1716218,'category_children','a:2:{i:3;a:1:{i:0;i:174;}i:4;a:1:{i:0;i:175;}}','yes'),
(1729933,'wpe_feature_flags','a:4:{s:29:\"showUpdateProviderHealthPanel\";b:1;s:23:\"showCurrentUpdateSource\";b:1;s:25:\"showUpdateSourceSelection\";b:1;s:19:\"allowSourceOverride\";b:1;}','yes'),
(1729934,'wpe_feature_flags_expiration','1763181476','yes'),
(1730271,'wpe_notices_expiration','1763181476','yes'),
(1750541,'_transient_timeout_wpseo_meta_table_inaccessible','1773588632','no'),
(1750542,'_transient_wpseo_meta_table_inaccessible','0','no'),
(1764432,'_transient_timeout_wpseo_link_table_inaccessible','1783706213','no'),
(1764433,'_transient_wpseo_link_table_inaccessible','0','no'),
(1778783,'wpe_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.8.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.8.3.zip\";s:10:\"no_content\";s:73:\"https://wpe-downloads.wpengine.com/release/wordpress-6.8.3-no-content.zip\";s:11:\"new_bundled\";s:74:\"https://wpe-downloads.wpengine.com/release/wordpress-6.8.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.3\";s:7:\"version\";s:5:\"6.8.3\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.8.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.8.3.zip\";s:10:\"no_content\";s:73:\"https://wpe-downloads.wpengine.com/release/wordpress-6.8.3-no-content.zip\";s:11:\"new_bundled\";s:74:\"https://wpe-downloads.wpengine.com/release/wordpress-6.8.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.3\";s:7:\"version\";s:5:\"6.8.3\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.7.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.7.4.zip\";s:10:\"no_content\";s:73:\"https://wpe-downloads.wpengine.com/release/wordpress-6.7.4-no-content.zip\";s:11:\"new_bundled\";s:74:\"https://wpe-downloads.wpengine.com/release/wordpress-6.7.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.4\";s:7:\"version\";s:5:\"6.7.4\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.6.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.6.4.zip\";s:10:\"no_content\";s:73:\"https://wpe-downloads.wpengine.com/release/wordpress-6.6.4-no-content.zip\";s:11:\"new_bundled\";s:74:\"https://wpe-downloads.wpengine.com/release/wordpress-6.6.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.4\";s:7:\"version\";s:5:\"6.6.4\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.5.7.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:62:\"https://wpe-downloads.wpengine.com/release/wordpress-6.5.7.zip\";s:10:\"no_content\";s:73:\"https://wpe-downloads.wpengine.com/release/wordpress-6.5.7-no-content.zip\";s:11:\"new_bundled\";s:74:\"https://wpe-downloads.wpengine.com/release/wordpress-6.5.7-new-bundled.zip\";s:7:\"partial\";s:72:\"https://wpe-downloads.wpengine.com/release/wordpress-6.5.7-partial-3.zip\";s:8:\"rollback\";s:73:\"https://wpe-downloads.wpengine.com/release/wordpress-6.5.7-rollback-3.zip\";}s:7:\"current\";s:5:\"6.5.7\";s:7:\"version\";s:5:\"6.5.7\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:5:\"6.5.3\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1763180629;s:15:\"version_checked\";s:5:\"6.5.3\";s:12:\"translations\";a:0:{}}','no'),
(1779796,'_transient_timeout_redux_tracking_cache','1763509309','no'),
(1779797,'_transient_redux_tracking_cache','1','no'),
(1780082,'_site_transient_timeout_browser_3268fe57febc0d1640e7d7359e3c065d','1763689749','no'),
(1780083,'_site_transient_browser_3268fe57febc0d1640e7d7359e3c065d','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"141.0.0.0\";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'),
(1780086,'_site_transient_timeout_browser_7b3bbd190626e77d1484feb4c142de04','1763691157','no'),
(1780087,'_site_transient_browser_7b3bbd190626e77d1484feb4c142de04','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"112.0.0.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
(1780178,'_site_transient_timeout_php_check_44e57fe862ab432c56ef1b65123f0885','1763758337','no'),
(1780179,'_site_transient_php_check_44e57fe862ab432c56ef1b65123f0885','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),
(1780192,'wpe_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1763180630;s:7:\"checked\";a:6:{s:11:\"active-club\";s:3:\"1.0\";s:13:\"twentyfifteen\";s:3:\"2.0\";s:14:\"twentyfourteen\";s:3:\"2.2\";s:14:\"twentynineteen\";s:3:\"1.0\";s:15:\"twentyseventeen\";s:3:\"1.6\";s:13:\"twentysixteen\";s:3:\"1.5\";}s:8:\"response\";a:5:{s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"4.0\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:70:\"https://theme-updates.wpengine.com/twentyfifteen/twentyfifteen.4.0.zip\";s:8:\"requires\";s:3:\"4.1\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentyfourteen\";a:6:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:72:\"https://theme-updates.wpengine.com/twentyfourteen/twentyfourteen.4.3.zip\";s:8:\"requires\";s:3:\"3.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:72:\"https://theme-updates.wpengine.com/twentynineteen/twentynineteen.3.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"3.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:74:\"https://theme-updates.wpengine.com/twentyseventeen/twentyseventeen.3.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"3.6\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:70:\"https://theme-updates.wpengine.com/twentysixteen/twentysixteen.3.6.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),
(1780230,'_site_transient_timeout_browser_bf15a31a6d93d2a3b8d556ea28033fd1','1763785376','no'),
(1780231,'_site_transient_browser_bf15a31a6d93d2a3b8d556ea28033fd1','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"113.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),
(1780232,'_transient_timeout_wpseo-statistics-totals','1763266978','no'),
(1780233,'_transient_wpseo-statistics-totals','a:1:{i:2;a:2:{s:6:\"scores\";a:1:{i:0;a:4:{s:8:\"seo_rank\";s:2:\"na\";s:5:\"label\";s:48:\"Posts <strong>without</strong> a focus keyphrase\";s:5:\"count\";i:64;s:4:\"link\";s:108:\"https://activeclubsolutions.net/wp-admin/edit.php?post_status=publish&#038;post_type=post&#038;seo_filter=na\";}}s:8:\"division\";a:5:{s:3:\"bad\";i:0;s:2:\"ok\";i:0;s:4:\"good\";i:0;s:2:\"na\";i:1;s:7:\"noindex\";i:0;}}}','no'),
(1780234,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','no'),
(1780239,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1763191417','no'),
(1780240,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:5:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:6056;s:8:\"installs\";s:8:\"13304760\";s:4:\"link\";s:47:\"https://wordpress.org/plugins/tags/woocommerce/\";}s:6:\"widget\";a:5:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:2790;s:8:\"installs\";s:7:\"4005340\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/widget/\";}s:5:\"admin\";a:5:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:1815;s:8:\"installs\";s:7:\"5504560\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/admin/\";}s:4:\"post\";a:5:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:1621;s:8:\"installs\";s:7:\"1374700\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/post/\";}s:9:\"shortcode\";a:5:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1481;s:8:\"installs\";s:7:\"1879160\";s:4:\"link\";s:45:\"https://wordpress.org/plugins/tags/shortcode/\";}s:3:\"seo\";a:5:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1451;s:8:\"installs\";s:8:\"28277450\";s:4:\"link\";s:39:\"https://wordpress.org/plugins/tags/seo/\";}s:5:\"posts\";a:5:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1343;s:8:\"installs\";s:7:\"2190440\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/posts/\";}s:8:\"comments\";a:5:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1202;s:8:\"installs\";s:7:\"7508880\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/comments/\";}s:9:\"ecommerce\";a:5:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1147;s:8:\"installs\";s:8:\"10951120\";s:4:\"link\";s:45:\"https://wordpress.org/plugins/tags/ecommerce/\";}s:5:\"email\";a:5:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1028;s:8:\"installs\";s:7:\"9829590\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/email/\";}s:5:\"image\";a:5:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1000;s:8:\"installs\";s:7:\"2291790\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/image/\";}s:8:\"security\";a:5:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:998;s:8:\"installs\";s:8:\"29042250\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/security/\";}s:6:\"images\";a:5:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:944;s:8:\"installs\";s:7:\"2834490\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/images/\";}s:5:\"block\";a:5:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:929;s:8:\"installs\";s:7:\"4342280\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/block/\";}s:5:\"login\";a:5:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:916;s:8:\"installs\";s:7:\"5335240\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/login/\";}s:9:\"elementor\";a:5:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:884;s:8:\"installs\";s:8:\"23613130\";s:4:\"link\";s:45:\"https://wordpress.org/plugins/tags/elementor/\";}s:9:\"gutenberg\";a:5:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:880;s:8:\"installs\";s:8:\"21923610\";s:4:\"link\";s:45:\"https://wordpress.org/plugins/tags/gutenberg/\";}s:7:\"gallery\";a:5:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:789;s:8:\"installs\";s:7:\"3844590\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/gallery/\";}s:6:\"google\";a:5:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:786;s:8:\"installs\";s:7:\"8563230\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/google/\";}s:7:\"payment\";a:5:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:786;s:8:\"installs\";s:7:\"1872890\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/payment/\";}s:15:\"payment-gateway\";a:5:{s:4:\"name\";s:15:\"payment-gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:711;s:8:\"installs\";s:6:\"351500\";s:4:\"link\";s:51:\"https://wordpress.org/plugins/tags/payment-gateway/\";}s:2:\"ai\";a:5:{s:4:\"name\";s:2:\"ai\";s:4:\"slug\";s:2:\"ai\";s:5:\"count\";i:705;s:8:\"installs\";s:6:\"734410\";s:4:\"link\";s:38:\"https://wordpress.org/plugins/tags/ai/\";}s:9:\"analytics\";a:5:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:703;s:8:\"installs\";s:8:\"11191890\";s:4:\"link\";s:45:\"https://wordpress.org/plugins/tags/analytics/\";}s:7:\"twitter\";a:5:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:696;s:8:\"installs\";s:6:\"527720\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/twitter/\";}s:6:\"slider\";a:5:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:684;s:8:\"installs\";s:7:\"2847250\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/slider/\";}s:10:\"e-commerce\";a:5:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:657;s:8:\"installs\";s:6:\"406130\";s:4:\"link\";s:46:\"https://wordpress.org/plugins/tags/e-commerce/\";}s:4:\"page\";a:5:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:655;s:8:\"installs\";s:7:\"1336720\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/page/\";}s:7:\"sidebar\";a:5:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:652;s:8:\"installs\";s:6:\"749890\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/sidebar/\";}s:7:\"content\";a:5:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:629;s:8:\"installs\";s:7:\"1320400\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/content/\";}s:4:\"form\";a:5:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:613;s:8:\"installs\";s:7:\"3334190\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/form/\";}s:4:\"spam\";a:5:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:607;s:8:\"installs\";s:8:\"10212510\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/spam/\";}s:5:\"video\";a:5:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:602;s:8:\"installs\";s:6:\"595160\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/video/\";}s:5:\"media\";a:5:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:598;s:8:\"installs\";s:7:\"2216290\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/media/\";}s:6:\"social\";a:5:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:590;s:8:\"installs\";s:6:\"841600\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/social/\";}s:7:\"widgets\";a:5:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:585;s:8:\"installs\";s:7:\"4545860\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/widgets/\";}s:6:\"editor\";a:5:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:578;s:8:\"installs\";s:8:\"29030470\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/editor/\";}s:6:\"search\";a:5:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:569;s:8:\"installs\";s:7:\"1420880\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/search/\";}s:11:\"performance\";a:5:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:561;s:8:\"installs\";s:8:\"22487110\";s:4:\"link\";s:47:\"https://wordpress.org/plugins/tags/performance/\";}s:4:\"menu\";a:5:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:555;s:8:\"installs\";s:7:\"2193950\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/menu/\";}s:12:\"contact-form\";a:5:{s:4:\"name\";s:12:\"contact-form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:553;s:8:\"installs\";s:8:\"26255030\";s:4:\"link\";s:48:\"https://wordpress.org/plugins/tags/contact-form/\";}s:8:\"shipping\";a:5:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:524;s:8:\"installs\";s:6:\"587100\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/shipping/\";}s:10:\"buddypress\";a:5:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:519;s:8:\"installs\";s:6:\"146150\";s:4:\"link\";s:46:\"https://wordpress.org/plugins/tags/buddypress/\";}s:8:\"facebook\";a:5:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:514;s:8:\"installs\";s:7:\"1888660\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/facebook/\";}s:6:\"blocks\";a:5:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:508;s:8:\"installs\";s:7:\"5111930\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/blocks/\";}s:3:\"api\";a:5:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:506;s:8:\"installs\";s:6:\"850160\";s:4:\"link\";s:39:\"https://wordpress.org/plugins/tags/api/\";}s:5:\"links\";a:5:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:505;s:8:\"installs\";s:7:\"1068090\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/links/\";}s:8:\"category\";a:5:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:491;s:8:\"installs\";s:6:\"497220\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/category/\";}s:14:\"contact-form-7\";a:5:{s:4:\"name\";s:14:\"contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:490;s:8:\"installs\";s:7:\"2295080\";s:4:\"link\";s:50:\"https://wordpress.org/plugins/tags/contact-form-7/\";}s:5:\"embed\";a:5:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:481;s:8:\"installs\";s:6:\"572370\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/embed/\";}s:5:\"pages\";a:5:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:467;s:8:\"installs\";s:7:\"1024010\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/pages/\";}s:8:\"payments\";a:5:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:466;s:8:\"installs\";s:7:\"2260680\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/payments/\";}s:4:\"chat\";a:5:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:460;s:8:\"installs\";s:7:\"1571910\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/chat/\";}s:9:\"dashboard\";a:5:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:437;s:8:\"installs\";s:6:\"839430\";s:4:\"link\";s:45:\"https://wordpress.org/plugins/tags/dashboard/\";}s:5:\"forms\";a:5:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:430;s:8:\"installs\";s:7:\"9994690\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/forms/\";}s:10:\"responsive\";a:5:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:428;s:8:\"installs\";s:6:\"577010\";s:4:\"link\";s:46:\"https://wordpress.org/plugins/tags/responsive/\";}s:9:\"marketing\";a:5:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:426;s:8:\"installs\";s:7:\"4262430\";s:4:\"link\";s:45:\"https://wordpress.org/plugins/tags/marketing/\";}s:6:\"events\";a:5:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:415;s:8:\"installs\";s:7:\"1264490\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/events/\";}s:4:\"ajax\";a:5:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:410;s:8:\"installs\";s:6:\"260960\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/ajax/\";}s:5:\"popup\";a:5:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:408;s:8:\"installs\";s:7:\"2767740\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/popup/\";}s:3:\"rss\";a:5:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:408;s:8:\"installs\";s:6:\"320440\";s:4:\"link\";s:39:\"https://wordpress.org/plugins/tags/rss/\";}s:7:\"youtube\";a:5:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:407;s:8:\"installs\";s:6:\"603740\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/youtube/\";}s:8:\"calendar\";a:5:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:403;s:8:\"installs\";s:7:\"1181630\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/calendar/\";}s:8:\"checkout\";a:5:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:401;s:8:\"installs\";s:6:\"275050\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/checkout/\";}s:4:\"feed\";a:5:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:397;s:8:\"installs\";s:6:\"189270\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/feed/\";}s:3:\"css\";a:5:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:396;s:8:\"installs\";s:7:\"3741890\";s:4:\"link\";s:39:\"https://wordpress.org/plugins/tags/css/\";}s:6:\"custom\";a:5:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:389;s:8:\"installs\";s:6:\"697760\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/custom/\";}s:10:\"categories\";a:5:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:383;s:8:\"installs\";s:6:\"524660\";s:4:\"link\";s:46:\"https://wordpress.org/plugins/tags/categories/\";}s:4:\"user\";a:5:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:382;s:8:\"installs\";s:7:\"1075450\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/user/\";}s:7:\"contact\";a:5:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:376;s:8:\"installs\";s:7:\"1100800\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/contact/\";}s:7:\"chatbot\";a:5:{s:4:\"name\";s:7:\"chatbot\";s:4:\"slug\";s:7:\"chatbot\";s:5:\"count\";i:375;s:8:\"installs\";s:6:\"420390\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/chatbot/\";}s:10:\"navigation\";a:5:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:369;s:8:\"installs\";s:7:\"2622850\";s:4:\"link\";s:46:\"https://wordpress.org/plugins/tags/navigation/\";}s:4:\"link\";a:5:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:369;s:8:\"installs\";s:6:\"704170\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/link/\";}s:6:\"jquery\";a:5:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:364;s:8:\"installs\";s:6:\"380350\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/jquery/\";}s:9:\"affiliate\";a:5:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:364;s:8:\"installs\";s:6:\"304850\";s:4:\"link\";s:45:\"https://wordpress.org/plugins/tags/affiliate/\";}s:5:\"users\";a:5:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:352;s:8:\"installs\";s:6:\"609060\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/users/\";}s:5:\"theme\";a:5:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:351;s:8:\"installs\";s:7:\"1547390\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/theme/\";}s:10:\"newsletter\";a:5:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:347;s:8:\"installs\";s:7:\"4631380\";s:4:\"link\";s:46:\"https://wordpress.org/plugins/tags/newsletter/\";}s:6:\"import\";a:5:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:347;s:8:\"installs\";s:7:\"2061360\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/import/\";}s:5:\"cache\";a:5:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:346;s:8:\"installs\";s:7:\"5556650\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/cache/\";}s:10:\"javascript\";a:5:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:345;s:8:\"installs\";s:6:\"668630\";s:4:\"link\";s:46:\"https://wordpress.org/plugins/tags/javascript/\";}s:7:\"gateway\";a:5:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:345;s:8:\"installs\";s:6:\"182630\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/gateway/\";}s:8:\"tracking\";a:5:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:343;s:8:\"installs\";s:6:\"897190\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/tracking/\";}s:8:\"redirect\";a:5:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:342;s:8:\"installs\";s:7:\"3165510\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/redirect/\";}s:12:\"notification\";a:5:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:341;s:8:\"installs\";s:6:\"547440\";s:4:\"link\";s:48:\"https://wordpress.org/plugins/tags/notification/\";}s:7:\"comment\";a:5:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:336;s:8:\"installs\";s:6:\"163080\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/comment/\";}s:9:\"multisite\";a:5:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:333;s:8:\"installs\";s:7:\"1268140\";s:4:\"link\";s:45:\"https://wordpress.org/plugins/tags/multisite/\";}s:4:\"tags\";a:5:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:328;s:8:\"installs\";s:6:\"280680\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/tags/\";}s:13:\"gravity-forms\";a:5:{s:4:\"name\";s:13:\"gravity-forms\";s:4:\"slug\";s:13:\"gravity-forms\";s:5:\"count\";i:315;s:8:\"installs\";s:6:\"375280\";s:4:\"link\";s:49:\"https://wordpress.org/plugins/tags/gravity-forms/\";}s:3:\"ads\";a:5:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:312;s:8:\"installs\";s:7:\"2446360\";s:4:\"link\";s:39:\"https://wordpress.org/plugins/tags/ads/\";}s:5:\"share\";a:5:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:312;s:8:\"installs\";s:6:\"659210\";s:4:\"link\";s:41:\"https://wordpress.org/plugins/tags/share/\";}s:8:\"products\";a:5:{s:4:\"name\";s:8:\"products\";s:4:\"slug\";s:8:\"products\";s:5:\"count\";i:308;s:8:\"installs\";s:6:\"239470\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/products/\";}s:4:\"gdpr\";a:5:{s:4:\"name\";s:4:\"gdpr\";s:4:\"slug\";s:4:\"gdpr\";s:5:\"count\";i:305;s:8:\"installs\";s:7:\"5187470\";s:4:\"link\";s:40:\"https://wordpress.org/plugins/tags/gdpr/\";}s:10:\"automation\";a:5:{s:4:\"name\";s:10:\"automation\";s:4:\"slug\";s:10:\"automation\";s:5:\"count\";i:304;s:8:\"installs\";s:6:\"425790\";s:4:\"link\";s:46:\"https://wordpress.org/plugins/tags/automation/\";}s:6:\"button\";a:5:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:304;s:8:\"installs\";s:6:\"424540\";s:4:\"link\";s:42:\"https://wordpress.org/plugins/tags/button/\";}s:7:\"reviews\";a:5:{s:4:\"name\";s:7:\"reviews\";s:4:\"slug\";s:7:\"reviews\";s:5:\"count\";i:303;s:8:\"installs\";s:7:\"1181170\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/reviews/\";}s:12:\"social-media\";a:5:{s:4:\"name\";s:12:\"social-media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:299;s:8:\"installs\";s:7:\"1254230\";s:4:\"link\";s:48:\"https://wordpress.org/plugins/tags/social-media/\";}s:7:\"product\";a:5:{s:4:\"name\";s:7:\"product\";s:4:\"slug\";s:7:\"product\";s:5:\"count\";i:297;s:8:\"installs\";s:6:\"162350\";s:4:\"link\";s:43:\"https://wordpress.org/plugins/tags/product/\";}s:9:\"live-chat\";a:5:{s:4:\"name\";s:9:\"live-chat\";s:4:\"slug\";s:9:\"live-chat\";s:5:\"count\";i:292;s:8:\"installs\";s:6:\"701010\";s:4:\"link\";s:45:\"https://wordpress.org/plugins/tags/live-chat/\";}s:3:\"acf\";a:5:{s:4:\"name\";s:3:\"acf\";s:4:\"slug\";s:3:\"acf\";s:5:\"count\";i:287;s:8:\"installs\";s:7:\"2740060\";s:4:\"link\";s:39:\"https://wordpress.org/plugins/tags/acf/\";}s:8:\"carousel\";a:5:{s:4:\"name\";s:8:\"carousel\";s:4:\"slug\";s:8:\"carousel\";s:5:\"count\";i:283;s:8:\"installs\";s:6:\"880690\";s:4:\"link\";s:44:\"https://wordpress.org/plugins/tags/carousel/\";}}','no'),
(1780247,'updraftplus_version','1.25.9','yes'),
(1780249,'wpe_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1763180659;s:8:\"response\";a:19:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:59:\"https://plugin-updates.wpengine.com/akismet/akismet.5.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:67:\"https://plugin-updates.wpengine.com/akismet/assets/icon-128x128.png\";s:2:\"2x\";s:67:\"https://plugin-updates.wpengine.com/akismet/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:81:\"https://plugin-updates.wpengine.com/akismet/assets/banner-772x250.png?rev=2900731\";s:4:\"high\";s:82:\"https://plugin-updates.wpengine.com/akismet/assets/banner-1544x500.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"6.9\";s:8:\"requires\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:94;s:11:\"num_ratings\";i:1156;s:15:\"support_threads\";i:2;s:24:\"support_threads_resolved\";i:1;}s:47:\"better-search-replace/better-search-replace.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:35:\"w.org/plugins/better-search-replace\";s:4:\"slug\";s:21:\"better-search-replace\";s:6:\"plugin\";s:47:\"better-search-replace/better-search-replace.php\";s:11:\"new_version\";s:6:\"1.4.10\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/better-search-replace/\";s:7:\"package\";s:94:\"https://wpe-plugin-updates.wpengine.com/better-search-replace/better-search-replace.1.4.10.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:85:\"https://wpe-plugin-updates.wpengine.com/better-search-replace/assets/icon-128x128.png\";s:2:\"2x\";s:85:\"https://wpe-plugin-updates.wpengine.com/better-search-replace/assets/icon-256x256.png\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"6.8\";s:8:\"requires\";s:5:\"3.0.1\";s:12:\"requires_php\";s:0:\"\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:86;s:11:\"num_ratings\";i:526;s:15:\"support_threads\";i:7;s:24:\"support_threads_resolved\";i:1;}s:41:\"better-wp-security/better-wp-security.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:32:\"w.org/plugins/better-wp-security\";s:4:\"slug\";s:18:\"better-wp-security\";s:6:\"plugin\";s:41:\"better-wp-security/better-wp-security.php\";s:11:\"new_version\";s:5:\"9.4.2\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/better-wp-security/\";s:7:\"package\";s:83:\"https://plugin-updates.wpengine.com/better-wp-security/better-wp-security.9.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:70:\"https://plugin-updates.wpengine.com/better-wp-security/assets/icon.svg\";s:3:\"svg\";s:70:\"https://plugin-updates.wpengine.com/better-wp-security/assets/icon.svg\";}s:7:\"banners\";a:2:{s:3:\"low\";s:92:\"https://plugin-updates.wpengine.com/better-wp-security/assets/banner-772x250.png?rev=2980272\";s:4:\"high\";s:93:\"https://plugin-updates.wpengine.com/better-wp-security/assets/banner-1544x500.png?rev=2980272\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.3\";s:8:\"requires\";s:3:\"6.5\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:92;s:11:\"num_ratings\";i:3980;s:15:\"support_threads\";i:16;s:24:\"support_threads_resolved\";i:5;}s:36:\"checkfront-wp-booking/checkfront.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:35:\"w.org/plugins/checkfront-wp-booking\";s:4:\"slug\";s:21:\"checkfront-wp-booking\";s:6:\"plugin\";s:36:\"checkfront-wp-booking/checkfront.php\";s:11:\"new_version\";s:3:\"3.7\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/checkfront-wp-booking/\";s:7:\"package\";s:83:\"https://plugin-updates.wpengine.com/checkfront-wp-booking/checkfront-wp-booking.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:81:\"https://plugin-updates.wpengine.com/checkfront-wp-booking/assets/icon-128x128.png\";s:2:\"2x\";s:81:\"https://plugin-updates.wpengine.com/checkfront-wp-booking/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:95:\"https://plugin-updates.wpengine.com/checkfront-wp-booking/assets/banner-772x250.png?rev=1262751\";s:4:\"high\";s:96:\"https://plugin-updates.wpengine.com/checkfront-wp-booking/assets/banner-1544x500.png?rev=1262751\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.5\";s:8:\"requires\";s:3:\"2.0\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:82;s:11:\"num_ratings\";i:12;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}s:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:5:\"4.5.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:69:\"https://plugin-updates.wpengine.com/duplicate-page/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://plugin-updates.wpengine.com/duplicate-page/assets/icon-128x128.jpg\";}s:7:\"banners\";a:2:{s:3:\"low\";s:88:\"https://plugin-updates.wpengine.com/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.3\";s:8:\"requires\";s:3:\"3.4\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:96;s:11:\"num_ratings\";i:424;s:15:\"support_threads\";i:2;s:24:\"support_threads_resolved\";i:0;}s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:45:\"w.org/plugins/duracelltomi-google-tag-manager\";s:4:\"slug\";s:31:\"duracelltomi-google-tag-manager\";s:6:\"plugin\";s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";s:11:\"new_version\";s:6:\"1.22.1\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/duracelltomi-google-tag-manager/\";s:7:\"package\";s:110:\"https://plugin-updates.wpengine.com/duracelltomi-google-tag-manager/duracelltomi-google-tag-manager.1.22.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:91:\"https://plugin-updates.wpengine.com/duracelltomi-google-tag-manager/assets/icon-128x128.png\";s:2:\"2x\";s:91:\"https://plugin-updates.wpengine.com/duracelltomi-google-tag-manager/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:105:\"https://plugin-updates.wpengine.com/duracelltomi-google-tag-manager/assets/banner-772x250.png?rev=1708451\";s:4:\"high\";s:106:\"https://plugin-updates.wpengine.com/duracelltomi-google-tag-manager/assets/banner-1544x500.png?rev=1708451\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.2\";s:8:\"requires\";s:5:\"3.4.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:11:\"num_ratings\";i:154;s:15:\"support_threads\";i:19;s:24:\"support_threads_resolved\";i:2;}s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:47:\"w.org/plugins/google-analytics-dashboard-for-wp\";s:4:\"slug\";s:33:\"google-analytics-dashboard-for-wp\";s:6:\"plugin\";s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";s:11:\"new_version\";s:6:\"8.10.1\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/\";s:7:\"package\";s:114:\"https://plugin-updates.wpengine.com/google-analytics-dashboard-for-wp/google-analytics-dashboard-for-wp.8.10.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:85:\"https://plugin-updates.wpengine.com/google-analytics-dashboard-for-wp/assets/icon.svg\";s:3:\"svg\";s:85:\"https://plugin-updates.wpengine.com/google-analytics-dashboard-for-wp/assets/icon.svg\";}s:7:\"banners\";a:2:{s:3:\"low\";s:107:\"https://plugin-updates.wpengine.com/google-analytics-dashboard-for-wp/assets/banner-772x250.png?rev=2243446\";s:4:\"high\";s:108:\"https://plugin-updates.wpengine.com/google-analytics-dashboard-for-wp/assets/banner-1544x500.png?rev=2243446\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.3\";s:8:\"requires\";s:5:\"5.6.0\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:50;s:11:\"num_ratings\";i:1546;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}s:36:\"google-sitemap-generator/sitemap.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:38:\"w.org/plugins/google-sitemap-generator\";s:4:\"slug\";s:24:\"google-sitemap-generator\";s:6:\"plugin\";s:36:\"google-sitemap-generator/sitemap.php\";s:11:\"new_version\";s:6:\"4.1.21\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/google-sitemap-generator/\";s:7:\"package\";s:96:\"https://plugin-updates.wpengine.com/google-sitemap-generator/google-sitemap-generator.4.1.21.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:84:\"https://plugin-updates.wpengine.com/google-sitemap-generator/assets/icon-128x128.png\";s:2:\"2x\";s:84:\"https://plugin-updates.wpengine.com/google-sitemap-generator/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:98:\"https://plugin-updates.wpengine.com/google-sitemap-generator/assets/banner-772-250.png?rev=2713572\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"6.8\";s:8:\"requires\";s:3:\"4.6\";s:12:\"requires_php\";s:3:\"5.0\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:96;s:11:\"num_ratings\";i:2217;s:15:\"support_threads\";i:16;s:24:\"support_threads_resolved\";i:3;}s:34:\"header-and-footer-scripts/shfs.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:39:\"w.org/plugins/header-and-footer-scripts\";s:4:\"slug\";s:25:\"header-and-footer-scripts\";s:6:\"plugin\";s:34:\"header-and-footer-scripts/shfs.php\";s:11:\"new_version\";s:5:\"2.2.2\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/header-and-footer-scripts/\";s:7:\"package\";s:97:\"https://plugin-updates.wpengine.com/header-and-footer-scripts/header-and-footer-scripts.2.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:85:\"https://plugin-updates.wpengine.com/header-and-footer-scripts/assets/icon-128x128.png\";s:2:\"2x\";s:85:\"https://plugin-updates.wpengine.com/header-and-footer-scripts/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:99:\"https://plugin-updates.wpengine.com/header-and-footer-scripts/assets/banner-772x250.png?rev=1799457\";s:4:\"high\";s:100:\"https://plugin-updates.wpengine.com/header-and-footer-scripts/assets/banner-1544x500.png?rev=1799457\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.1\";s:8:\"requires\";s:3:\"4.6\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:11:\"num_ratings\";i:56;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}s:31:\"page-links-to/page-links-to.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:27:\"w.org/plugins/page-links-to\";s:4:\"slug\";s:13:\"page-links-to\";s:6:\"plugin\";s:31:\"page-links-to/page-links-to.php\";s:11:\"new_version\";s:5:\"3.3.7\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/page-links-to/\";s:7:\"package\";s:73:\"https://plugin-updates.wpengine.com/page-links-to/page-links-to.3.3.7.zip\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:2:{s:3:\"low\";s:87:\"https://plugin-updates.wpengine.com/page-links-to/assets/banner-772x250.png?rev=1889711\";s:4:\"high\";s:88:\"https://plugin-updates.wpengine.com/page-links-to/assets/banner-1544x500.png?rev=1889711\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.5\";s:8:\"requires\";s:3:\"4.8\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:98;s:11:\"num_ratings\";i:153;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}s:48:\"php-compatibility-checker/wpengine-phpcompat.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:39:\"w.org/plugins/php-compatibility-checker\";s:4:\"slug\";s:25:\"php-compatibility-checker\";s:6:\"plugin\";s:48:\"php-compatibility-checker/wpengine-phpcompat.php\";s:11:\"new_version\";s:5:\"1.6.4\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/php-compatibility-checker/\";s:7:\"package\";s:101:\"https://wpe-plugin-updates.wpengine.com/php-compatibility-checker/php-compatibility-checker.1.6.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:89:\"https://wpe-plugin-updates.wpengine.com/php-compatibility-checker/assets/icon-128x128.png\";s:2:\"2x\";s:89:\"https://wpe-plugin-updates.wpengine.com/php-compatibility-checker/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:80:\"https://ps.w.org/php-compatibility-checker/assets/banner-772x250.png?rev=1446087\";s:4:\"high\";s:81:\"https://ps.w.org/php-compatibility-checker/assets/banner-1544x500.png?rev=1446087\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.5\";s:8:\"requires\";s:3:\"5.6\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:54;s:11:\"num_ratings\";i:129;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}s:39:\"pixelyoursite/facebook-pixel-master.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:27:\"w.org/plugins/pixelyoursite\";s:4:\"slug\";s:13:\"pixelyoursite\";s:6:\"plugin\";s:39:\"pixelyoursite/facebook-pixel-master.php\";s:11:\"new_version\";s:6:\"11.1.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/pixelyoursite/\";s:7:\"package\";s:74:\"https://plugin-updates.wpengine.com/pixelyoursite/pixelyoursite.11.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:73:\"https://plugin-updates.wpengine.com/pixelyoursite/assets/icon-128x128.jpg\";s:2:\"2x\";s:73:\"https://plugin-updates.wpengine.com/pixelyoursite/assets/icon-256x256.jpg\";}s:7:\"banners\";a:2:{s:3:\"low\";s:87:\"https://plugin-updates.wpengine.com/pixelyoursite/assets/banner-772x250.jpg?rev=2163168\";s:4:\"high\";s:88:\"https://plugin-updates.wpengine.com/pixelyoursite/assets/banner-1544x500.jpg?rev=3178123\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.3\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:3:\"5.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:86;s:11:\"num_ratings\";i:248;s:15:\"support_threads\";i:10;s:24:\"support_threads_resolved\";i:3;}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:5:\"5.5.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:69:\"https://plugin-updates.wpengine.com/redirection/redirection.5.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:71:\"https://plugin-updates.wpengine.com/redirection/assets/icon-128x128.jpg\";s:2:\"2x\";s:71:\"https://plugin-updates.wpengine.com/redirection/assets/icon-256x256.jpg\";}s:7:\"banners\";a:2:{s:3:\"low\";s:84:\"https://plugin-updates.wpengine.com/redirection/assets/banner-772x250.jpg?rev=983642\";s:4:\"high\";s:85:\"https://plugin-updates.wpengine.com/redirection/assets/banner-1544x500.jpg?rev=983641\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"6.8\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:88;s:11:\"num_ratings\";i:669;s:15:\"support_threads\";i:22;s:24:\"support_threads_resolved\";i:6;}s:52:\"remove-protected-in-title/remove-protected-title.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:39:\"w.org/plugins/remove-protected-in-title\";s:4:\"slug\";s:25:\"remove-protected-in-title\";s:6:\"plugin\";s:52:\"remove-protected-in-title/remove-protected-title.php\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/remove-protected-in-title/\";s:7:\"package\";s:91:\"https://plugin-updates.wpengine.com/remove-protected-in-title/remove-protected-in-title.zip\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:2:{s:3:\"low\";s:98:\"https://plugin-updates.wpengine.com/remove-protected-in-title/assets/banner-772x250.png?rev=940381\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:6:\"5.6.14\";s:8:\"requires\";s:3:\"2.8\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:100;s:11:\"num_ratings\";i:7;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}s:37:\"tinymce-advanced/tinymce-advanced.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:30:\"w.org/plugins/tinymce-advanced\";s:4:\"slug\";s:16:\"tinymce-advanced\";s:6:\"plugin\";s:37:\"tinymce-advanced/tinymce-advanced.php\";s:11:\"new_version\";s:5:\"5.9.2\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/tinymce-advanced/\";s:7:\"package\";s:79:\"https://plugin-updates.wpengine.com/tinymce-advanced/tinymce-advanced.5.9.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:76:\"https://plugin-updates.wpengine.com/tinymce-advanced/assets/icon-128x128.png\";s:2:\"2x\";s:76:\"https://plugin-updates.wpengine.com/tinymce-advanced/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:90:\"https://plugin-updates.wpengine.com/tinymce-advanced/assets/banner-772x250.png?rev=2390186\";s:4:\"high\";s:91:\"https://plugin-updates.wpengine.com/tinymce-advanced/assets/banner-1544x500.png?rev=2390186\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.1\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:11:\"num_ratings\";i:348;s:15:\"support_threads\";i:7;s:24:\"support_threads_resolved\";i:0;}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-importer\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.9.5\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:83:\"https://plugin-updates.wpengine.com/wordpress-importer/wordpress-importer.0.9.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:70:\"https://plugin-updates.wpengine.com/wordpress-importer/assets/icon.svg\";s:3:\"svg\";s:70:\"https://plugin-updates.wpengine.com/wordpress-importer/assets/icon.svg\";}s:7:\"banners\";a:2:{s:3:\"low\";s:91:\"https://plugin-updates.wpengine.com/wordpress-importer/assets/banner-772x250.png?rev=547654\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.3\";s:8:\"requires\";s:3:\"5.2\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:62;s:11:\"num_ratings\";i:313;s:15:\"support_threads\";i:5;s:24:\"support_threads_resolved\";i:1;}s:22:\"wp-editor/wpeditor.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:23:\"w.org/plugins/wp-editor\";s:4:\"slug\";s:9:\"wp-editor\";s:6:\"plugin\";s:22:\"wp-editor/wpeditor.php\";s:11:\"new_version\";s:7:\"1.2.9.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wp-editor/\";s:7:\"package\";s:67:\"https://plugin-updates.wpengine.com/wp-editor/wp-editor.1.2.9.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:69:\"https://plugin-updates.wpengine.com/wp-editor/assets/icon-128x128.png\";s:2:\"2x\";s:69:\"https://plugin-updates.wpengine.com/wp-editor/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:82:\"https://plugin-updates.wpengine.com/wp-editor/assets/banner-772x250.png?rev=497457\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.2\";s:8:\"requires\";s:3:\"3.9\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:11:\"num_ratings\";i:95;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}s:44:\"wp-native-php-sessions/pantheon-sessions.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:36:\"w.org/plugins/wp-native-php-sessions\";s:4:\"slug\";s:22:\"wp-native-php-sessions\";s:6:\"plugin\";s:44:\"wp-native-php-sessions/pantheon-sessions.php\";s:11:\"new_version\";s:5:\"1.4.4\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/wp-native-php-sessions/\";s:7:\"package\";s:91:\"https://plugin-updates.wpengine.com/wp-native-php-sessions/wp-native-php-sessions.1.4.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:82:\"https://plugin-updates.wpengine.com/wp-native-php-sessions/assets/icon-128x128.png\";s:2:\"2x\";s:82:\"https://plugin-updates.wpengine.com/wp-native-php-sessions/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:96:\"https://plugin-updates.wpengine.com/wp-native-php-sessions/assets/banner-772x250.png?rev=2825514\";s:4:\"high\";s:97:\"https://plugin-updates.wpengine.com/wp-native-php-sessions/assets/banner-1544x500.png?rev=2825514\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.2\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:98;s:11:\"num_ratings\";i:16;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}s:39:\"wp-rss-aggregator/wp-rss-aggregator.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:31:\"w.org/plugins/wp-rss-aggregator\";s:4:\"slug\";s:17:\"wp-rss-aggregator\";s:6:\"plugin\";s:39:\"wp-rss-aggregator/wp-rss-aggregator.php\";s:11:\"new_version\";s:5:\"5.0.6\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/wp-rss-aggregator/\";s:7:\"package\";s:81:\"https://plugin-updates.wpengine.com/wp-rss-aggregator/wp-rss-aggregator.5.0.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:77:\"https://plugin-updates.wpengine.com/wp-rss-aggregator/assets/icon-128x128.gif\";s:2:\"2x\";s:77:\"https://plugin-updates.wpengine.com/wp-rss-aggregator/assets/icon-256x256.gif\";}s:7:\"banners\";a:2:{s:3:\"low\";s:91:\"https://plugin-updates.wpengine.com/wp-rss-aggregator/assets/banner-772x250.png?rev=2987323\";s:4:\"high\";s:92:\"https://plugin-updates.wpengine.com/wp-rss-aggregator/assets/banner-1544x500.png?rev=2987323\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.3\";s:8:\"requires\";s:3:\"5.5\";s:12:\"requires_php\";s:5:\"7.4.0\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:11:\"num_ratings\";i:550;s:15:\"support_threads\";i:20;s:24:\"support_threads_resolved\";i:19;}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"6.1.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:75:\"https://plugin-updates.wpengine.com/contact-form-7/contact-form-7.6.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:66:\"https://plugin-updates.wpengine.com/contact-form-7/assets/icon.svg\";s:3:\"svg\";s:66:\"https://plugin-updates.wpengine.com/contact-form-7/assets/icon.svg\";}s:7:\"banners\";a:2:{s:3:\"low\";s:87:\"https://plugin-updates.wpengine.com/contact-form-7/assets/banner-772x250.png?rev=880427\";s:4:\"high\";s:88:\"https://plugin-updates.wpengine.com/contact-form-7/assets/banner-1544x500.png?rev=860901\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.3\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:80;s:11:\"num_ratings\";i:2141;s:15:\"support_threads\";i:103;s:24:\"support_threads_resolved\";i:41;}s:47:\"really-simple-captcha/really-simple-captcha.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:35:\"w.org/plugins/really-simple-captcha\";s:4:\"slug\";s:21:\"really-simple-captcha\";s:6:\"plugin\";s:47:\"really-simple-captcha/really-simple-captcha.php\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/really-simple-captcha/\";s:7:\"package\";s:87:\"https://plugin-updates.wpengine.com/really-simple-captcha/really-simple-captcha.2.4.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:81:\"https://plugin-updates.wpengine.com/really-simple-captcha/assets/icon-128x128.png\";s:2:\"2x\";s:81:\"https://plugin-updates.wpengine.com/really-simple-captcha/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:94:\"https://plugin-updates.wpengine.com/really-simple-captcha/assets/banner-772x250.png?rev=880406\";s:4:\"high\";s:95:\"https://plugin-updates.wpengine.com/really-simple-captcha/assets/banner-1544x500.png?rev=880406\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.7.1\";s:8:\"requires\";s:3:\"6.6\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:84;s:11:\"num_ratings\";i:127;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:6:\"1.25.9\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:70:\"https://plugin-updates.wpengine.com/updraftplus/updraftplus.1.25.9.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:71:\"https://plugin-updates.wpengine.com/updraftplus/assets/icon-128x128.jpg\";s:2:\"2x\";s:71:\"https://plugin-updates.wpengine.com/updraftplus/assets/icon-256x256.jpg\";}s:7:\"banners\";a:2:{s:3:\"low\";s:85:\"https://plugin-updates.wpengine.com/updraftplus/assets/banner-772x250.png?rev=1686200\";s:4:\"high\";s:86:\"https://plugin-updates.wpengine.com/updraftplus/assets/banner-1544x500.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"6.9\";s:8:\"requires\";s:3:\"3.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:96;s:11:\"num_ratings\";i:8215;s:15:\"support_threads\";i:43;s:24:\"support_threads_resolved\";i:37;}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"26.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:72:\"https://plugin-updates.wpengine.com/wordpress-seo/wordpress-seo.26.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:73:\"https://plugin-updates.wpengine.com/wordpress-seo/assets/icon-128x128.gif\";s:2:\"2x\";s:73:\"https://plugin-updates.wpengine.com/wordpress-seo/assets/icon-256x256.gif\";}s:7:\"banners\";a:2:{s:3:\"low\";s:87:\"https://plugin-updates.wpengine.com/wordpress-seo/assets/banner-772x250.png?rev=3257862\";s:4:\"high\";s:88:\"https://plugin-updates.wpengine.com/wordpress-seo/assets/banner-1544x500.png?rev=3257862\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.3\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:96;s:11:\"num_ratings\";i:27779;s:15:\"support_threads\";i:92;s:24:\"support_threads_resolved\";i:82;}s:25:\"xslt/better-rss-feeds.php\";O:8:\"stdClass\":17:{s:2:\"id\";s:18:\"w.org/plugins/xslt\";s:4:\"slug\";s:4:\"xslt\";s:6:\"plugin\";s:25:\"xslt/better-rss-feeds.php\";s:11:\"new_version\";s:5:\"2.0.1\";s:3:\"url\";s:35:\"https://wordpress.org/plugins/xslt/\";s:7:\"package\";s:49:\"https://plugin-updates.wpengine.com/xslt/xslt.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:64:\"https://plugin-updates.wpengine.com/xslt/assets/icon-128x128.png\";s:2:\"2x\";s:64:\"https://plugin-updates.wpengine.com/xslt/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:78:\"https://plugin-updates.wpengine.com/xslt/assets/banner-772x250.jpg?rev=1296506\";s:4:\"high\";b:0;}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:6:\"5.2.21\";s:8:\"requires\";s:5:\"4.0.0\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:58;s:11:\"num_ratings\";i:19;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;}}}','no'),
(1780250,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-8f51106e85c531abdfef75169b4f12ff\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),
(1780251,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-f0c5b7d313b80abe411aea2c1a233512\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:0:\"\";}}}','yes'),
(1780252,'updraft_s3','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-af90013b689b9e160e0fab96b7781cc7\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(1780253,'updraft_cloudfiles','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-b4e3e02868d638e1b032ffd1d90aa1d8\";a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(1780254,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-58badf3bf1f37b7f842f2a0041bc28ff\";a:4:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";}}}','yes'),
(1780255,'updraft_onedrive','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1780256,'updraft_ftp','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-b6b0b95505093e1cfb8f225212e68284\";a:6:{s:4:\"host\";s:11:\"65.60.38.74\";s:4:\"user\";s:14:\"activ8commerce\";s:4:\"pass\";s:12:\"qvVYkpUc0JO6\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";s:16:\"instance_enabled\";i:1;}}}','yes'),
(1780257,'updraft_azure','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1780258,'updraft_sftp','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1780259,'updraft_googlecloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1780260,'updraft_backblaze','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1780261,'updraft_webdav','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1780262,'updraft_s3generic','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-cfa6c557d33309d0295eaa09b71a0895\";a:6:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";s:19:\"bucket_access_style\";s:10:\"path_style\";s:17:\"signature_version\";s:2:\"v4\";}}}','yes'),
(1780263,'updraft_pcloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(1780264,'updraft_openstack','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-032c3c505cd0fe6550703859c5eaa326\";a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(1780265,'updraft_dreamobjects','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-e87ba3f813abb15e3ef40ba1f50c279f\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:23:\"s3.us-east-005.dream.io\";}}}','yes'),
(1780266,'updraftplus-addons_siteid','42831b931503a1bd56f0aa59f6da802e','no'),
(1780267,'updraftplus_tour_cancelled_on','backup_now','yes'),
(1780268,'updraft_retain_extrarules','a:0:{}','yes'),
(1780269,'updraft_email','','yes'),
(1780270,'updraft_report_warningsonly','a:0:{}','yes'),
(1780271,'updraft_report_wholebackup','a:0:{}','yes'),
(1780272,'updraft_extradbs','a:0:{}','yes'),
(1780273,'updraft_include_more_path','a:0:{}','yes'),
(1780274,'auto_update_plugins','a:0:{}','no'),
(1780275,'updraft_interval','manual','yes'),
(1780276,'updraft_retain','2','yes'),
(1780277,'updraft_interval_database','manual','yes'),
(1780278,'updraft_retain_db','2','yes'),
(1780279,'updraft_service','ftp','yes'),
(1780280,'updraft_include_plugins','1','yes'),
(1780281,'updraft_include_themes','1','yes'),
(1780282,'updraft_include_uploads','1','yes'),
(1780283,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone,snapshots,wp-staging','yes'),
(1780284,'updraft_include_mu-plugins','1','yes'),
(1780285,'updraft_include_others','1','yes'),
(1780286,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),
(1780287,'updraft_split_every','400','yes'),
(1780288,'updraft_delete_local','1','yes'),
(1780289,'updraft_dir','updraft','yes'),
(1780290,'updraft_debug_mode','0','yes'),
(1780291,'updraft_ssl_useservercerts','0','yes'),
(1780292,'updraft_ssl_disableverify','0','yes'),
(1780293,'updraft_ssl_nossl','0','yes'),
(1780294,'updraft_lastmessage','Table wp_options: Total expected rows (via COUNT): 564 (Nov 14 20:25:52)','yes'),
(1780295,'updraftplus_locked_fd','1','no'),
(1780296,'updraftplus_last_lock_time_fd','2025-11-15 04:25:07','no'),
(1780297,'updraftplus_semaphore_fd','1','no'),
(1780298,'updraft_last_scheduled_fd','1763180707','yes'),
(1780300,'updraft_backup_history','a:1:{i:1763180707;a:21:{s:7:\"plugins\";a:1:{i:0;s:80:\"backup_2025-11-14-2025_Winery_POS_Tasting_Room_POS_mobi_516753892fb5-plugins.zip\";}s:12:\"plugins-size\";i:37120019;s:6:\"themes\";a:1:{i:0;s:79:\"backup_2025-11-14-2025_Winery_POS_Tasting_Room_POS_mobi_516753892fb5-themes.zip\";}s:11:\"themes-size\";i:10890583;s:7:\"uploads\";a:2:{i:0;s:80:\"backup_2025-11-14-2025_Winery_POS_Tasting_Room_POS_mobi_516753892fb5-uploads.zip\";i:1;s:81:\"backup_2025-11-14-2025_Winery_POS_Tasting_Room_POS_mobi_516753892fb5-uploads2.zip\";}s:12:\"uploads-size\";i:418012312;s:13:\"uploads1-size\";i:73744832;s:10:\"mu-plugins\";a:1:{i:0;s:83:\"backup_2025-11-14-2025_Winery_POS_Tasting_Room_POS_mobi_516753892fb5-mu-plugins.zip\";}s:15:\"mu-plugins-size\";i:678729;s:6:\"others\";a:1:{i:0;s:79:\"backup_2025-11-14-2025_Winery_POS_Tasting_Room_POS_mobi_516753892fb5-others.zip\";}s:11:\"others-size\";i:311156;s:5:\"nonce\";s:12:\"516753892fb5\";s:7:\"service\";a:1:{i:0;s:3:\"ftp\";}s:20:\"service_instance_ids\";a:1:{s:3:\"ftp\";a:1:{i:0;s:34:\"s-b6b0b95505093e1cfb8f225212e68284\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:5:{s:7:\"plugins\";i:1763180707;s:6:\"themes\";i:1763180721;s:7:\"uploads\";i:1763180724;s:10:\"mu-plugins\";i:1763180750;s:6:\"others\";i:1763180751;}s:18:\"created_by_version\";s:6:\"1.25.9\";s:21:\"last_saved_by_version\";s:6:\"1.25.9\";s:12:\"is_multisite\";b:0;s:2:\"db\";s:74:\"backup_2025-11-14-2025_Winery_POS_Tasting_Room_POS_mobi_516753892fb5-db.gz\";s:7:\"db-size\";i:512634;}}','off'),
(1780301,'updraft_remotesites','','on'),
(1780302,'updraft_migrator_localkeys','','on'),
(1780303,'updraft_central_localkeys','','on'),
(1780305,'updraft_jobdata_8ee93a70dbf8','a:17:{s:8:\"job_type\";s:7:\"restore\";s:11:\"job_time_ms\";d:1763183909.963587;s:16:\"backup_timestamp\";s:10:\"1763151900\";s:12:\"meta_foreign\";s:1:\"0\";s:28:\"updraft_restorer_backup_info\";s:158:\"{\\\"timestamp\\\":1763151900,\\\"created_by_version\\\":\\\"1.25.9\\\",\\\"same_url\\\":true,\\\"url_scheme_change\\\":false,\\\"multisite\\\":false,\\\"php_max_input_vars\\\":\\\"8000\\\"}\";s:32:\"updraft_restorer_restore_options\";a:3:{s:26:\"include_unspecified_tables\";b:0;s:17:\"tables_to_restore\";a:64:{i:0;s:10:\"wp_options\";i:1;s:8:\"wp_users\";i:2;s:11:\"wp_usermeta\";i:3;s:14:\"wp_commentmeta\";i:4;s:11:\"wp_comments\";i:5;s:8:\"wp_links\";i:6;s:11:\"wp_postmeta\";i:7;s:8:\"wp_posts\";i:8;s:21:\"wp_term_relationships\";i:9;s:16:\"wp_term_taxonomy\";i:10;s:11:\"wp_termmeta\";i:11;s:8:\"wp_terms\";i:12;s:18:\"wp_yoast_seo_links\";i:13;s:17:\"wp_yoast_seo_meta\";i:14;s:26:\"wp_actionscheduler_actions\";i:15;s:25:\"wp_actionscheduler_claims\";i:16;s:25:\"wp_actionscheduler_groups\";i:17;s:23:\"wp_actionscheduler_logs\";i:18;s:17:\"wp_itsec_lockouts\";i:19;s:12:\"wp_itsec_log\";i:20;s:13:\"wp_itsec_temp\";i:21;s:25:\"wp_nextend2_image_storage\";i:22;s:27:\"wp_nextend2_section_storage\";i:23;s:35:\"wp_nextend2_smartslider3_generators\";i:24;s:32:\"wp_nextend2_smartslider3_sliders\";i:25;s:37:\"wp_nextend2_smartslider3_sliders_xref\";i:26;s:31:\"wp_nextend2_smartslider3_slides\";i:27;s:20:\"wp_pantheon_sessions\";i:28;s:18:\"wp_redirection_404\";i:29;s:21:\"wp_redirection_groups\";i:30;s:20:\"wp_redirection_items\";i:31;s:19:\"wp_redirection_logs\";i:32;s:12:\"wp_sg_action\";i:33;s:12:\"wp_sg_config\";i:34;s:14:\"wp_sg_schedule\";i:35;s:24:\"wp_wc_admin_note_actions\";i:36;s:17:\"wp_wc_admin_notes\";i:37;s:21:\"wp_wc_category_lookup\";i:38;s:21:\"wp_wc_customer_lookup\";i:39;s:18:\"wp_wc_download_log\";i:40;s:25:\"wp_wc_order_coupon_lookup\";i:41;s:26:\"wp_wc_order_product_lookup\";i:42;s:17:\"wp_wc_order_stats\";i:43;s:22:\"wp_wc_order_tax_lookup\";i:44;s:25:\"wp_wc_product_meta_lookup\";i:45;s:20:\"wp_wc_reserved_stock\";i:46;s:22:\"wp_wc_tax_rate_classes\";i:47;s:14:\"wp_wc_webhooks\";i:48;s:23:\"wp_woocommerce_api_keys\";i:49;s:35:\"wp_woocommerce_attribute_taxonomies\";i:50;s:47:\"wp_woocommerce_downloadable_product_permissions\";i:51;s:18:\"wp_woocommerce_log\";i:52;s:29:\"wp_woocommerce_order_itemmeta\";i:53;s:26:\"wp_woocommerce_order_items\";i:54;s:32:\"wp_woocommerce_payment_tokenmeta\";i:55;s:29:\"wp_woocommerce_payment_tokens\";i:56;s:23:\"wp_woocommerce_sessions\";i:57;s:38:\"wp_woocommerce_shipping_zone_locations\";i:58;s:36:\"wp_woocommerce_shipping_zone_methods\";i:59;s:29:\"wp_woocommerce_shipping_zones\";i:60;s:33:\"wp_woocommerce_tax_rate_locations\";i:61;s:24:\"wp_woocommerce_tax_rates\";i:62;s:20:\"wp_wpeditor_settings\";i:63;s:13:\"wp_wprss_logs\";}s:14:\"tables_to_skip\";a:0:{}}s:15:\"updraft_restore\";a:6:{i:0;s:7:\"plugins\";i:1;s:6:\"themes\";i:2;s:7:\"uploads\";i:3;s:10:\"mu-plugins\";i:4;s:6:\"others\";i:5;s:2:\"db\";}s:15:\"restore_options\";a:6:{s:26:\"include_unspecified_tables\";b:0;s:17:\"tables_to_restore\";a:64:{i:0;s:10:\"wp_options\";i:1;s:8:\"wp_users\";i:2;s:11:\"wp_usermeta\";i:3;s:14:\"wp_commentmeta\";i:4;s:11:\"wp_comments\";i:5;s:8:\"wp_links\";i:6;s:11:\"wp_postmeta\";i:7;s:8:\"wp_posts\";i:8;s:21:\"wp_term_relationships\";i:9;s:16:\"wp_term_taxonomy\";i:10;s:11:\"wp_termmeta\";i:11;s:8:\"wp_terms\";i:12;s:18:\"wp_yoast_seo_links\";i:13;s:17:\"wp_yoast_seo_meta\";i:14;s:26:\"wp_actionscheduler_actions\";i:15;s:25:\"wp_actionscheduler_claims\";i:16;s:25:\"wp_actionscheduler_groups\";i:17;s:23:\"wp_actionscheduler_logs\";i:18;s:17:\"wp_itsec_lockouts\";i:19;s:12:\"wp_itsec_log\";i:20;s:13:\"wp_itsec_temp\";i:21;s:25:\"wp_nextend2_image_storage\";i:22;s:27:\"wp_nextend2_section_storage\";i:23;s:35:\"wp_nextend2_smartslider3_generators\";i:24;s:32:\"wp_nextend2_smartslider3_sliders\";i:25;s:37:\"wp_nextend2_smartslider3_sliders_xref\";i:26;s:31:\"wp_nextend2_smartslider3_slides\";i:27;s:20:\"wp_pantheon_sessions\";i:28;s:18:\"wp_redirection_404\";i:29;s:21:\"wp_redirection_groups\";i:30;s:20:\"wp_redirection_items\";i:31;s:19:\"wp_redirection_logs\";i:32;s:12:\"wp_sg_action\";i:33;s:12:\"wp_sg_config\";i:34;s:14:\"wp_sg_schedule\";i:35;s:24:\"wp_wc_admin_note_actions\";i:36;s:17:\"wp_wc_admin_notes\";i:37;s:21:\"wp_wc_category_lookup\";i:38;s:21:\"wp_wc_customer_lookup\";i:39;s:18:\"wp_wc_download_log\";i:40;s:25:\"wp_wc_order_coupon_lookup\";i:41;s:26:\"wp_wc_order_product_lookup\";i:42;s:17:\"wp_wc_order_stats\";i:43;s:22:\"wp_wc_order_tax_lookup\";i:44;s:25:\"wp_wc_product_meta_lookup\";i:45;s:20:\"wp_wc_reserved_stock\";i:46;s:22:\"wp_wc_tax_rate_classes\";i:47;s:14:\"wp_wc_webhooks\";i:48;s:23:\"wp_woocommerce_api_keys\";i:49;s:35:\"wp_woocommerce_attribute_taxonomies\";i:50;s:47:\"wp_woocommerce_downloadable_product_permissions\";i:51;s:18:\"wp_woocommerce_log\";i:52;s:29:\"wp_woocommerce_order_itemmeta\";i:53;s:26:\"wp_woocommerce_order_items\";i:54;s:32:\"wp_woocommerce_payment_tokenmeta\";i:55;s:29:\"wp_woocommerce_payment_tokens\";i:56;s:23:\"wp_woocommerce_sessions\";i:57;s:38:\"wp_woocommerce_shipping_zone_locations\";i:58;s:36:\"wp_woocommerce_shipping_zone_methods\";i:59;s:29:\"wp_woocommerce_shipping_zones\";i:60;s:33:\"wp_woocommerce_tax_rate_locations\";i:61;s:24:\"wp_woocommerce_tax_rates\";i:62;s:20:\"wp_wpeditor_settings\";i:63;s:13:\"wp_wprss_logs\";}s:14:\"tables_to_skip\";a:0:{}s:24:\"updraft_encryptionphrase\";s:0:\"\";s:39:\"updraft_restorer_wpcore_includewpconfig\";b:0;s:33:\"updraft_incremental_restore_point\";i:-1;}s:20:\"second_loop_entities\";a:0:{}s:24:\"temp_import_table_prefix\";s:3:\"zk_\";s:23:\"last_processed_db_table\";s:13:\"wp_wprss_logs\";s:43:\"last_index_ecefa20c54327fc34da6c4135a9d92a9\";a:3:{s:5:\"index\";i:210;s:4:\"info\";a:8:{s:4:\"name\";s:50:\"mu-plugins/wpengine-common/js/wpe-cache-request.js\";s:5:\"index\";i:210;s:3:\"crc\";i:1552150916;s:4:\"size\";i:2776;s:5:\"mtime\";i:1762286294;s:9:\"comp_size\";i:893;s:11:\"comp_method\";i:8;s:17:\"encryption_method\";i:0;}s:12:\"size_written\";i:1130027;}s:43:\"last_index_32556053dc46e64b4200cd474752ae42\";a:3:{s:5:\"index\";i:10449;s:4:\"info\";a:8:{s:4:\"name\";s:43:\"plugins/duplicate-page/js/duplicate_page.js\";s:5:\"index\";i:10449;s:3:\"crc\";i:3378973620;s:4:\"size\";i:564;s:5:\"mtime\";i:1589836106;s:9:\"comp_size\";i:256;s:11:\"comp_method\";i:8;s:17:\"encryption_method\";i:0;}s:12:\"size_written\";i:101902242;}s:43:\"last_index_b311b6b2c12a48e12140d9eaefbb80c2\";a:3:{s:5:\"index\";i:1326;s:4:\"info\";a:8:{s:4:\"name\";s:31:\"themes/twentysixteen/header.php\";s:5:\"index\";i:1326;s:3:\"crc\";i:940352272;s:4:\"size\";i:4183;s:5:\"mtime\";i:1527458178;s:9:\"comp_size\";i:1355;s:11:\"comp_method\";i:8;s:17:\"encryption_method\";i:0;}s:12:\"size_written\";i:21481263;}s:43:\"last_index_031f75671f4f2da6550042f70a788a8c\";a:3:{s:5:\"index\";i:3491;s:4:\"info\";a:8:{s:4:\"name\";s:45:\"uploads/2023/11/Untitled-design-7-666x783.png\";s:5:\"index\";i:3491;s:3:\"crc\";i:848412914;s:4:\"size\";i:118378;s:5:\"mtime\";i:1699648772;s:9:\"comp_size\";i:118378;s:11:\"comp_method\";i:0;s:17:\"encryption_method\";i:0;}s:12:\"size_written\";i:417480610;}s:43:\"last_index_266d0775cfaf84384d4e035e5e6cbfcb\";a:3:{s:5:\"index\";i:279;s:4:\"info\";a:8:{s:4:\"name\";s:45:\"uploads/woocommerce-placeholder-1024x1024.png\";s:5:\"index\";i:279;s:3:\"crc\";i:504193059;s:4:\"size\";i:92539;s:5:\"mtime\";i:1597173560;s:9:\"comp_size\";i:92539;s:11:\"comp_method\";i:0;s:17:\"encryption_method\";i:0;}s:12:\"size_written\";i:73699754;}s:43:\"last_index_9edde43a6f512068c31653a13efa22bc\";a:3:{s:5:\"index\";i:39;s:4:\"info\";a:8:{s:4:\"name\";s:52:\"cache.bak/nextend/notweb/n2-ss-4/variations.manifest\";s:5:\"index\";i:39;s:3:\"crc\";i:2212294583;s:4:\"size\";i:1;s:5:\"mtime\";i:1533005186;s:9:\"comp_size\";i:1;s:11:\"comp_method\";i:0;s:17:\"encryption_method\";i:0;}s:12:\"size_written\";i:9734677;}}','off'),
(1780306,'_site_transient_timeout_wp_theme_files_patterns-53a027071577cd69cee2b42c6cbb61f6','1763185830','off'),
(1780307,'_site_transient_wp_theme_files_patterns-53a027071577cd69cee2b42c6cbb61f6','a:2:{s:7:\"version\";s:3:\"1.0\";s:8:\"patterns\";a:0:{}}','off'),
(1780308,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"8c7d46a72d7d4591fc1dd9485bedb304\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),
(1780309,'_site_transient_timeout_wp_theme_files_patterns-54ab3ce09b62f3ef436784cfb0ce9ea0','1763186140','off'),
(1780310,'_site_transient_wp_theme_files_patterns-54ab3ce09b62f3ef436784cfb0ce9ea0','a:2:{s:7:\"version\";b:0;s:8:\"patterns\";a:0:{}}','off'),
(1780311,'recovery_mode_email_last_sent','1763184340','auto'),
(1780312,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.8.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.8.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.3\";s:7:\"version\";s:5:\"6.8.3\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1763184603;s:15:\"version_checked\";s:5:\"6.8.3\";s:12:\"translations\";a:0:{}}','off'),
(1780313,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1763184603;s:8:\"response\";a:22:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";s:6:\"tested\";s:3:\"6.9\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:47:\"better-search-replace/better-search-replace.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/better-search-replace\";s:4:\"slug\";s:21:\"better-search-replace\";s:6:\"plugin\";s:47:\"better-search-replace/better-search-replace.php\";s:11:\"new_version\";s:6:\"1.4.10\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/better-search-replace/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/better-search-replace.1.4.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/better-search-replace/assets/icon-256x256.png?rev=2706527\";s:2:\"1x\";s:74:\"https://ps.w.org/better-search-replace/assets/icon-128x128.png?rev=2706527\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/better-search-replace/assets/banner-1544x500.png?rev=2706527\";s:2:\"1x\";s:76:\"https://ps.w.org/better-search-replace/assets/banner-772x250.jpg?rev=2706527\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:36:\"checkfront-wp-booking/checkfront.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/checkfront-wp-booking\";s:4:\"slug\";s:21:\"checkfront-wp-booking\";s:6:\"plugin\";s:36:\"checkfront-wp-booking/checkfront.php\";s:11:\"new_version\";s:3:\"3.7\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/checkfront-wp-booking/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/checkfront-wp-booking.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/checkfront-wp-booking/assets/icon-256x256.png?rev=992946\";s:2:\"1x\";s:73:\"https://ps.w.org/checkfront-wp-booking/assets/icon-128x128.png?rev=992946\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/checkfront-wp-booking/assets/banner-1544x500.png?rev=1262751\";s:2:\"1x\";s:76:\"https://ps.w.org/checkfront-wp-booking/assets/banner-772x250.png?rev=1262751\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"2.0\";s:6:\"tested\";s:5:\"6.4.7\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"6.1.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.6.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.7\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:5:\"4.5.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:47:\"w.org/plugins/google-analytics-dashboard-for-wp\";s:4:\"slug\";s:33:\"google-analytics-dashboard-for-wp\";s:6:\"plugin\";s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";s:11:\"new_version\";s:6:\"8.10.1\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/google-analytics-dashboard-for-wp/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/google-analytics-dashboard-for-wp.8.10.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:78:\"https://ps.w.org/google-analytics-dashboard-for-wp/assets/icon.svg?rev=2243225\";s:3:\"svg\";s:78:\"https://ps.w.org/google-analytics-dashboard-for-wp/assets/icon.svg?rev=2243225\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:89:\"https://ps.w.org/google-analytics-dashboard-for-wp/assets/banner-1544x500.png?rev=2243446\";s:2:\"1x\";s:88:\"https://ps.w.org/google-analytics-dashboard-for-wp/assets/banner-772x250.png?rev=2243446\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"5.6.0\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:45:\"w.org/plugins/duracelltomi-google-tag-manager\";s:4:\"slug\";s:31:\"duracelltomi-google-tag-manager\";s:6:\"plugin\";s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";s:11:\"new_version\";s:6:\"1.22.1\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/duracelltomi-google-tag-manager/\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/plugin/duracelltomi-google-tag-manager.1.22.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-256x256.png?rev=1708451\";s:2:\"1x\";s:84:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/icon-128x128.png?rev=1708451\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-1544x500.png?rev=1708451\";s:2:\"1x\";s:86:\"https://ps.w.org/duracelltomi-google-tag-manager/assets/banner-772x250.png?rev=1708451\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.4.0\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:21:\"<p>Bugfix release</p>\";}s:36:\"google-sitemap-generator/sitemap.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:38:\"w.org/plugins/google-sitemap-generator\";s:4:\"slug\";s:24:\"google-sitemap-generator\";s:6:\"plugin\";s:36:\"google-sitemap-generator/sitemap.php\";s:11:\"new_version\";s:6:\"4.1.21\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/google-sitemap-generator/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.21.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/google-sitemap-generator/assets/icon-256x256.png?rev=2713572\";s:2:\"1x\";s:77:\"https://ps.w.org/google-sitemap-generator/assets/icon-128x128.png?rev=2713572\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/google-sitemap-generator/assets/banner-772-250.png?rev=2713572\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"5.0\";s:16:\"requires_plugins\";a:0:{}}s:34:\"header-and-footer-scripts/shfs.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:39:\"w.org/plugins/header-and-footer-scripts\";s:4:\"slug\";s:25:\"header-and-footer-scripts\";s:6:\"plugin\";s:34:\"header-and-footer-scripts/shfs.php\";s:11:\"new_version\";s:5:\"2.2.2\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/header-and-footer-scripts/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/header-and-footer-scripts.2.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/header-and-footer-scripts/assets/icon-256x256.png?rev=1799457\";s:2:\"1x\";s:78:\"https://ps.w.org/header-and-footer-scripts/assets/icon-128x128.png?rev=1799457\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/header-and-footer-scripts/assets/banner-1544x500.png?rev=1799457\";s:2:\"1x\";s:80:\"https://ps.w.org/header-and-footer-scripts/assets/banner-772x250.png?rev=1799457\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.7.4\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:41:\"better-wp-security/better-wp-security.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:32:\"w.org/plugins/better-wp-security\";s:4:\"slug\";s:18:\"better-wp-security\";s:6:\"plugin\";s:41:\"better-wp-security/better-wp-security.php\";s:11:\"new_version\";s:5:\"9.4.2\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/better-wp-security/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/better-wp-security.9.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:63:\"https://ps.w.org/better-wp-security/assets/icon.svg?rev=2980272\";s:3:\"svg\";s:63:\"https://ps.w.org/better-wp-security/assets/icon.svg?rev=2980272\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/better-wp-security/assets/banner-1544x500.png?rev=2980272\";s:2:\"1x\";s:73:\"https://ps.w.org/better-wp-security/assets/banner-772x250.png?rev=2980272\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:44:\"wp-native-php-sessions/pantheon-sessions.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:36:\"w.org/plugins/wp-native-php-sessions\";s:4:\"slug\";s:22:\"wp-native-php-sessions\";s:6:\"plugin\";s:44:\"wp-native-php-sessions/pantheon-sessions.php\";s:11:\"new_version\";s:5:\"1.4.4\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/wp-native-php-sessions/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/wp-native-php-sessions.1.4.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/wp-native-php-sessions/assets/icon-256x256.png?rev=2825514\";s:2:\"1x\";s:75:\"https://ps.w.org/wp-native-php-sessions/assets/icon-128x128.png?rev=2825514\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/wp-native-php-sessions/assets/banner-1544x500.png?rev=2825514\";s:2:\"1x\";s:77:\"https://ps.w.org/wp-native-php-sessions/assets/banner-772x250.png?rev=2825514\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:31:\"page-links-to/page-links-to.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/page-links-to\";s:4:\"slug\";s:13:\"page-links-to\";s:6:\"plugin\";s:31:\"page-links-to/page-links-to.php\";s:11:\"new_version\";s:5:\"3.3.7\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/page-links-to/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/page-links-to.3.3.7.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://s.w.org/plugins/geopattern-icon/page-links-to_fafafa.svg\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/page-links-to/assets/banner-1544x500.png?rev=1889711\";s:2:\"1x\";s:68:\"https://ps.w.org/page-links-to/assets/banner-772x250.png?rev=1889711\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";s:6:\"tested\";s:5:\"6.4.7\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:48:\"php-compatibility-checker/wpengine-phpcompat.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:39:\"w.org/plugins/php-compatibility-checker\";s:4:\"slug\";s:25:\"php-compatibility-checker\";s:6:\"plugin\";s:48:\"php-compatibility-checker/wpengine-phpcompat.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/php-compatibility-checker/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/php-compatibility-checker.1.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/php-compatibility-checker/assets/icon-256x256.png?rev=1446087\";s:2:\"1x\";s:78:\"https://ps.w.org/php-compatibility-checker/assets/icon-128x128.png?rev=1446087\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/php-compatibility-checker/assets/banner-1544x500.png?rev=1446087\";s:2:\"1x\";s:80:\"https://ps.w.org/php-compatibility-checker/assets/banner-772x250.png?rev=1446087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:5:\"6.4.7\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:39:\"pixelyoursite/facebook-pixel-master.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/pixelyoursite\";s:4:\"slug\";s:13:\"pixelyoursite\";s:6:\"plugin\";s:39:\"pixelyoursite/facebook-pixel-master.php\";s:11:\"new_version\";s:6:\"11.1.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/pixelyoursite/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/pixelyoursite.11.1.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/pixelyoursite/assets/icon-256x256.jpg?rev=3178123\";s:2:\"1x\";s:66:\"https://ps.w.org/pixelyoursite/assets/icon-128x128.jpg?rev=2163168\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/pixelyoursite/assets/banner-1544x500.jpg?rev=3178123\";s:2:\"1x\";s:68:\"https://ps.w.org/pixelyoursite/assets/banner-772x250.jpg?rev=2163168\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"5.4\";s:16:\"requires_plugins\";a:0:{}}s:47:\"really-simple-captcha/really-simple-captcha.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/really-simple-captcha\";s:4:\"slug\";s:21:\"really-simple-captcha\";s:6:\"plugin\";s:47:\"really-simple-captcha/really-simple-captcha.php\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/really-simple-captcha/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/really-simple-captcha.2.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/really-simple-captcha/assets/icon-256x256.png?rev=1047241\";s:2:\"1x\";s:74:\"https://ps.w.org/really-simple-captcha/assets/icon-128x128.png?rev=1047241\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/really-simple-captcha/assets/banner-1544x500.png?rev=880406\";s:2:\"1x\";s:75:\"https://ps.w.org/really-simple-captcha/assets/banner-772x250.png?rev=880406\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.7.4\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:5:\"5.5.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redirection.5.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.4\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:52:\"remove-protected-in-title/remove-protected-title.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:39:\"w.org/plugins/remove-protected-in-title\";s:4:\"slug\";s:25:\"remove-protected-in-title\";s:6:\"plugin\";s:52:\"remove-protected-in-title/remove-protected-title.php\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/remove-protected-in-title/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/remove-protected-in-title.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:76:\"https://s.w.org/plugins/geopattern-icon/remove-protected-in-title_21759b.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/remove-protected-in-title/assets/banner-772x250.png?rev=940381\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"2.8\";s:6:\"tested\";s:6:\"5.6.16\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:37:\"tinymce-advanced/tinymce-advanced.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:30:\"w.org/plugins/tinymce-advanced\";s:4:\"slug\";s:16:\"tinymce-advanced\";s:6:\"plugin\";s:37:\"tinymce-advanced/tinymce-advanced.php\";s:11:\"new_version\";s:5:\"5.9.2\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/tinymce-advanced/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/tinymce-advanced.5.9.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/tinymce-advanced/assets/icon-256x256.png?rev=971511\";s:2:\"1x\";s:68:\"https://ps.w.org/tinymce-advanced/assets/icon-128x128.png?rev=971511\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/tinymce-advanced/assets/banner-1544x500.png?rev=2390186\";s:2:\"1x\";s:71:\"https://ps.w.org/tinymce-advanced/assets/banner-772x250.png?rev=2390186\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:32:\"w.org/plugins/wordpress-importer\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.9.5\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.9.5.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=2791650\";s:3:\"svg\";s:63:\"https://ps.w.org/wordpress-importer/assets/icon.svg?rev=2791650\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-importer/assets/banner-772x250.png?rev=547654\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.2\";s:16:\"requires_plugins\";a:0:{}}s:22:\"wp-editor/wpeditor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/wp-editor\";s:4:\"slug\";s:9:\"wp-editor\";s:6:\"plugin\";s:22:\"wp-editor/wpeditor.php\";s:11:\"new_version\";s:7:\"1.2.9.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wp-editor/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-editor.1.2.9.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/wp-editor/assets/icon-256x256.png?rev=1184262\";s:2:\"1x\";s:62:\"https://ps.w.org/wp-editor/assets/icon-128x128.png?rev=1184262\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/wp-editor/assets/banner-772x250.png?rev=497457\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.9\";s:6:\"tested\";s:5:\"6.7.4\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:39:\"wp-rss-aggregator/wp-rss-aggregator.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:31:\"w.org/plugins/wp-rss-aggregator\";s:4:\"slug\";s:17:\"wp-rss-aggregator\";s:6:\"plugin\";s:39:\"wp-rss-aggregator/wp-rss-aggregator.php\";s:11:\"new_version\";s:5:\"5.0.6\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/wp-rss-aggregator/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/wp-rss-aggregator.5.0.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/wp-rss-aggregator/assets/icon-256x256.gif?rev=3157090\";s:2:\"1x\";s:70:\"https://ps.w.org/wp-rss-aggregator/assets/icon-128x128.gif?rev=3157091\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wp-rss-aggregator/assets/banner-1544x500.png?rev=2987323\";s:2:\"1x\";s:72:\"https://ps.w.org/wp-rss-aggregator/assets/banner-772x250.png?rev=2987323\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:5:\"7.4.0\";s:16:\"requires_plugins\";a:0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"26.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.26.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.gif?rev=3112542\";s:2:\"1x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-128x128.gif?rev=3112542\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=3257862\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=3257862\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=3257862\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=3257862\";}s:8:\"requires\";s:3:\"6.7\";s:6:\"tested\";s:5:\"6.8.3\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{s:25:\"xslt/better-rss-feeds.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:18:\"w.org/plugins/xslt\";s:4:\"slug\";s:4:\"xslt\";s:6:\"plugin\";s:25:\"xslt/better-rss-feeds.php\";s:11:\"new_version\";s:5:\"2.0.1\";s:3:\"url\";s:35:\"https://wordpress.org/plugins/xslt/\";s:7:\"package\";s:47:\"https://downloads.wordpress.org/plugin/xslt.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:57:\"https://ps.w.org/xslt/assets/icon-256x256.png?rev=1296506\";s:2:\"1x\";s:57:\"https://ps.w.org/xslt/assets/icon-128x128.png?rev=1296507\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:59:\"https://ps.w.org/xslt/assets/banner-772x250.jpg?rev=1296506\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.0.0\";}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:6:\"1.25.9\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/updraftplus.1.25.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200\";s:2:\"1x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200\";s:2:\"1x\";s:66:\"https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.2\";}}s:7:\"checked\";a:31:{s:36:\"active8-commerce/activ8-commerce.php\";s:3:\"9.0\";s:19:\"akismet/akismet.php\";s:5:\"4.1.3\";s:25:\"xslt/better-rss-feeds.php\";s:5:\"2.0.1\";s:47:\"better-search-replace/better-search-replace.php\";s:5:\"1.3.3\";s:36:\"checkfront-wp-booking/checkfront.php\";s:3:\"3.5\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.1.4\";s:32:\"duplicate-page/duplicatepage.php\";s:3:\"4.2\";s:34:\"envato-wordpress-toolkit/index.php\";s:5:\"1.7.3\";s:55:\"easy-pie-maintenance-mode/easy-pie-maintenance-mode.php\";s:5:\"1.0.1\";s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";s:5:\"5.3.9\";s:81:\"duracelltomi-google-tag-manager/duracelltomi-google-tag-manager-for-wordpress.php\";s:6:\"1.12.3\";s:36:\"google-sitemap-generator/sitemap.php\";s:5:\"4.1.0\";s:34:\"header-and-footer-scripts/shfs.php\";s:5:\"2.2.1\";s:47:\"hubspot-tracking-code/hubspot-tracking-code.php\";s:5:\"1.2.2\";s:41:\"better-wp-security/better-wp-security.php\";s:5:\"7.4.1\";s:44:\"wp-native-php-sessions/pantheon-sessions.php\";s:5:\"0.9.0\";s:31:\"page-links-to/page-links-to.php\";s:5:\"3.1.2\";s:48:\"php-compatibility-checker/wpengine-phpcompat.php\";s:5:\"1.5.0\";s:39:\"pixelyoursite/facebook-pixel-master.php\";s:5:\"7.1.3\";s:31:\"portfolio-x-pro/portfolio-x.php\";s:3:\"3.2\";s:47:\"really-simple-captcha/really-simple-captcha.php\";s:5:\"2.0.2\";s:27:\"redirection/redirection.php\";s:5:\"5.1.3\";s:52:\"remove-protected-in-title/remove-protected-title.php\";s:3:\"3.0\";s:55:\"nextend-smart-slider3-pro/nextend-smart-slider3-pro.php\";s:6:\"3.3.11\";s:37:\"tinymce-advanced/tinymce-advanced.php\";s:5:\"5.2.1\";s:27:\"updraftplus/updraftplus.php\";s:6:\"1.25.9\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.4\";s:22:\"wp-editor/wpeditor.php\";s:7:\"1.2.6.3\";s:49:\"wpe-advanced-cache-options/wpe-advanced-cache.php\";s:5:\"1.3.3\";s:39:\"wp-rss-aggregator/wp-rss-aggregator.php\";s:4:\"4.16\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"12.4\";}}','off'),
(1780314,'_site_transient_timeout_theme_roots','1763186403','off'),
(1780315,'_site_transient_theme_roots','a:6:{s:11:\"active-club\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','off'),
(1780316,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1763184603;s:7:\"checked\";a:6:{s:11:\"active-club\";s:3:\"1.0\";s:13:\"twentyfifteen\";s:3:\"2.0\";s:14:\"twentyfourteen\";s:3:\"2.2\";s:14:\"twentynineteen\";s:3:\"1.0\";s:15:\"twentyseventeen\";s:3:\"1.6\";s:13:\"twentysixteen\";s:3:\"1.5\";}s:8:\"response\";a:5:{s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"4.0\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.4.0.zip\";s:8:\"requires\";s:3:\"4.1\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentyfourteen\";a:6:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.4.3.zip\";s:8:\"requires\";s:3:\"3.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.3.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"3.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.3.9.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"3.6\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.3.6.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','off'),
(1780317,'can_compress_scripts','1','on');
/*!40000 ALTER TABLE `wpqk_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_pantheon_sessions`
--

DROP TABLE IF EXISTS `wpqk_pantheon_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_pantheon_sessions` (
  `user_id` bigint(20) unsigned NOT NULL COMMENT 'The user_id corresponding to a session, or 0 for anonymous user.',
  `session_id` varchar(128) NOT NULL DEFAULT '' COMMENT 'A session ID. The value is generated by plugin''s session handlers.',
  `secure_session_id` varchar(128) NOT NULL DEFAULT '' COMMENT 'Secure session ID. The value is generated by plugin''s session handlers.',
  `ip_address` varchar(128) NOT NULL DEFAULT '' COMMENT 'The IP address that last used this session ID.',
  `datetime` datetime DEFAULT NULL COMMENT 'The datetime value when this session last requested a page. Old records are purged by PHP automatically.',
  `data` blob DEFAULT NULL COMMENT 'The serialized contents of $_SESSION, an array of name/value pairs that persists across page requests by this session ID. Plugin loads $_SESSION from here at the start of each request and saves it at the end.',
  KEY `session_id` (`session_id`),
  KEY `secure_session_id` (`secure_session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_pantheon_sessions`
--

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

--
-- Table structure for table `wpqk_postmeta`
--

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

--
-- Dumping data for table `wpqk_postmeta`
--

LOCK TABLES `wpqk_postmeta` WRITE;
/*!40000 ALTER TABLE `wpqk_postmeta` DISABLE KEYS */;
INSERT INTO `wpqk_postmeta` VALUES
(2,4,'_wp_attached_file','2014/05/logo-500.png'),
(3,4,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:243;s:4:\"file\";s:20:\"2014/05/logo-500.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"logo-500-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo-500-300x145.png\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(4,4,'_wp_attachment_image_alt','active club solutions wine club management and ecommerce for wineries and vineyards'),
(5,5,'_form','<p>Name (required)<br>\n    [text* your-name] </p>\n\n<p>Email (required)<br>\n    [email* your-email] </p>\n\n<p>Phone (required)<br>\n    [text* phone]</p>\n\n<p>Subject<br>\n    [text subject]</p>\n\n<p>Message<br>\n    [text message]</p>\n\nInput this code: <br>[captchac captcha-118 size:l fg:#3a92aa bg:#ffffff]\n[captchar captcha-118 4/4]\n\n<p>[submit \"Send\"]</p>'),
(6,5,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:42:\"Active Club Solutions: Request for Contact\";s:6:\"sender\";s:49:\"[_site_title] <wordpress@activeclubsolutions.net>\";s:9:\"recipient\";s:29:\"sales@activeclubsolutions.net\";s:4:\"body\";s:334:\"<span style=\"font-family: Calibri; font-size: 18px;\">\n\nFrom: [your-name] <[your-email]>\n\nEmail: [your-email]\n\nPhone: [phone]\n\nSubject: [subject]\n\nMessage:\n\n[message]\n\n<hr>\n\nThis e-mail was sent from the ActiveClubSolutions.com \"Contact Us\" form\n\n<img src=\"http://secureclub.net/images/activeclubmgmt/Signupinwinery150.png\" />\n\n</span>\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:1;s:13:\"exclude_blank\";b:0;}'),
(7,5,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(8,5,'_messages','a:23:{s:12:\"mail_sent_ok\";s:39:\"Thank you! We will contact you shortly.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:31:\"Please fill the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(9,5,'_additional_settings',''),
(10,5,'_locale','en_US'),
(11,6,'_wp_attached_file','2014/05/logo-400.png'),
(12,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:195;s:4:\"file\";s:20:\"2014/05/logo-400.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"logo-400-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo-400-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"logo-400-384x195.png\";s:5:\"width\";i:384;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(13,6,'_wp_attachment_image_alt','Active Club Solutions Wine Club Management'),
(14,7,'_wp_attached_file','2014/05/logo-190.png'),
(15,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:190;s:6:\"height\";i:93;s:4:\"file\";s:20:\"2014/05/logo-190.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"logo-190-150x93.png\";s:5:\"width\";i:150;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(16,7,'_wp_attachment_image_alt','Active Club Solutions Wine Club Management'),
(107,508,'_edit_last','2'),
(108,508,'_wp_page_template','default'),
(109,508,'ninzio_page_sidebar','none'),
(110,508,'ninzio_page_title_background_color',''),
(111,508,'ninzio_page_title_background_color_opacity','0.60'),
(112,508,'ninzio_page_title_text_color','#ffffff'),
(113,508,'ninzio_page_title_section_background_color',''),
(114,508,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/11/contactus.jpg'),
(115,508,'ninzio_rich_header','yes'),
(116,508,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(117,508,'ninzio_page_title_section_background_image_position','center_bottom'),
(118,508,'ninzio_page_title_section_background_image_attachment','scroll'),
(119,508,'ninzio_page_title_section_background_image_size','auto'),
(120,508,'ninzio_slider','no'),
(121,508,'ninzio_page_layout','yes'),
(122,508,'ninzio_page_twitter','no'),
(123,508,'ninzio_page_padding_top','yes'),
(124,508,'ninzio_page_subtitle','Send us an email or call us toll free'),
(125,508,'ninzio_page_subtitle_background_color',''),
(126,508,'ninzio_page_subtitle_background_color_opacity','1'),
(127,508,'ninzio_page_subtitle_text_color','#ffffff'),
(128,508,'ninzio_page_title_section_background_image_parallax','no'),
(214,848,'_edit_last','21'),
(215,848,'_wp_page_template','default'),
(216,848,'ninzio_page_subtitle',''),
(217,848,'ninzio_page_sidebar','none'),
(218,848,'ninzio_page_title_background_color',''),
(219,848,'ninzio_page_title_background_color_opacity','1'),
(220,848,'ninzio_page_title_text_color','#444444'),
(221,848,'ninzio_page_subtitle_background_color',''),
(222,848,'ninzio_page_subtitle_background_color_opacity','1'),
(223,848,'ninzio_page_subtitle_text_color','#444444'),
(224,848,'ninzio_page_title_section_background_color','#f6f6f6'),
(225,848,'ninzio_page_title_section_background_image',''),
(226,848,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(227,848,'ninzio_page_title_section_background_image_position','center_center'),
(228,848,'ninzio_page_title_section_background_image_attachment','scroll'),
(229,848,'ninzio_page_title_section_background_image_size','auto'),
(230,848,'ninzio_slider','yes'),
(231,848,'ninzio_page_layout','yes'),
(232,848,'ninzio_page_twitter','no'),
(233,848,'ninzio_page_padding_top','no'),
(234,848,'ninzio_rich_header','no'),
(279,992,'_edit_last','21'),
(280,992,'_wp_page_template','default'),
(281,992,'ninzio_page_subtitle',''),
(282,992,'ninzio_page_sidebar','none'),
(283,992,'ninzio_page_title_background_color',''),
(284,992,'ninzio_page_title_background_color_opacity','0.60'),
(285,992,'ninzio_page_title_text_color','#ffffff'),
(286,992,'ninzio_page_subtitle_background_color',''),
(287,992,'ninzio_page_subtitle_background_color_opacity','0.95'),
(288,992,'ninzio_page_subtitle_text_color','#ffffff'),
(289,992,'ninzio_page_title_section_background_color','#f6f6f6'),
(290,992,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/04/aboutus_2.png'),
(291,992,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(292,992,'ninzio_page_title_section_background_image_position','center_center'),
(293,992,'ninzio_page_title_section_background_image_attachment','scroll'),
(294,992,'ninzio_page_title_section_background_image_size','auto'),
(295,992,'ninzio_slider','no'),
(296,992,'ninzio_page_layout','yes'),
(297,992,'ninzio_page_twitter','no'),
(298,992,'ninzio_page_padding_top','yes'),
(299,992,'ninzio_rich_header','yes'),
(300,992,'ninzio_page_title_section_background_image_parallax','no'),
(410,848,'_edit_lock','1718223752:21'),
(412,848,'ninzio_page_title_section_background_image_parallax','no'),
(416,1427,'_wp_attached_file','2014/03/home-block1.jpg'),
(417,1427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:589;s:6:\"height\";i:400;s:4:\"file\";s:23:\"2014/03/home-block1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"home-block1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"home-block1-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"home-block1-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(420,1427,'_wp_attachment_image_alt','Active Club Winery & Vineyard Management Software'),
(430,1430,'_edit_lock','1411109361:2'),
(431,1430,'_edit_last','2'),
(432,1431,'_wp_attached_file','2014/05/sample-blog2.jpg'),
(433,1431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:24:\"2014/05/sample-blog2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"sample-blog2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"sample-blog2-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"sample-blog2-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"sample-blog2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(436,1430,'ninzio_post_audio_mp3',''),
(437,1430,'ninzio_post_audio_ogg',''),
(438,1430,'ninzio_post_audio_embed',''),
(439,1430,'ninzio_post_video_mp4',''),
(440,1430,'ninzio_post_video_ogv',''),
(441,1430,'ninzio_post_video_webm',''),
(442,1430,'ninzio_post_video_embed','<!-- copy and paste. Modify height and width if desired. --><iframe class=\"tscplayer_inline embeddedObject\" name=\"tsc_player\" scrolling=\"no\" frameborder=\"0\" type=\"text/html\" src=\"http://www.screencast.com/users/ActiveClubMgmt/folders/Tutorials/media/8a214605-b6f5-40b1-b8c6-dcae8506d10e/embed\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> '),
(443,1430,'ninzio_post_video_poster',''),
(444,1430,'ninzio_post_link_url',''),
(445,1430,'ninzio_post_image_url',''),
(446,1430,'ninzio_post_image_description',''),
(447,1430,'ninzio_post_status_author',''),
(448,1430,'ninzio_post_quote_author',''),
(449,1430,'ninzio_post_featured_media','yes'),
(450,1432,'_edit_lock','1421875463:2'),
(451,1432,'_edit_last','2'),
(452,1433,'_wp_attached_file','2014/05/sample-blog.jpg'),
(453,1433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:560;s:4:\"file\";s:23:\"2014/05/sample-blog.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"sample-blog-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"sample-blog-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"sample-blog-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"sample-blog-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(456,1432,'ninzio_post_audio_mp3',''),
(457,1432,'ninzio_post_audio_ogg',''),
(458,1432,'ninzio_post_audio_embed',''),
(459,1432,'ninzio_post_video_mp4',''),
(460,1432,'ninzio_post_video_ogv',''),
(461,1432,'ninzio_post_video_webm',''),
(462,1432,'ninzio_post_video_embed',''),
(463,1432,'ninzio_post_video_poster',''),
(464,1432,'ninzio_post_link_url',''),
(465,1432,'ninzio_post_image_url',''),
(466,1432,'ninzio_post_image_description',''),
(467,1432,'ninzio_post_status_author',''),
(468,1432,'ninzio_post_quote_author',''),
(469,1432,'ninzio_post_featured_media','yes'),
(470,1434,'_edit_lock','1549576444:15'),
(471,1434,'_edit_last','2'),
(472,1434,'_wp_page_template','default'),
(473,1434,'ninzio_page_subtitle',''),
(474,1434,'ninzio_page_sidebar','none'),
(475,1434,'ninzio_page_title_background_color',''),
(476,1434,'ninzio_page_title_background_color_opacity','1'),
(477,1434,'ninzio_page_title_text_color','#444444'),
(478,1434,'ninzio_page_subtitle_background_color',''),
(479,1434,'ninzio_page_subtitle_background_color_opacity','1'),
(480,1434,'ninzio_page_subtitle_text_color','#444444'),
(481,1434,'ninzio_page_title_section_background_color','#f6f6f6'),
(482,1434,'ninzio_page_title_section_background_image',''),
(483,1434,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(484,1434,'ninzio_page_title_section_background_image_position','left_top'),
(485,1434,'ninzio_page_title_section_background_image_attachment','scroll'),
(486,1434,'ninzio_page_title_section_background_image_size','auto'),
(487,1434,'ninzio_slider','no'),
(488,1434,'ninzio_page_layout','no'),
(489,1434,'ninzio_page_twitter','no'),
(490,1434,'ninzio_page_padding_top','yes'),
(491,1434,'ninzio_rich_header','yes'),
(492,1434,'ninzio_page_title_section_background_image_parallax','no'),
(493,992,'_edit_lock','1718224254:21'),
(496,508,'_edit_lock','1544408098:2'),
(523,1435,'_edit_lock','1718224175:21'),
(524,1435,'_edit_last','21'),
(525,1435,'_wp_page_template','default'),
(526,1435,'ninzio_page_subtitle','Explore our customizable tasting room solution: tasting room POS, wine club software, ecommerce, winery software'),
(527,1435,'ninzio_page_sidebar','none'),
(528,1435,'ninzio_page_title_background_color',''),
(529,1435,'ninzio_page_title_background_color_opacity','1'),
(530,1435,'ninzio_page_title_text_color','#ffffff'),
(531,1435,'ninzio_page_subtitle_background_color',''),
(532,1435,'ninzio_page_subtitle_background_color_opacity','1'),
(533,1435,'ninzio_page_subtitle_text_color','#ffffff'),
(534,1435,'ninzio_page_title_section_background_color','#f6f6f6'),
(535,1435,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/11/dtcsoftware.jpg'),
(536,1435,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(537,1435,'ninzio_page_title_section_background_image_position','center_top'),
(538,1435,'ninzio_page_title_section_background_image_attachment','scroll'),
(539,1435,'ninzio_page_title_section_background_image_size','auto'),
(540,1435,'ninzio_slider','no'),
(541,1435,'ninzio_page_layout','yes'),
(542,1435,'ninzio_page_twitter','no'),
(543,1435,'ninzio_page_padding_top','yes'),
(544,1435,'ninzio_rich_header','yes'),
(545,1435,'ninzio_page_title_section_background_image_parallax','no'),
(546,1436,'_edit_lock','1718224195:21'),
(547,1436,'_edit_last','21'),
(548,1436,'_wp_page_template','default'),
(549,1436,'ninzio_page_subtitle','Our software integrates seamlessly with a wide range of useful services'),
(550,1436,'ninzio_page_sidebar','none'),
(551,1436,'ninzio_page_title_background_color',''),
(552,1436,'ninzio_page_title_background_color_opacity','1'),
(553,1436,'ninzio_page_title_text_color','#ffffff'),
(554,1436,'ninzio_page_subtitle_background_color',''),
(555,1436,'ninzio_page_subtitle_background_color_opacity','1'),
(556,1436,'ninzio_page_subtitle_text_color','#ffffff'),
(557,1436,'ninzio_page_title_section_background_color','#f6f6f6'),
(558,1436,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/10/integrations_12.png'),
(559,1436,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(560,1436,'ninzio_page_title_section_background_image_position','center_top'),
(561,1436,'ninzio_page_title_section_background_image_attachment','scroll'),
(562,1436,'ninzio_page_title_section_background_image_size','auto'),
(563,1436,'ninzio_slider','no'),
(564,1436,'ninzio_page_layout','yes'),
(565,1436,'ninzio_page_twitter','no'),
(566,1436,'ninzio_page_padding_top','yes'),
(567,1436,'ninzio_rich_header','no'),
(568,1436,'ninzio_page_title_section_background_image_parallax','no'),
(592,1438,'_edit_lock','1630446055:2'),
(593,1438,'_edit_last','2'),
(594,1438,'_wp_page_template','default'),
(595,1438,'ninzio_page_subtitle','Experience our iPad Winery POS, Wine Club Software and Winery eCommerce'),
(596,1438,'ninzio_page_sidebar','none'),
(597,1438,'ninzio_page_title_background_color','#499bcd'),
(598,1438,'ninzio_page_title_background_color_opacity','0.75'),
(599,1438,'ninzio_page_title_text_color','#ffffff'),
(600,1438,'ninzio_page_subtitle_background_color','#499bcd'),
(601,1438,'ninzio_page_subtitle_background_color_opacity','0.75'),
(602,1438,'ninzio_page_subtitle_text_color','#ffffff'),
(603,1438,'ninzio_page_title_section_background_color','#f6f6f6'),
(604,1438,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/11/demorequest.png'),
(605,1438,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(606,1438,'ninzio_page_title_section_background_image_position','center_top'),
(607,1438,'ninzio_page_title_section_background_image_attachment','scroll'),
(608,1438,'ninzio_page_title_section_background_image_size','auto'),
(609,1438,'ninzio_slider','no'),
(610,1438,'ninzio_page_layout','yes'),
(611,1438,'ninzio_page_twitter','no'),
(612,1438,'ninzio_page_padding_top','yes'),
(613,1438,'ninzio_rich_header','yes'),
(614,1438,'ninzio_page_title_section_background_image_parallax','no'),
(635,1442,'_menu_item_type','post_type'),
(636,1442,'_menu_item_menu_item_parent','0'),
(637,1442,'_menu_item_object_id','1434'),
(638,1442,'_menu_item_object','page'),
(639,1442,'_menu_item_target',''),
(640,1442,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(641,1442,'_menu_item_xfn',''),
(642,1442,'_menu_item_url',''),
(644,1443,'_menu_item_type','post_type'),
(645,1443,'_menu_item_menu_item_parent','1935'),
(646,1443,'_menu_item_object_id','508'),
(647,1443,'_menu_item_object','page'),
(648,1443,'_menu_item_target',''),
(649,1443,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(650,1443,'_menu_item_xfn',''),
(651,1443,'_menu_item_url',''),
(653,1444,'_menu_item_type','post_type'),
(654,1444,'_menu_item_menu_item_parent','0'),
(655,1444,'_menu_item_object_id','1435'),
(656,1444,'_menu_item_object','page'),
(657,1444,'_menu_item_target',''),
(658,1444,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(659,1444,'_menu_item_xfn',''),
(660,1444,'_menu_item_url',''),
(671,1446,'_menu_item_type','post_type'),
(672,1446,'_menu_item_menu_item_parent','0'),
(673,1446,'_menu_item_object_id','1436'),
(674,1446,'_menu_item_object','page'),
(675,1446,'_menu_item_target',''),
(676,1446,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(677,1446,'_menu_item_xfn',''),
(678,1446,'_menu_item_url',''),
(689,1448,'_menu_item_type','post_type'),
(690,1448,'_menu_item_menu_item_parent','0'),
(691,1448,'_menu_item_object_id','1438'),
(692,1448,'_menu_item_object','page'),
(693,1448,'_menu_item_target',''),
(694,1448,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(695,1448,'_menu_item_xfn',''),
(696,1448,'_menu_item_url',''),
(707,1450,'_menu_item_type','custom'),
(708,1450,'_menu_item_menu_item_parent','0'),
(709,1450,'_menu_item_object_id','1450'),
(710,1450,'_menu_item_object','custom'),
(711,1450,'_menu_item_target',''),
(712,1450,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(713,1450,'_menu_item_xfn',''),
(714,1450,'_menu_item_url','/'),
(800,1455,'_wp_attached_file','2014/05/logo-400@2x.png'),
(801,1455,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:195;s:4:\"file\";s:23:\"2014/05/logo-400@2x.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"logo-400@2x-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"logo-400@2x-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"logo-400@2x-384x195.png\";s:5:\"width\";i:384;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(802,1455,'_wp_attachment_image_alt','Active Club Solutions Wine Club Management'),
(872,1459,'_edit_lock','1567486050:2'),
(873,1459,'_edit_last','2'),
(874,1459,'_wp_page_template','default'),
(875,1459,'ninzio_page_subtitle','A secure and powerful winery ecommerce solution'),
(876,1459,'ninzio_page_sidebar','right'),
(877,1459,'ninzio_page_title_background_color',''),
(878,1459,'ninzio_page_title_background_color_opacity','1'),
(879,1459,'ninzio_page_title_text_color','#ffffff'),
(880,1459,'ninzio_page_subtitle_background_color',''),
(881,1459,'ninzio_page_subtitle_background_color_opacity','1'),
(882,1459,'ninzio_page_subtitle_text_color','#ffffff'),
(883,1459,'ninzio_page_title_section_background_color','#f6f6f6'),
(884,1459,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/header14.jpg'),
(885,1459,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(886,1459,'ninzio_page_title_section_background_image_position','center_top'),
(887,1459,'ninzio_page_title_section_background_image_attachment','scroll'),
(888,1459,'ninzio_page_title_section_background_image_size','auto'),
(889,1459,'ninzio_slider','no'),
(890,1459,'ninzio_page_layout','yes'),
(891,1459,'ninzio_page_twitter','no'),
(892,1459,'ninzio_page_padding_top','yes'),
(893,1459,'ninzio_rich_header','no'),
(894,1459,'ninzio_page_title_section_background_image_parallax','no'),
(941,1467,'_wp_attached_file','2014/05/header2.jpg'),
(942,1467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2014/05/header2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"header2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"header2-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"header2-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"header2-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"header2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:19:\"header2-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:20:\"header2-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(951,1474,'_form','<p>Name (required)<br>\n    [text* your-name] </p>\n\n<p>Your Email (required)<br />\n    [email* your-email] </p>\n\n<p>Phone (required)<br />\n    [text* phone] </p>\n\n<p>Company (required)<br />\n    [text* company] </p>\n\n<p>Where did you find us<br/>\n    [select* source include_blank \"Advertisement\" \"Google\" \"Mailing\" \"Referral\" \"Rep Visit\" \"Social Media\" \"Trade Show\" \"Other\"]\n</p>\n\n<p>[submit \"Send\"]</p>'),
(952,1474,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:35:\"Active Club Solutions: DEMO REQUEST\";s:6:\"sender\";s:49:\"[_site_title] <wordpress@activeclubsolutions.net>\";s:9:\"recipient\";s:29:\"sales@activeclubsolutions.net\";s:4:\"body\";s:391:\"<span style=\"font-family: Calibri; font-size: 18px;\">\n\nSubject: Demo Request\n\nFrom: [your-name] <[your-email]>\n\nEmail: [your-email]\n\nCompany: [company]\n\nPhone: [phone]\n\nSource: [source]\n\nThe above person requests a demo.\n\n<hr>\n\nThis e-mail was sent from the ActiveClubSolutions.com \"Demo Request\" form\n\n<img src=\"http://secureclub.net/images/activeclubmgmt/Signupinwinery150.png\" />\n\n</span>\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:1;s:13:\"exclude_blank\";b:0;}'),
(953,1474,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:4:\"body\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(954,1474,'_messages','a:23:{s:12:\"mail_sent_ok\";s:39:\"Thank you! We will contact you shortly.\";s:12:\"mail_sent_ng\";s:80:\"Message Failed. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:86:\"Validation errors occurred. Please confirm all fields are correct and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:31:\"Please fill the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(955,1474,'_additional_settings',''),
(956,1474,'_locale','en_US'),
(980,1476,'_wp_attached_file','2014/05/header3.jpg'),
(981,1476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2014/05/header3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"header3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"header3-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"header3-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"header3-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"header3-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:19:\"header3-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:20:\"header3-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(982,1477,'_wp_attached_file','2014/05/header4.jpg'),
(983,1477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2014/05/header4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"header4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"header4-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"header4-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"header4-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"header4-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:19:\"header4-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:20:\"header4-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(984,1478,'_wp_attached_file','2014/05/header5.jpg'),
(985,1478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2014/05/header5.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"header5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"header5-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"header5-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"header5-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"header5-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:19:\"header5-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:20:\"header5-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(986,1479,'_wp_attached_file','2014/05/header6.jpg'),
(987,1479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2014/05/header6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"header6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"header6-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"header6-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"header6-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"header6-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:19:\"header6-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:20:\"header6-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(995,1488,'_wp_attached_file','2014/05/header71.jpg'),
(996,1488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/05/header71.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header71-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header71-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header71-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header71-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header71-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header71-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header71-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(997,1488,'_wp_attachment_image_alt','wine club management software demo'),
(998,1491,'_wp_attached_file','2014/02/header8.jpg'),
(999,1491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2014/02/header8.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"header8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"header8-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"header8-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"header8-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"header8-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:19:\"header8-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:20:\"header8-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1000,1491,'_wp_attachment_image_alt','contact active club solutions wine club management software'),
(1001,1493,'_edit_lock','1567735487:15'),
(1002,1493,'_edit_last','2'),
(1003,1493,'_wp_page_template','default'),
(1004,1493,'ninzio_page_subtitle',''),
(1005,1493,'ninzio_page_sidebar','none'),
(1006,1493,'ninzio_page_title_background_color','#ffffff'),
(1007,1493,'ninzio_page_title_background_color_opacity','0.25'),
(1008,1493,'ninzio_page_title_text_color','#000000'),
(1009,1493,'ninzio_page_subtitle_background_color','#ffffff'),
(1010,1493,'ninzio_page_subtitle_background_color_opacity','0.15'),
(1011,1493,'ninzio_page_subtitle_text_color','#000000'),
(1012,1493,'ninzio_page_title_section_background_color','#f6f6f6'),
(1013,1493,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/08/2-2.png'),
(1014,1493,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1015,1493,'ninzio_page_title_section_background_image_position','center_top'),
(1016,1493,'ninzio_page_title_section_background_image_attachment','scroll'),
(1017,1493,'ninzio_page_title_section_background_image_size','auto'),
(1018,1493,'ninzio_slider','no'),
(1019,1493,'ninzio_page_layout','no'),
(1020,1493,'ninzio_page_twitter','no'),
(1021,1493,'ninzio_page_padding_top','yes'),
(1022,1493,'ninzio_rich_header','yes'),
(1023,1493,'ninzio_page_title_section_background_image_parallax','no'),
(1024,1494,'_edit_lock','1568740624:2'),
(1025,1494,'_edit_last','2'),
(1026,1494,'_wp_page_template','default'),
(1027,1494,'ninzio_page_subtitle','Expand your marketing tools to all DTC managers…know your full results'),
(1028,1494,'ninzio_page_sidebar','none'),
(1029,1494,'ninzio_page_title_background_color',''),
(1030,1494,'ninzio_page_title_background_color_opacity','1'),
(1031,1494,'ninzio_page_title_text_color','#ffffff'),
(1032,1494,'ninzio_page_subtitle_background_color',''),
(1033,1494,'ninzio_page_subtitle_background_color_opacity','1'),
(1034,1494,'ninzio_page_subtitle_text_color','#ffffff'),
(1035,1494,'ninzio_page_title_section_background_color','#f6f6f6'),
(1036,1494,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/10/flyingemail.png'),
(1037,1494,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1038,1494,'ninzio_page_title_section_background_image_position','center_top'),
(1039,1494,'ninzio_page_title_section_background_image_attachment','scroll'),
(1040,1494,'ninzio_page_title_section_background_image_size','auto'),
(1041,1494,'ninzio_slider','no'),
(1042,1494,'ninzio_page_layout','yes'),
(1043,1494,'ninzio_page_twitter','no'),
(1044,1494,'ninzio_page_padding_top','yes'),
(1045,1494,'ninzio_rich_header','yes'),
(1046,1494,'ninzio_page_title_section_background_image_parallax','no'),
(1047,1495,'_edit_lock','1567735535:15'),
(1048,1495,'_edit_last','2'),
(1049,1495,'_wp_page_template','default'),
(1050,1495,'ninzio_page_subtitle','Explore our customizable tasting room solution: tasting room POS, wine club software, ecommerce, winery software'),
(1051,1495,'ninzio_page_sidebar','none'),
(1052,1495,'ninzio_page_title_background_color',''),
(1053,1495,'ninzio_page_title_background_color_opacity','1'),
(1054,1495,'ninzio_page_title_text_color','#ffffff'),
(1055,1495,'ninzio_page_subtitle_background_color',''),
(1056,1495,'ninzio_page_subtitle_background_color_opacity','1'),
(1057,1495,'ninzio_page_subtitle_text_color','#ffffff'),
(1058,1495,'ninzio_page_title_section_background_color','#f6f6f6'),
(1059,1495,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/11/integratedcertified.jpg'),
(1060,1495,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1061,1495,'ninzio_page_title_section_background_image_position','center_top'),
(1062,1495,'ninzio_page_title_section_background_image_attachment','scroll'),
(1063,1495,'ninzio_page_title_section_background_image_size','auto'),
(1064,1495,'ninzio_slider','no'),
(1065,1495,'ninzio_page_layout','no'),
(1066,1495,'ninzio_page_twitter','no'),
(1067,1495,'ninzio_page_padding_top','yes'),
(1068,1495,'ninzio_rich_header','yes'),
(1069,1495,'ninzio_page_title_section_background_image_parallax','no'),
(1070,1496,'_edit_lock','1493271908:2'),
(1071,1496,'_edit_last','2'),
(1072,1496,'_wp_page_template','default'),
(1073,1496,'ninzio_page_subtitle',''),
(1074,1496,'ninzio_page_sidebar','none'),
(1075,1496,'ninzio_page_title_background_color',''),
(1076,1496,'ninzio_page_title_background_color_opacity','1'),
(1077,1496,'ninzio_page_title_text_color','#000000'),
(1078,1496,'ninzio_page_subtitle_background_color',''),
(1079,1496,'ninzio_page_subtitle_background_color_opacity','1'),
(1080,1496,'ninzio_page_subtitle_text_color','#ffffff'),
(1081,1496,'ninzio_page_title_section_background_color','#f6f6f6'),
(1082,1496,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/04/phoneandemail.png'),
(1083,1496,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1084,1496,'ninzio_page_title_section_background_image_position','left_top'),
(1085,1496,'ninzio_page_title_section_background_image_attachment','scroll'),
(1086,1496,'ninzio_page_title_section_background_image_size','auto'),
(1087,1496,'ninzio_slider','no'),
(1088,1496,'ninzio_page_layout','no'),
(1089,1496,'ninzio_page_twitter','no'),
(1090,1496,'ninzio_page_padding_top','yes'),
(1091,1496,'ninzio_rich_header','yes'),
(1092,1496,'ninzio_page_title_section_background_image_parallax','no'),
(1093,1497,'_edit_lock','1638999519:2'),
(1094,1497,'_edit_last','2'),
(1095,1497,'_wp_page_template','default'),
(1096,1497,'ninzio_page_subtitle','Fully integrated with your <a href=\"https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/\"><font color=\"#ffffff\">Tasting Room POS</font> </a>, and <a href=\"https://activeclubsolutions.net/winery-pos-features/wine-club-management/\"><font color=\"#ffffff\">Wine / Spirits Club Software</font></a>'),
(1097,1497,'ninzio_page_sidebar','none'),
(1098,1497,'ninzio_page_title_background_color',''),
(1099,1497,'ninzio_page_title_background_color_opacity','1'),
(1100,1497,'ninzio_page_title_text_color','#ffffff'),
(1101,1497,'ninzio_page_subtitle_background_color',''),
(1102,1497,'ninzio_page_subtitle_background_color_opacity','1'),
(1103,1497,'ninzio_page_subtitle_text_color','#ffffff'),
(1104,1497,'ninzio_page_title_section_background_color','#f6f6f6'),
(1105,1497,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/header14.jpg'),
(1106,1497,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1107,1497,'ninzio_page_title_section_background_image_position','center_top'),
(1108,1497,'ninzio_page_title_section_background_image_attachment','scroll'),
(1109,1497,'ninzio_page_title_section_background_image_size','auto'),
(1110,1497,'ninzio_slider','no'),
(1111,1497,'ninzio_page_layout','no'),
(1112,1497,'ninzio_page_twitter','no'),
(1113,1497,'ninzio_page_padding_top','yes'),
(1114,1497,'ninzio_rich_header','yes'),
(1115,1497,'ninzio_page_title_section_background_image_parallax','no'),
(1116,1498,'_edit_lock','1567484986:2'),
(1117,1498,'_edit_last','2'),
(1118,1498,'_wp_page_template','default'),
(1119,1498,'ninzio_page_subtitle',''),
(1120,1498,'ninzio_page_sidebar','none'),
(1121,1498,'ninzio_page_title_background_color',''),
(1122,1498,'ninzio_page_title_background_color_opacity','1'),
(1123,1498,'ninzio_page_title_text_color','#ffffff'),
(1124,1498,'ninzio_page_subtitle_background_color',''),
(1125,1498,'ninzio_page_subtitle_background_color_opacity','1'),
(1126,1498,'ninzio_page_subtitle_text_color','#ffffff'),
(1127,1498,'ninzio_page_title_section_background_color','#f6f6f6'),
(1128,1498,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/04/softwaretechnology_3.png'),
(1129,1498,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1130,1498,'ninzio_page_title_section_background_image_position','center_top'),
(1131,1498,'ninzio_page_title_section_background_image_attachment','scroll'),
(1132,1498,'ninzio_page_title_section_background_image_size','auto'),
(1133,1498,'ninzio_slider','no'),
(1134,1498,'ninzio_page_layout','no'),
(1135,1498,'ninzio_page_twitter','no'),
(1136,1498,'ninzio_page_padding_top','yes'),
(1137,1498,'ninzio_rich_header','yes'),
(1138,1498,'ninzio_page_title_section_background_image_parallax','no'),
(1139,1500,'_menu_item_type','post_type'),
(1140,1500,'_menu_item_menu_item_parent','1444'),
(1141,1500,'_menu_item_object_id','1498'),
(1142,1500,'_menu_item_object','page'),
(1143,1500,'_menu_item_target',''),
(1144,1500,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1145,1500,'_menu_item_xfn',''),
(1146,1500,'_menu_item_url',''),
(1148,1501,'_menu_item_type','post_type'),
(1149,1501,'_menu_item_menu_item_parent','1444'),
(1150,1501,'_menu_item_object_id','1497'),
(1151,1501,'_menu_item_object','page'),
(1152,1501,'_menu_item_target',''),
(1153,1501,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1154,1501,'_menu_item_xfn',''),
(1155,1501,'_menu_item_url',''),
(1157,1502,'_menu_item_type','post_type'),
(1158,1502,'_menu_item_menu_item_parent','1444'),
(1159,1502,'_menu_item_object_id','1496'),
(1160,1502,'_menu_item_object','page'),
(1161,1502,'_menu_item_target',''),
(1162,1502,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1163,1502,'_menu_item_xfn',''),
(1164,1502,'_menu_item_url',''),
(1166,1503,'_menu_item_type','post_type'),
(1167,1503,'_menu_item_menu_item_parent','1444'),
(1168,1503,'_menu_item_object_id','1495'),
(1169,1503,'_menu_item_object','page'),
(1170,1503,'_menu_item_target',''),
(1171,1503,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1172,1503,'_menu_item_xfn',''),
(1173,1503,'_menu_item_url',''),
(1175,1504,'_menu_item_type','post_type'),
(1176,1504,'_menu_item_menu_item_parent','1444'),
(1177,1504,'_menu_item_object_id','1494'),
(1178,1504,'_menu_item_object','page'),
(1179,1504,'_menu_item_target',''),
(1180,1504,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1181,1504,'_menu_item_xfn',''),
(1182,1504,'_menu_item_url',''),
(1184,1505,'_menu_item_type','post_type'),
(1185,1505,'_menu_item_menu_item_parent','1444'),
(1186,1505,'_menu_item_object_id','1493'),
(1187,1505,'_menu_item_object','page'),
(1188,1505,'_menu_item_target',''),
(1189,1505,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1190,1505,'_menu_item_xfn',''),
(1191,1505,'_menu_item_url',''),
(1198,1430,'_wp_old_slug','sample-blog-post'),
(1200,1430,'_wp_old_slug','active-club-solutions-is-pleased-to-announce-the-full-integration-of-its-wine-club-software-with-constant-contact-and-vertical-response'),
(1201,1513,'_wp_attached_file','2014/05/news1.jpg'),
(1202,1513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:17:\"2014/05/news1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"news1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"news1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:17:\"news1-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:17:\"news1-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:17:\"news1-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:18:\"news1-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1203,1513,'_wp_attachment_image_alt','active club solutions wine software app for ipad tablet'),
(1204,1432,'_thumbnail_id','1513'),
(1206,1432,'_wp_old_slug','another-sample-blog-post-here'),
(1209,1514,'_wp_attached_file','2014/05/news2.jpg'),
(1210,1514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:337;s:4:\"file\";s:17:\"2014/05/news2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"news2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"news2-300x101.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:17:\"news2-600x337.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:17:\"news2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:17:\"news2-894x337.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1211,1514,'_wp_attachment_image_alt','Active Club Solutions Wine Club Software Vertical Response Constant Contact'),
(1212,1430,'_thumbnail_id','1514'),
(1219,1516,'_wp_attached_file','2014/07/news3.jpg'),
(1220,1516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:17:\"2014/07/news3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"news3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"news3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:17:\"news3-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:17:\"news3-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:17:\"news3-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:18:\"news3-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1221,1516,'_wp_attachment_image_alt','wine online shopping cart software'),
(1239,1517,'_edit_lock','1411109341:2'),
(1240,1517,'_edit_last','2'),
(1242,1517,'ninzio_post_audio_mp3',''),
(1243,1517,'ninzio_post_audio_ogg',''),
(1244,1517,'ninzio_post_audio_embed',''),
(1245,1517,'ninzio_post_video_mp4',''),
(1246,1517,'ninzio_post_video_ogv',''),
(1247,1517,'ninzio_post_video_webm',''),
(1248,1517,'ninzio_post_video_embed',''),
(1249,1517,'ninzio_post_video_poster',''),
(1250,1517,'ninzio_post_link_url',''),
(1251,1517,'ninzio_post_image_url',''),
(1252,1517,'ninzio_post_image_description',''),
(1253,1517,'ninzio_post_status_author',''),
(1254,1517,'ninzio_post_quote_author',''),
(1255,1517,'ninzio_post_featured_media','yes'),
(1256,1518,'_wp_attached_file','2014/07/news4.jpg'),
(1257,1518,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:720;s:4:\"file\";s:17:\"2014/07/news4.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"news4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"news4-300x216.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:17:\"news4-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:17:\"news4-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:17:\"news4-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:18:\"news4-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1258,1518,'_wp_attachment_image_alt','wine online store ecommerce inventory tracking'),
(1259,1517,'_thumbnail_id','1518'),
(1261,1519,'_edit_lock','1411109335:2'),
(1262,1519,'_edit_last','2'),
(1263,1520,'_wp_attached_file','2014/07/news5.jpg'),
(1264,1520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:480;s:4:\"file\";s:17:\"2014/07/news5.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"news5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"news5-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:17:\"news5-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:26:\"Canon EOS DIGITAL REBEL XT\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1272813656;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"78\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";}}'),
(1265,1520,'_wp_attachment_image_alt','Dan Nechemias active club solutions national sales manager'),
(1266,1519,'_thumbnail_id','1520'),
(1268,1519,'ninzio_post_audio_mp3',''),
(1269,1519,'ninzio_post_audio_ogg',''),
(1270,1519,'ninzio_post_audio_embed',''),
(1271,1519,'ninzio_post_video_mp4',''),
(1272,1519,'ninzio_post_video_ogv',''),
(1273,1519,'ninzio_post_video_webm',''),
(1274,1519,'ninzio_post_video_embed',''),
(1275,1519,'ninzio_post_video_poster',''),
(1276,1519,'ninzio_post_link_url',''),
(1277,1519,'ninzio_post_image_url',''),
(1278,1519,'ninzio_post_image_description',''),
(1279,1519,'ninzio_post_status_author',''),
(1280,1519,'ninzio_post_quote_author',''),
(1281,1519,'ninzio_post_featured_media','yes'),
(1282,1521,'_edit_lock','1411109326:2'),
(1283,1521,'_edit_last','2'),
(1284,1522,'_wp_attached_file','2014/07/news6.jpg'),
(1285,1522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:17:\"2014/07/news6.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"news6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"news6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:17:\"news6-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:17:\"news6-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:17:\"news6-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:18:\"news6-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1286,1523,'_wp_attached_file','2014/07/news7.jpg'),
(1287,1523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2014/07/news7.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"news7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"news7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:17:\"news7-500x480.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:17:\"news7-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1288,1523,'_wp_attachment_image_alt','wine club software for mac'),
(1290,1521,'ninzio_post_audio_mp3',''),
(1291,1521,'ninzio_post_audio_ogg',''),
(1292,1521,'ninzio_post_audio_embed',''),
(1293,1521,'ninzio_post_video_mp4',''),
(1294,1521,'ninzio_post_video_ogv',''),
(1295,1521,'ninzio_post_video_webm',''),
(1296,1521,'ninzio_post_video_embed',''),
(1297,1521,'ninzio_post_video_poster',''),
(1298,1521,'ninzio_post_link_url',''),
(1299,1521,'ninzio_post_image_url',''),
(1300,1521,'ninzio_post_image_description',''),
(1301,1521,'ninzio_post_status_author',''),
(1302,1521,'ninzio_post_quote_author',''),
(1303,1521,'ninzio_post_featured_media','yes'),
(1304,1522,'_wp_attachment_image_alt','wine club software for macs'),
(1305,1521,'_thumbnail_id','1522'),
(1308,1524,'_edit_lock','1411109320:2'),
(1309,1524,'_edit_last','2'),
(1310,1525,'_wp_attached_file','2014/07/news8.jpg'),
(1311,1525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:665;s:4:\"file\";s:17:\"2014/07/news8.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"news8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"news8-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:17:\"news8-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:17:\"news8-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:17:\"news8-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:18:\"news8-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1312,1525,'_wp_attachment_image_alt','wine club custom selection winemaker\'s selection'),
(1313,1524,'_thumbnail_id','1525'),
(1315,1524,'ninzio_post_audio_mp3',''),
(1316,1524,'ninzio_post_audio_ogg',''),
(1317,1524,'ninzio_post_audio_embed',''),
(1318,1524,'ninzio_post_video_mp4',''),
(1319,1524,'ninzio_post_video_ogv',''),
(1320,1524,'ninzio_post_video_webm',''),
(1321,1524,'ninzio_post_video_embed',''),
(1322,1524,'ninzio_post_video_poster',''),
(1323,1524,'ninzio_post_link_url',''),
(1324,1524,'ninzio_post_image_url',''),
(1325,1524,'ninzio_post_image_description',''),
(1326,1524,'ninzio_post_status_author',''),
(1327,1524,'ninzio_post_quote_author',''),
(1328,1524,'ninzio_post_featured_media','yes'),
(1330,1526,'_edit_lock','1411109314:2'),
(1331,1526,'_edit_last','2'),
(1332,1527,'_wp_attached_file','2014/07/news9.jpg'),
(1333,1527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:771;s:4:\"file\";s:17:\"2014/07/news9.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"news9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"news9-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:17:\"news9-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:17:\"news9-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:17:\"news9-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:18:\"news9-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1334,1527,'_wp_attachment_image_alt','custom from field wine club software'),
(1337,1526,'ninzio_post_audio_mp3',''),
(1338,1526,'ninzio_post_audio_ogg',''),
(1339,1526,'ninzio_post_audio_embed',''),
(1340,1526,'ninzio_post_video_mp4',''),
(1341,1526,'ninzio_post_video_ogv',''),
(1342,1526,'ninzio_post_video_webm',''),
(1343,1526,'ninzio_post_video_embed',''),
(1344,1526,'ninzio_post_video_poster',''),
(1345,1526,'ninzio_post_link_url',''),
(1346,1526,'ninzio_post_image_url',''),
(1347,1526,'ninzio_post_image_description',''),
(1348,1526,'ninzio_post_status_author',''),
(1349,1526,'ninzio_post_quote_author',''),
(1350,1526,'ninzio_post_featured_media','yes'),
(1351,1528,'_edit_lock','1411109307:2'),
(1352,1528,'_edit_last','2'),
(1354,1528,'ninzio_post_audio_mp3',''),
(1355,1528,'ninzio_post_audio_ogg',''),
(1356,1528,'ninzio_post_audio_embed',''),
(1357,1528,'ninzio_post_video_mp4',''),
(1358,1528,'ninzio_post_video_ogv',''),
(1359,1528,'ninzio_post_video_webm',''),
(1360,1528,'ninzio_post_video_embed',''),
(1361,1528,'ninzio_post_video_poster',''),
(1362,1528,'ninzio_post_link_url',''),
(1363,1528,'ninzio_post_image_url',''),
(1364,1528,'ninzio_post_image_description',''),
(1365,1528,'ninzio_post_status_author',''),
(1366,1528,'ninzio_post_quote_author',''),
(1367,1528,'ninzio_post_featured_media','yes'),
(1369,1529,'_wp_attached_file','2014/07/news10.jpg'),
(1370,1529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:553;s:4:\"file\";s:18:\"2014/07/news10.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"news10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"news10-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:18:\"news10-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:18:\"news10-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:18:\"news10-894x553.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1371,1529,'_wp_attachment_image_alt','custom wine club email templates'),
(1372,1528,'_thumbnail_id','1529'),
(1373,1530,'_edit_lock','1414703024:2'),
(1374,1530,'_edit_last','2'),
(1376,1530,'ninzio_post_audio_mp3',''),
(1377,1530,'ninzio_post_audio_ogg',''),
(1378,1530,'ninzio_post_audio_embed',''),
(1379,1530,'ninzio_post_video_mp4',''),
(1380,1530,'ninzio_post_video_ogv',''),
(1381,1530,'ninzio_post_video_webm',''),
(1382,1530,'ninzio_post_video_embed',''),
(1383,1530,'ninzio_post_video_poster',''),
(1384,1530,'ninzio_post_link_url',''),
(1385,1530,'ninzio_post_image_url',''),
(1386,1530,'ninzio_post_image_description',''),
(1387,1530,'ninzio_post_status_author',''),
(1388,1530,'ninzio_post_quote_author',''),
(1389,1530,'ninzio_post_featured_media','yes'),
(1391,1531,'_edit_lock','1411109295:2'),
(1392,1531,'_edit_last','2'),
(1394,1531,'ninzio_post_audio_mp3',''),
(1395,1531,'ninzio_post_audio_ogg',''),
(1396,1531,'ninzio_post_audio_embed',''),
(1397,1531,'ninzio_post_video_mp4',''),
(1398,1531,'ninzio_post_video_ogv',''),
(1399,1531,'ninzio_post_video_webm',''),
(1400,1531,'ninzio_post_video_embed',''),
(1401,1531,'ninzio_post_video_poster',''),
(1402,1531,'ninzio_post_link_url',''),
(1403,1531,'ninzio_post_image_url',''),
(1404,1531,'ninzio_post_image_description',''),
(1405,1531,'ninzio_post_status_author',''),
(1406,1531,'ninzio_post_quote_author',''),
(1407,1531,'ninzio_post_featured_media','yes'),
(1409,1532,'_edit_lock','1414701784:2'),
(1410,1532,'_edit_last','2'),
(1411,1533,'_wp_attached_file','2014/07/news11.jpg'),
(1412,1533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:485;s:4:\"file\";s:18:\"2014/07/news11.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"news11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"news11-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:18:\"news11-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:18:\"news11-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:18:\"news11-894x485.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1413,1533,'_wp_attachment_image_alt','quick search active club manager wine club search'),
(1414,1532,'_thumbnail_id','1533'),
(1416,1532,'ninzio_post_audio_mp3',''),
(1417,1532,'ninzio_post_audio_ogg',''),
(1418,1532,'ninzio_post_audio_embed',''),
(1419,1532,'ninzio_post_video_mp4',''),
(1420,1532,'ninzio_post_video_ogv',''),
(1421,1532,'ninzio_post_video_webm',''),
(1422,1532,'ninzio_post_video_embed','<!-- copy and paste. Modify height and width if desired. --><iframe class=\"tscplayer_inline embeddedObject\" name=\"tsc_player\" scrolling=\"no\" frameborder=\"0\" type=\"text/html\" style=\"overflow:hidden;\" src=\"http://www.screencast.com/users/ActiveClubMgmt/folders/Tutorials/media/581615da-b0d0-4096-ace6-34da85e129f1/embed\"  webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> '),
(1423,1532,'ninzio_post_video_poster',''),
(1424,1532,'ninzio_post_link_url',''),
(1425,1532,'ninzio_post_image_url',''),
(1426,1532,'ninzio_post_image_description',''),
(1427,1532,'ninzio_post_status_author',''),
(1428,1532,'ninzio_post_quote_author',''),
(1429,1532,'ninzio_post_featured_media','yes'),
(1430,1534,'_edit_lock','1411109282:2'),
(1431,1534,'_edit_last','2'),
(1433,1534,'ninzio_post_audio_mp3',''),
(1434,1534,'ninzio_post_audio_ogg',''),
(1435,1534,'ninzio_post_audio_embed',''),
(1436,1534,'ninzio_post_video_mp4',''),
(1437,1534,'ninzio_post_video_ogv',''),
(1438,1534,'ninzio_post_video_webm',''),
(1439,1534,'ninzio_post_video_embed',''),
(1440,1534,'ninzio_post_video_poster',''),
(1441,1534,'ninzio_post_link_url',''),
(1442,1534,'ninzio_post_image_url',''),
(1443,1534,'ninzio_post_image_description',''),
(1444,1534,'ninzio_post_status_author',''),
(1445,1534,'ninzio_post_quote_author',''),
(1446,1534,'ninzio_post_featured_media','yes'),
(1452,1536,'_wp_attached_file','2014/07/news121.jpg'),
(1453,1536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1525;s:6:\"height\";i:486;s:4:\"file\";s:19:\"2014/07/news121.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"news121-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"news121-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"news121-1024x326.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:326;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"news121-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"news121-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:19:\"news121-894x486.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:20:\"news121-1200x486.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1454,1536,'_wp_attachment_image_alt','FedEx wine delivery'),
(1455,1534,'_thumbnail_id','1536'),
(1457,1537,'_edit_lock','1414703069:2'),
(1458,1537,'_edit_last','2'),
(1459,1538,'_wp_attached_file','2014/07/news13.jpg'),
(1460,1538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:665;s:4:\"file\";s:18:\"2014/07/news13.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"news13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"news13-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:18:\"news13-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:18:\"news13-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:18:\"news13-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:19:\"news13-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1461,1538,'_wp_attachment_image_alt','wine club subscription gift'),
(1462,1537,'_thumbnail_id','1538'),
(1464,1537,'ninzio_post_audio_mp3',''),
(1465,1537,'ninzio_post_audio_ogg',''),
(1466,1537,'ninzio_post_audio_embed',''),
(1467,1537,'ninzio_post_video_mp4',''),
(1468,1537,'ninzio_post_video_ogv',''),
(1469,1537,'ninzio_post_video_webm',''),
(1470,1537,'ninzio_post_video_embed',''),
(1471,1537,'ninzio_post_video_poster',''),
(1472,1537,'ninzio_post_link_url',''),
(1473,1537,'ninzio_post_image_url',''),
(1474,1537,'ninzio_post_image_description',''),
(1475,1537,'ninzio_post_status_author',''),
(1476,1537,'ninzio_post_quote_author',''),
(1477,1537,'ninzio_post_featured_media','yes'),
(1478,1539,'_wp_attached_file','2014/07/news14.jpg'),
(1479,1539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:18:\"2014/07/news14.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"news14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"news14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:18:\"news14-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:18:\"news14-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:18:\"news14-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:19:\"news14-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1480,1539,'_wp_attachment_image_alt','multilocation wine inventory control'),
(1481,1531,'_thumbnail_id','1539'),
(1483,1540,'_wp_attached_file','2014/07/news15.jpg'),
(1484,1540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:18:\"2014/07/news15.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"news15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"news15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:18:\"news15-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:18:\"news15-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:18:\"news15-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:19:\"news15-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1485,1540,'_wp_attachment_image_alt','automated wine club birthdays and anniversary notifications'),
(1486,1530,'_thumbnail_id','1540'),
(1494,1542,'_wp_attached_file','2014/07/news161.jpg'),
(1495,1542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:580;s:4:\"file\";s:19:\"2014/07/news161.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"news161-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"news161-300x174.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"news161-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"news161-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:19:\"news161-894x580.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:580;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1496,1542,'_wp_attachment_image_alt','custom from field wine club software'),
(1497,1526,'_thumbnail_id','1542'),
(1498,1544,'_wp_attached_file','2014/05/partner-fedex.jpg'),
(1499,1544,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:200;s:4:\"file\";s:25:\"2014/05/partner-fedex.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"partner-fedex-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"partner-fedex-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"partner-fedex-384x200.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1500,1544,'_wp_attachment_image_alt','wine club management solution partner with fedex'),
(1510,1548,'_wp_attached_file','2014/05/partner-fedex1.jpg'),
(1511,1548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:26:\"2014/05/partner-fedex1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"partner-fedex1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1512,1548,'_wp_attachment_image_alt','wine club management solution partner with fedex'),
(1513,1549,'_wp_attached_file','2014/05/partner-ups1.jpg'),
(1514,1549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2014/05/partner-ups1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"partner-ups1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1515,1549,'_wp_attachment_image_alt','ups wine shipping partner'),
(1519,1551,'_wp_attached_file','2014/05/partner-safehaven.jpg'),
(1520,1551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:29:\"2014/05/partner-safehaven.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"partner-safehaven-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1521,1551,'_wp_attachment_image_alt','wine ecommerce sales partner safe haven wine services'),
(1522,1552,'_wp_attached_file','2014/05/partner-avc.jpg'),
(1523,1552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:97;s:4:\"file\";s:23:\"2014/05/partner-avc.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1524,1553,'_wp_attached_file','2014/05/partner-pns.jpg'),
(1525,1553,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:97;s:4:\"file\";s:23:\"2014/05/partner-pns.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1526,1554,'_wp_attached_file','2014/05/partner-bacchus.jpg'),
(1527,1554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:97;s:4:\"file\";s:27:\"2014/05/partner-bacchus.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1528,1555,'_wp_attached_file','2014/05/partner-ws.jpg'),
(1529,1555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:97;s:4:\"file\";s:22:\"2014/05/partner-ws.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1530,1556,'_wp_attached_file','2014/05/partner-copper.jpg'),
(1531,1556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:97;s:4:\"file\";s:26:\"2014/05/partner-copper.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1532,1557,'_wp_attached_file','2014/05/partner-wineco.jpg'),
(1533,1557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:97;s:4:\"file\";s:26:\"2014/05/partner-wineco.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1534,1558,'_wp_attached_file','2014/05/partner-wcs.jpg'),
(1535,1558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:97;s:4:\"file\";s:23:\"2014/05/partner-wcs.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1536,1559,'_wp_attached_file','2014/05/partner-oregon.jpg'),
(1537,1559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:97;s:4:\"file\";s:26:\"2014/05/partner-oregon.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1538,1560,'_wp_attached_file','2014/05/partner-wsc.jpg'),
(1539,1560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:97;s:4:\"file\";s:23:\"2014/05/partner-wsc.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1540,1561,'_wp_attached_file','2014/05/partner-solu.jpg'),
(1541,1561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2014/05/partner-solu.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"partner-solu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1542,1562,'_wp_attached_file','2014/05/partner-compli.jpg'),
(1543,1562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:26:\"2014/05/partner-compli.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"partner-compli-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1544,1563,'_wp_attached_file','2014/05/compli_logo.png'),
(1545,1563,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:278;s:6:\"height\";i:112;s:4:\"file\";s:23:\"2014/05/compli_logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"compli_logo-150x112.png\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1546,1564,'_wp_attached_file','2014/05/partner-wcp.jpg'),
(1547,1564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:23:\"2014/05/partner-wcp.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"partner-wcp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1548,1565,'_wp_attached_file','2014/05/partner-baril.jpg'),
(1549,1565,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2014/05/partner-baril.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"partner-baril-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1552,1567,'_wp_attached_file','2014/05/partner-intuitpos.jpg'),
(1553,1567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:29:\"2014/05/partner-intuitpos.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"partner-intuitpos-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1556,1569,'_wp_attached_file','2014/05/partner-intuitsb.jpg'),
(1557,1569,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2014/05/partner-intuitsb.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"partner-intuitsb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1558,1570,'_wp_attached_file','2014/05/partners-english.jpg'),
(1559,1570,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2014/05/partners-english.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"partners-english-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1560,1571,'_wp_attached_file','2014/05/partners-sdg.jpg'),
(1561,1571,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2014/05/partners-sdg.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"partners-sdg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1562,1572,'_wp_attached_file','2014/05/partner-pivotal.jpg'),
(1563,1572,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:27:\"2014/05/partner-pivotal.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"partner-pivotal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1566,1574,'_wp_attached_file','2014/05/partner-intuitpay.jpg'),
(1567,1574,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:29:\"2014/05/partner-intuitpay.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"partner-intuitpay-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1568,1575,'_wp_attached_file','2014/05/partner-gravity.jpg'),
(1569,1575,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:27:\"2014/05/partner-gravity.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"partner-gravity-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1572,1577,'_wp_attached_file','2014/05/partner-wa.jpg'),
(1573,1577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:22:\"2014/05/partner-wa.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"partner-wa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1574,1578,'_wp_attached_file','2014/05/partner-vr.jpg'),
(1575,1578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:22:\"2014/05/partner-vr.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"partner-vr-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1576,1579,'_wp_attached_file','2014/05/partner-noaa.jpg'),
(1577,1579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2014/05/partner-noaa.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"partner-noaa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1580,1581,'_wp_attached_file','2014/05/partner-cc.jpg'),
(1581,1581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:22:\"2014/05/partner-cc.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"partner-cc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1582,1582,'_wp_attached_file','2014/05/partner-intuit.jpg'),
(1583,1582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:26:\"2014/05/partner-intuit.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"partner-intuit-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1584,1583,'_wp_attached_file','2014/05/qb_intuitlogo_horiz_rgb.png'),
(1585,1583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2200;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2014/05/qb_intuitlogo_horiz_rgb.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"qb_intuitlogo_horiz_rgb-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"qb_intuitlogo_horiz_rgb-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"qb_intuitlogo_horiz_rgb-1024x279.png\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:35:\"qb_intuitlogo_horiz_rgb-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:35:\"qb_intuitlogo_horiz_rgb-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:35:\"qb_intuitlogo_horiz_rgb-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:36:\"qb_intuitlogo_horiz_rgb-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1588,1585,'_wp_attached_file','2014/05/partner-paypros.jpg'),
(1589,1585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:27:\"2014/05/partner-paypros.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"partner-paypros-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1590,1586,'_wp_attached_file','2014/05/partner-shipc.jpg'),
(1591,1586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2014/05/partner-shipc.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"partner-shipc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1592,1585,'_wp_attachment_image_alt','wine website payment gateway partner paypros'),
(1594,1582,'_wp_attachment_image_alt','wine online store intuit quickbooks integration'),
(1595,1586,'_wp_attachment_image_alt','ship compliant wine website partner'),
(1596,1581,'_wp_attachment_image_alt','constant contact integration wine sales website'),
(1597,1578,'_wp_attachment_image_alt','vertical response integration winery website'),
(1598,1579,'_wp_attachment_image_alt','noaa wine website partner'),
(1599,1562,'_wp_attachment_image_alt','compli wine software'),
(1600,1577,'_wp_attachment_image_alt','winery advisor website integration'),
(1601,1587,'_edit_lock','1541050198:2'),
(1602,1587,'_edit_last','2'),
(1603,1587,'_wp_page_template','default'),
(1604,1587,'ninzio_page_subtitle',''),
(1605,1587,'ninzio_page_sidebar','none'),
(1606,1587,'ninzio_page_title_background_color',''),
(1607,1587,'ninzio_page_title_background_color_opacity','1'),
(1608,1587,'ninzio_page_title_text_color','#ffffff'),
(1609,1587,'ninzio_page_subtitle_background_color',''),
(1610,1587,'ninzio_page_subtitle_background_color_opacity','1'),
(1611,1587,'ninzio_page_subtitle_text_color','#ffffff'),
(1612,1587,'ninzio_page_title_section_background_color','#f6f6f6'),
(1613,1587,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/header22.jpg'),
(1614,1587,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1615,1587,'ninzio_page_title_section_background_image_position','center_top'),
(1616,1587,'ninzio_page_title_section_background_image_attachment','scroll'),
(1617,1587,'ninzio_page_title_section_background_image_size','auto'),
(1618,1587,'ninzio_slider','no'),
(1619,1587,'ninzio_page_layout','yes'),
(1620,1587,'ninzio_page_twitter','no'),
(1621,1587,'ninzio_page_padding_top','yes'),
(1622,1587,'ninzio_rich_header','yes'),
(1623,1587,'ninzio_page_title_section_background_image_parallax','no'),
(1624,1588,'_edit_lock','1492560466:2'),
(1625,1588,'_edit_last','2'),
(1626,1588,'_wp_page_template','default'),
(1627,1588,'ninzio_page_subtitle',''),
(1628,1588,'ninzio_page_sidebar','none'),
(1629,1588,'ninzio_page_title_background_color',''),
(1630,1588,'ninzio_page_title_background_color_opacity','1'),
(1631,1588,'ninzio_page_title_text_color','#ffffff'),
(1632,1588,'ninzio_page_subtitle_background_color',''),
(1633,1588,'ninzio_page_subtitle_background_color_opacity','1'),
(1634,1588,'ninzio_page_subtitle_text_color','#ffffff'),
(1635,1588,'ninzio_page_title_section_background_color',''),
(1636,1588,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/05/header61.jpg'),
(1637,1588,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1638,1588,'ninzio_page_title_section_background_image_position','center_top'),
(1639,1588,'ninzio_page_title_section_background_image_attachment','scroll'),
(1640,1588,'ninzio_page_title_section_background_image_size','auto'),
(1641,1588,'ninzio_slider','no'),
(1642,1588,'ninzio_page_layout','yes'),
(1643,1588,'ninzio_page_twitter','no'),
(1644,1588,'ninzio_page_padding_top','yes'),
(1645,1588,'ninzio_rich_header','yes'),
(1646,1588,'ninzio_page_title_section_background_image_parallax','no'),
(1647,1589,'_edit_lock','1603753308:2'),
(1648,1589,'_edit_last','2'),
(1649,1589,'_wp_page_template','default'),
(1650,1589,'ninzio_page_subtitle',''),
(1651,1589,'ninzio_page_sidebar','none'),
(1652,1589,'ninzio_page_title_background_color','#ffffff'),
(1653,1589,'ninzio_page_title_background_color_opacity','0.25'),
(1654,1589,'ninzio_page_title_text_color','#000000'),
(1655,1589,'ninzio_page_subtitle_background_color',''),
(1656,1589,'ninzio_page_subtitle_background_color_opacity','0.25'),
(1657,1589,'ninzio_page_subtitle_text_color','#ffffff'),
(1658,1589,'ninzio_page_title_section_background_color','#f6f6f6'),
(1659,1589,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/03/gatewaygraphic_2.png'),
(1660,1589,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1661,1589,'ninzio_page_title_section_background_image_position','center_center'),
(1662,1589,'ninzio_page_title_section_background_image_attachment','scroll'),
(1663,1589,'ninzio_page_title_section_background_image_size','auto'),
(1664,1589,'ninzio_slider','no'),
(1665,1589,'ninzio_page_layout','yes'),
(1666,1589,'ninzio_page_twitter','no'),
(1667,1589,'ninzio_page_padding_top','yes'),
(1668,1589,'ninzio_rich_header','yes'),
(1669,1589,'ninzio_page_title_section_background_image_parallax','no'),
(1670,1590,'_edit_lock','1567735626:15'),
(1671,1590,'_edit_last','2'),
(1672,1590,'_wp_page_template','default'),
(1673,1590,'ninzio_page_subtitle',''),
(1674,1590,'ninzio_page_sidebar','none'),
(1675,1590,'ninzio_page_title_background_color',''),
(1676,1590,'ninzio_page_title_background_color_opacity','1'),
(1677,1590,'ninzio_page_title_text_color','#ffffff'),
(1678,1590,'ninzio_page_subtitle_background_color',''),
(1679,1590,'ninzio_page_subtitle_background_color_opacity','1'),
(1680,1590,'ninzio_page_subtitle_text_color','#ffffff'),
(1681,1590,'ninzio_page_title_section_background_color',''),
(1682,1590,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/04/QuickbooksPage_3.png'),
(1683,1590,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1684,1590,'ninzio_page_title_section_background_image_position','center_top'),
(1685,1590,'ninzio_page_title_section_background_image_attachment','scroll'),
(1686,1590,'ninzio_page_title_section_background_image_size','auto'),
(1687,1590,'ninzio_slider','no'),
(1688,1590,'ninzio_page_layout','yes'),
(1689,1590,'ninzio_page_twitter','no'),
(1690,1590,'ninzio_page_padding_top','yes'),
(1691,1590,'ninzio_rich_header','yes'),
(1692,1590,'ninzio_page_title_section_background_image_parallax','no'),
(1693,1591,'_edit_lock','1558723517:2'),
(1694,1591,'_edit_last','2'),
(1695,1591,'_wp_page_template','default'),
(1696,1591,'ninzio_page_subtitle',''),
(1697,1591,'ninzio_page_sidebar','none'),
(1698,1591,'ninzio_page_title_background_color',''),
(1699,1591,'ninzio_page_title_background_color_opacity','1'),
(1700,1591,'ninzio_page_title_text_color','#ffffff'),
(1701,1591,'ninzio_page_subtitle_background_color',''),
(1702,1591,'ninzio_page_subtitle_background_color_opacity','1'),
(1703,1591,'ninzio_page_subtitle_text_color','#ffffff'),
(1704,1591,'ninzio_page_title_section_background_color','#f6f6f6'),
(1705,1591,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/10/compliancebackground.png'),
(1706,1591,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1707,1591,'ninzio_page_title_section_background_image_position','center_top'),
(1708,1591,'ninzio_page_title_section_background_image_attachment','scroll'),
(1709,1591,'ninzio_page_title_section_background_image_size','auto'),
(1710,1591,'ninzio_slider','no'),
(1711,1591,'ninzio_page_layout','no'),
(1712,1591,'ninzio_page_twitter','no'),
(1713,1591,'ninzio_page_padding_top','yes'),
(1714,1591,'ninzio_rich_header','no'),
(1715,1591,'ninzio_page_title_section_background_image_parallax','no'),
(1716,1592,'_edit_lock','1541050299:2'),
(1717,1592,'_edit_last','2'),
(1718,1592,'_wp_page_template','default'),
(1719,1592,'ninzio_page_subtitle',''),
(1720,1592,'ninzio_page_sidebar','none'),
(1721,1592,'ninzio_page_title_background_color','#ffffff'),
(1722,1592,'ninzio_page_title_background_color_opacity','0.1'),
(1723,1592,'ninzio_page_title_text_color','#000000'),
(1724,1592,'ninzio_page_subtitle_background_color',''),
(1725,1592,'ninzio_page_subtitle_background_color_opacity','1'),
(1726,1592,'ninzio_page_subtitle_text_color','#ffffff'),
(1727,1592,'ninzio_page_title_section_background_color','#ffffff'),
(1728,1592,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/news161.jpg'),
(1729,1592,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1730,1592,'ninzio_page_title_section_background_image_position','center_top'),
(1731,1592,'ninzio_page_title_section_background_image_attachment','scroll'),
(1732,1592,'ninzio_page_title_section_background_image_size','auto'),
(1733,1592,'ninzio_slider','no'),
(1734,1592,'ninzio_page_layout','yes'),
(1735,1592,'ninzio_page_twitter','no'),
(1736,1592,'ninzio_page_padding_top','yes'),
(1737,1592,'ninzio_rich_header','yes'),
(1738,1592,'ninzio_page_title_section_background_image_parallax','no'),
(1739,1593,'_edit_lock','1541049977:2'),
(1740,1593,'_edit_last','2'),
(1741,1593,'_wp_page_template','default'),
(1742,1593,'ninzio_page_subtitle',''),
(1743,1593,'ninzio_page_sidebar','none'),
(1744,1593,'ninzio_page_title_background_color',''),
(1745,1593,'ninzio_page_title_background_color_opacity','1'),
(1746,1593,'ninzio_page_title_text_color','#ffffff'),
(1747,1593,'ninzio_page_subtitle_background_color',''),
(1748,1593,'ninzio_page_subtitle_background_color_opacity','1'),
(1749,1593,'ninzio_page_subtitle_text_color','#ffffff'),
(1750,1593,'ninzio_page_title_section_background_color','#f6f6f6'),
(1751,1593,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/01/CRMBackground_1.png'),
(1752,1593,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(1753,1593,'ninzio_page_title_section_background_image_position','center_top'),
(1754,1593,'ninzio_page_title_section_background_image_attachment','scroll'),
(1755,1593,'ninzio_page_title_section_background_image_size','auto'),
(1756,1593,'ninzio_slider','no'),
(1757,1593,'ninzio_page_layout','yes'),
(1758,1593,'ninzio_page_twitter','no'),
(1759,1593,'ninzio_page_padding_top','yes'),
(1760,1593,'ninzio_rich_header','yes'),
(1761,1593,'ninzio_page_title_section_background_image_parallax','no'),
(1762,1594,'_menu_item_type','post_type'),
(1763,1594,'_menu_item_menu_item_parent','1446'),
(1764,1594,'_menu_item_object_id','1593'),
(1765,1594,'_menu_item_object','page'),
(1766,1594,'_menu_item_target',''),
(1767,1594,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1768,1594,'_menu_item_xfn',''),
(1769,1594,'_menu_item_url',''),
(1771,1595,'_menu_item_type','post_type'),
(1772,1595,'_menu_item_menu_item_parent','1446'),
(1773,1595,'_menu_item_object_id','1592'),
(1774,1595,'_menu_item_object','page'),
(1775,1595,'_menu_item_target',''),
(1776,1595,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1777,1595,'_menu_item_xfn',''),
(1778,1595,'_menu_item_url',''),
(1780,1596,'_menu_item_type','post_type'),
(1781,1596,'_menu_item_menu_item_parent','1446'),
(1782,1596,'_menu_item_object_id','1591'),
(1783,1596,'_menu_item_object','page'),
(1784,1596,'_menu_item_target',''),
(1785,1596,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1786,1596,'_menu_item_xfn',''),
(1787,1596,'_menu_item_url',''),
(1789,1597,'_menu_item_type','post_type'),
(1790,1597,'_menu_item_menu_item_parent','1444'),
(1791,1597,'_menu_item_object_id','1590'),
(1792,1597,'_menu_item_object','page'),
(1793,1597,'_menu_item_target',''),
(1794,1597,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1795,1597,'_menu_item_xfn',''),
(1796,1597,'_menu_item_url',''),
(1798,1598,'_menu_item_type','post_type'),
(1799,1598,'_menu_item_menu_item_parent','1446'),
(1800,1598,'_menu_item_object_id','1589'),
(1801,1598,'_menu_item_object','page'),
(1802,1598,'_menu_item_target',''),
(1803,1598,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1804,1598,'_menu_item_xfn',''),
(1805,1598,'_menu_item_url',''),
(1816,1600,'_menu_item_type','post_type'),
(1817,1600,'_menu_item_menu_item_parent','1446'),
(1818,1600,'_menu_item_object_id','1587'),
(1819,1600,'_menu_item_object','page'),
(1820,1600,'_menu_item_target',''),
(1821,1600,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(1822,1600,'_menu_item_xfn',''),
(1823,1600,'_menu_item_url',''),
(1825,1575,'_wp_attachment_image_alt','Gravity payments gateway'),
(1826,1574,'_wp_attachment_image_alt','Intuit quickbooks payment gateway'),
(1828,1572,'_wp_attachment_image_alt','pivotal payments'),
(1829,1569,'_wp_attachment_image_alt','intuit small business solutions'),
(1830,1567,'_wp_attachment_image_alt','Intuit Quickbooks POS'),
(1831,1571,'_wp_attachment_image_alt','SDG Business Solutions integration'),
(1832,1570,'_wp_attachment_image_alt','English Management Solutions'),
(1835,1565,'_wp_attachment_image_alt','baril compliance service'),
(1836,1564,'_wp_attachment_image_alt','wine compliance pro'),
(1837,1561,'_wp_attachment_image_alt','solutrix'),
(1838,1608,'_wp_attached_file','2014/07/partner-ci.jpg'),
(1839,1608,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:22:\"2014/07/partner-ci.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"partner-ci-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1840,1609,'_wp_attached_file','2014/07/partner-zebra.jpg'),
(1841,1609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2014/07/partner-zebra.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"partner-zebra-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1842,1609,'_wp_attachment_image_alt','zebra technologies'),
(1843,1608,'_wp_attachment_image_alt','ci solutions'),
(1844,1552,'_wp_attachment_image_alt','alexander valley cellars'),
(1845,1554,'_wp_attachment_image_alt','Bacchus Fulfillment'),
(1846,1556,'_wp_attachment_image_alt','Copper Peak Logistics'),
(1847,1559,'_wp_attachment_image_alt','Oregon Wine Services and Storage'),
(1848,1560,'_wp_attachment_image_alt','WSC Direct'),
(1849,1553,'_wp_attachment_image_alt','Pack N Ship Direct'),
(1850,1555,'_wp_attachment_image_alt','Wine Shipping'),
(1851,1557,'_wp_attachment_image_alt','WineCo LLC'),
(1852,1558,'_wp_attachment_image_alt','Wine Country Shipping'),
(1859,1611,'_wp_attached_file','2014/03/home-block11.jpg'),
(1860,1611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:589;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2014/03/home-block11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-block11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-block11-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"home-block11-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1861,1611,'_wp_attachment_image_alt','Active Club Winery & Vineyard Management Software'),
(1862,1612,'_wp_attached_file','2014/08/slide2.jpg'),
(1863,1612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:584;s:4:\"file\";s:18:\"2014/08/slide2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slide2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"slide2-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"slide2-1024x311.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:311;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:18:\"slide2-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:18:\"slide2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:18:\"slide2-894x584.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:19:\"slide2-1200x584.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1864,1612,'_wp_attachment_image_alt','leader in wine club software since 2003'),
(1874,1621,'_edit_lock','1560796955:2'),
(1875,1621,'_edit_last','2'),
(1876,1621,'background_image','https://activeclubsolutions.net/wp-content/uploads/2018/04/goldengatenightfall_1.png'),
(1877,1621,'background_color','#f7f7f7'),
(1878,1621,'background_video_mp4',''),
(1879,1621,'background_video_ogv',''),
(1880,1621,'background_video_webm',''),
(1881,1621,'background_image_parallax','no'),
(1882,1621,'layer_1','<div style=\"margin: auto; padding: 0; width: 1200px;\"><img src=\"/wp-content/uploads/2017/01/iPadOrderHistory_4.png\" alt=\"Wine Club Software\" width=\"500\" height=\"329\" />\r\n\r\n</div><!-- <div style=\"margin: auto; padding: 0;\"><img src=\"/wp-content/uploads/2016/08/acm_on_monitor.png\" alt=\"Active Club Manager\" width=\"1200\" height=\"584\" /></div>-->'),
(1883,1621,'layer_index_1','active'),
(1884,1621,'layer_delay_1','600'),
(1885,1621,'layer_duration_1','800'),
(1886,1621,'layer_opacity_1','1'),
(1887,1621,'layer_zindex_1','1'),
(1888,1621,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(1889,1621,'layer_direction_1','top'),
(1890,1621,'layer_posx_1','330'),
(1891,1621,'layer_posy_1','150'),
(1892,1621,'layer_2','<div style=\"margin: none; width: 1900px;\">\r\n<img src=\"/wp-content/uploads/2017/07/iPhoneCart-skewed.png\" alt=\"eCommerce on iPhone\"  width=\"144px;\" height=\"300px\" />\r\n</div>\r\n\r\n<div style=\"margin-top: -140px; margin-left: -160px; padding: 0; width: 1900px;\">\r\n<img src=\"/wp-content/uploads/2017/07/iPhoneMembership-skewed.png\" alt=\"Active Club Dashboard on iPhone\" width=\"144px;\" height=\"300px;\" />\r\n</div>\r\n\r\n'),
(1893,1621,'layer_index_2','active'),
(1894,1621,'layer_delay_2','400'),
(1895,1621,'layer_duration_2','400'),
(1896,1621,'layer_opacity_2','1'),
(1897,1621,'layer_zindex_2','1'),
(1898,1621,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(1899,1621,'layer_direction_2','bottom'),
(1900,1621,'layer_posx_2','1024'),
(1901,1621,'layer_posy_2','100'),
(1902,1621,'layer_3','<!--<div style=\"margin: auto; padding: 0; width: 1200px;\"><img src=\"/wp-content/uploads/2014/08/1-3.png\" alt=\"Wine Club Software\" width=\"1200\" height=\"584\" /></div>-->\r\n<!--<div style=\"margin: none; width: 1200px;\"><img src=\"/wp-content/uploads/2016/08/pos-ipad-skew.png\" alt=\"Wine Club Software\" width=\"274\" height=\"194\" /></div>-->\r\n\r\n<div style=\"margin: none; width: 1200px;\"><img src=\"/wp-content/uploads/2017/07/iPadWhiteSkewedPOS_3.png\" alt=\"Wine Club Software\" width=\"300\" height=\"237\" /></div>'),
(1903,1621,'layer_index_3','active'),
(1904,1621,'layer_delay_3','500'),
(1905,1621,'layer_duration_3','500'),
(1906,1621,'layer_opacity_3','1'),
(1907,1621,'layer_zindex_3','1'),
(1908,1621,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(1909,1621,'layer_direction_3','bottom'),
(1910,1621,'layer_posx_3','0'),
(1911,1621,'layer_posy_3','310'),
(1912,1621,'layer_4','<!--<div style=\"margin: auto; padding: 0; position: relative; text-align: center; color: #fff; font-size: 33px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; width: 1200px;\">KEEP YOUR FINGERS ON THE PULSE OF YOUR DTC WINE SALES</div>-->\r\n\r\n<!--<div style=\"margin: auto; padding: 0; position: relative; text-align: center; width: 1200px;\">\r\n<h2 style=\"text-align: center; font-size: 60px; color: #000; text-transform: uppercase; font-weight: bold; letter-spacing: 2px;\">All in one single database</h2>\r\n</div>-->\r\n\r\n<div style=\"margin: auto; padding: 0; position: relative; text-align: center; width: 1200px; font-size: 33px; color: #eee; letter-spacing: 2px; font-weight: 600;\">\r\n<div style=\"margin: 0 0 15px 0;\">Cloud Tasting Room POS, Club Automation, eCommerce, Loyalty, </div>\r\n<div style=\"margin: 0 0 0 0;\">Marketing, Multi-Location Inventory, Gift Cards, Accounting</div>\r\n</div>'),
(1913,1621,'layer_index_4','active'),
(1914,1621,'layer_delay_4','2000'),
(1915,1621,'layer_duration_4','600'),
(1916,1621,'layer_opacity_4','1'),
(1917,1621,'layer_zindex_4','1'),
(1918,1621,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(1919,1621,'layer_direction_4','top'),
(1920,1621,'layer_posx_4','0'),
(1921,1621,'layer_posy_4','35'),
(1922,1621,'layer_5','<div style=\"margin: none; width: 1200px;\"><img src=\"/wp-content/uploads/2017/07/PCmonitorWithACM_4.png\" alt=\"Wine Club Software\" width=\"500\" height=\"302\" /></div>\r\n\r\n\r\n'),
(1923,1621,'layer_index_5','active'),
(1924,1621,'layer_delay_5','600'),
(1925,1621,'layer_duration_5','700'),
(1926,1621,'layer_opacity_5','0'),
(1927,1621,'layer_zindex_5','1'),
(1928,1621,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(1929,1621,'layer_direction_5','left_top'),
(1930,1621,'layer_posx_5','-85'),
(1931,1621,'layer_posy_5','110'),
(1932,1621,'layer_6','<div style=\"margin-left: 185px; margin-top: 100px; padding: 0; width: 1900px;\">\r\n<img src=\"/wp-content/uploads/2017/02/EMViPadCheckout.png\" alt=\"Tasting Room Software\" width=\"787\" height=\"456\" />\r\n</div>\r\n\r\n<div style=\"margin-left: -18px; margin-top: -25px; text-align: center; width: 1200px;\">\r\n<h2 style=\"text-align: center; font-size: 45px; color: #eee; font-weight: bold;\">Mobile <a style=\"color:gold;\">EMV</a> Reader</h2>\r\n</div>'),
(1933,1621,'layer_index_6','active'),
(1934,1621,'layer_delay_6','5000'),
(1935,1621,'layer_duration_6','0'),
(1936,1621,'layer_opacity_6','1'),
(1937,1621,'layer_zindex_6','1'),
(1938,1621,'layer_easing_6','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(1939,1621,'layer_direction_6','none'),
(1940,1621,'layer_posx_6','0'),
(1941,1621,'layer_posy_6','0'),
(1942,1621,'layer_7','<!--<div style=\"margin: auto; padding: 0; position: relative; text-align: center; width: 1200px;\">\r\n<span style=\"text-align: center; font-family: \'Cabin Condensed\'; font-size: 54px; color: #666; text-transform: uppercase; font-weight: 600; letter-spacing: 8px;\">It\'s a new dawn</span>\r\n</div>-->\r\n\r\n<!--<div style=\"margin-top: 10px; padding: 0; position: relative; text-align: center; width: 1200px;\">\r\n<span style=\"text-align: center; font-family: \'Cabin Condensed\'; font-size: 94px; color: #222; font-weight: 800; letter-spacing: 38px;\">Activate</span>\r\n</div>\r\n<div style=\"margin-top: 30px; margin-left: 14px; padding: 0; position: relative; text-align: center; width: 1200px;\">\r\n<span style=\"text-align: center; font-family: \'Cabin Condensed\'; font-size: 64px; color: #333; font-weight: 400; letter-spacing: 8px;\">knowledge</span>\r\n</div>-->>\r\n\r\n'),
(1943,1621,'layer_index_7',''),
(1944,1621,'layer_delay_7','7000'),
(1945,1621,'layer_duration_7','1600'),
(1946,1621,'layer_opacity_7','1'),
(1947,1621,'layer_zindex_7','1'),
(1948,1621,'layer_easing_7','cubic-bezier(0.390, 0.575, 0.565, 1.000)'),
(1949,1621,'layer_direction_7','left'),
(1950,1621,'layer_posx_7','-16'),
(1951,1621,'layer_posy_7','265'),
(1953,1624,'_wp_attached_file','2014/08/1-12.png'),
(1954,1624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:584;s:4:\"file\";s:16:\"2014/08/1-12.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"1-12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"1-12-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"1-12-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:16:\"1-12-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:16:\"1-12-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:16:\"1-12-894x584.png\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1955,1625,'_wp_attached_file','2014/08/1-2.png'),
(1956,1625,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:584;s:4:\"file\";s:15:\"2014/08/1-2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-2-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"1-2-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:15:\"1-2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:15:\"1-2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:15:\"1-2-894x584.png\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1957,1626,'_wp_attached_file','2014/08/1-3.png'),
(1958,1626,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:584;s:4:\"file\";s:15:\"2014/08/1-3.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-3-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"1-3-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:15:\"1-3-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:15:\"1-3-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:15:\"1-3-894x584.png\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1959,1627,'_wp_attached_file','2014/08/1-bg.png'),
(1960,1627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:584;s:4:\"file\";s:16:\"2014/08/1-bg.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"1-bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-bg-300x91.png\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"1-bg-1024x311.png\";s:5:\"width\";i:1024;s:6:\"height\";i:311;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:16:\"1-bg-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:16:\"1-bg-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:16:\"1-bg-894x584.png\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:17:\"1-bg-1200x584.png\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1961,1628,'_edit_lock','1541044389:2'),
(1962,1629,'_wp_attached_file','2014/08/2-2.png'),
(1963,1629,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:584;s:4:\"file\";s:15:\"2014/08/2-2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-2-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"2-2-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:15:\"2-2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:15:\"2-2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:15:\"2-2-894x584.png\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1964,1630,'_wp_attached_file','2014/08/2-bg.jpg'),
(1965,1630,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:584;s:4:\"file\";s:16:\"2014/08/2-bg.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"2-bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-bg-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"2-bg-1024x311.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:311;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:16:\"2-bg-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:16:\"2-bg-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:16:\"2-bg-894x584.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:17:\"2-bg-1200x584.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1966,1631,'_wp_attached_file','2014/08/3-1.png'),
(1967,1631,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:584;s:4:\"file\";s:15:\"2014/08/3-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"3-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"3-1-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"3-1-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:15:\"3-1-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:15:\"3-1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:15:\"3-1-894x584.png\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1968,1632,'_wp_attached_file','2014/08/3-bg.jpg'),
(1969,1632,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:584;s:4:\"file\";s:16:\"2014/08/3-bg.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"3-bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"3-bg-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"3-bg-1024x311.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:311;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:16:\"3-bg-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:16:\"3-bg-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:16:\"3-bg-894x584.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:17:\"3-bg-1200x584.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1970,1633,'_wp_attached_file','2014/08/4-bg.jpg'),
(1971,1633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:584;s:4:\"file\";s:16:\"2014/08/4-bg.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"4-bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"4-bg-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"4-bg-1024x311.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:311;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:16:\"4-bg-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:16:\"4-bg-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:16:\"4-bg-894x584.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:17:\"4-bg-1200x584.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(1972,1628,'_edit_last','2'),
(1973,1628,'background_image','https://activeclubsolutions.net/wp-content/uploads/2017/04/PrettyBlueToBlack.png'),
(1974,1628,'background_color',''),
(1975,1628,'background_video_mp4',''),
(1976,1628,'background_video_ogv',''),
(1977,1628,'background_video_webm',''),
(1978,1628,'background_image_parallax','no'),
(1979,1628,'layer_1','<div style=\"margin: auto; padding: 0; width: 1200px;\">\r\n<img src=\"/wp-content/uploads/2014/08/2-2.png\" alt=\"Automated Wine Club Processing\" width=\"1027\" height=\"500\" />\r\n</div>'),
(1980,1628,'layer_index_1','active'),
(1981,1628,'layer_delay_1','300'),
(1982,1628,'layer_duration_1','800'),
(1983,1628,'layer_opacity_1','1'),
(1984,1628,'layer_zindex_1','1'),
(1985,1628,'layer_easing_1','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(1986,1628,'layer_direction_1','left'),
(1987,1628,'layer_posx_1','0'),
(1988,1628,'layer_posy_1','110'),
(1989,1628,'layer_2','<div style=\"margin: auto; padding: 0; width: 1200px;\">\r\n<div style=\"margin: auto; padding: 150px 0 0 0; width: 650px; float: right;\">\r\n<span style=\"color: #fff; font-size: 30px; font-style: italic;\">Optimize efficiency with</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 30px 0 0 0; width: 650px; float: right;\">\r\n<span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 45px; font-weight: 600;\">Automated Club Processing</span>\r\n</div>\r\n</div>'),
(1990,1628,'layer_index_2','active'),
(1991,1628,'layer_delay_2','500'),
(1992,1628,'layer_duration_2','400'),
(1993,1628,'layer_opacity_2','1'),
(1994,1628,'layer_zindex_2','1'),
(1995,1628,'layer_easing_2','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(1996,1628,'layer_direction_2','right'),
(1997,1628,'layer_posx_2','0'),
(1998,1628,'layer_posy_2','0'),
(1999,1628,'layer_3',''),
(2000,1628,'layer_index_3','active'),
(2001,1628,'layer_delay_3','0'),
(2002,1628,'layer_duration_3','0'),
(2003,1628,'layer_opacity_3','1'),
(2004,1628,'layer_zindex_3','1'),
(2005,1628,'layer_easing_3','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2006,1628,'layer_direction_3','right'),
(2007,1628,'layer_posx_3','0'),
(2008,1628,'layer_posy_3','0'),
(2009,1628,'layer_4','<div style=\"margin: auto; padding: 0; width: 1200px;\">\r\n<div style=\"margin: auto; padding: 290px 0 0 0; width: 650px; float: right;\">\r\n<span style=\"color: #fff; font-size: 25px; line-height: 35px;\">Our virtual robot works for you 24/7 to process orders,<br />handle payments, and manage your memberships.</span>\r\n</div>\r\n</div>\r\n\r\n'),
(2010,1628,'layer_index_4','active'),
(2011,1628,'layer_delay_4','600'),
(2012,1628,'layer_duration_4','400'),
(2013,1628,'layer_opacity_4','1'),
(2014,1628,'layer_zindex_4','1'),
(2015,1628,'layer_easing_4','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2016,1628,'layer_direction_4','right'),
(2017,1628,'layer_posx_4','0'),
(2018,1628,'layer_posy_4','0'),
(2019,1628,'layer_5','<div style=\"margin: auto; padding: 0; width: 1200px;\">\r\n<div style=\"margin: auto; padding: 0 0 0 0; width: 750px; float: right;\">\r\n<span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 45px; font-weight: 600;\">Our club Wizard is a must-see</span>\r\n</div>\r\n</div>\r\n\r\n'),
(2020,1628,'layer_index_5','active'),
(2021,1628,'layer_delay_5','1500'),
(2022,1628,'layer_duration_5','400'),
(2023,1628,'layer_opacity_5','1'),
(2024,1628,'layer_zindex_5','1'),
(2025,1628,'layer_easing_5','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2026,1628,'layer_direction_5','right'),
(2027,1628,'layer_posx_5','0'),
(2028,1628,'layer_posy_5','50'),
(2029,1628,'layer_6','<img src=\"/wp-content/uploads/2017/01/wizard160x160.png\" alt=\"wizard\" width=\"130\" height=\"130\" class=\"aligncenter size-full wp-image-2294\" />'),
(2030,1628,'layer_index_6','active'),
(2031,1628,'layer_delay_6','6000'),
(2032,1628,'layer_duration_6','1500'),
(2033,1628,'layer_opacity_6','1'),
(2034,1628,'layer_zindex_6','1'),
(2035,1628,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2036,1628,'layer_direction_6','left_top'),
(2037,1628,'layer_posx_6','134'),
(2038,1628,'layer_posy_6','40'),
(2039,1628,'layer_7','<div style=\"margin: auto; padding: 0; width: 1200px;\">\r\n<div style=\"margin: auto; padding: 365px 0 0 0; width: 650px; float: right;\">\r\n<span style=\"color: #fff; font-size: 25px; line-height: 35px;\">&#10003; package clubs<br>&#10003; member choice / futures / allocation clubs<br>&#10003; placeholder clubs</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 28px 0 0 0; width: 650px; float: right;\">\r\n<a class=\"button large button-icon\" style=\"border: none;\" href=\"/winery-pos-features/wine-club-management/\" target=\"_self\">Learn More</a> <a class=\"button large button-icon\" style=\"border: none;\" href=\"/winery-pos-features/\" target=\"_self\">All Features</a>\r\n</div>\r\n</div>\r\n'),
(2040,1628,'layer_index_7','active'),
(2041,1628,'layer_delay_7','3000'),
(2042,1628,'layer_duration_7','200'),
(2043,1628,'layer_opacity_7','1'),
(2044,1628,'layer_zindex_7','1'),
(2045,1628,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2046,1628,'layer_direction_7','right'),
(2047,1628,'layer_posx_7','0'),
(2048,1628,'layer_posy_7','0'),
(2049,1628,'_wp_old_slug','1628'),
(2050,1634,'_edit_lock','1567490175:2'),
(2051,1634,'_edit_last','2'),
(2052,1634,'background_image','https://activeclubsolutions.net/wp-content/uploads/2017/08/marketing_2.png'),
(2053,1634,'background_color',''),
(2054,1634,'background_video_mp4',''),
(2055,1634,'background_video_ogv',''),
(2056,1634,'background_video_webm',''),
(2057,1634,'background_image_parallax','no'),
(2058,1634,'layer_1','<div style=\"margin: auto; padding: 67px 0 0 0; width: 1200px;\"><span style=\"color: #fff; font-size: 30px; font-style: italic;\">Promote consumer loyalty with valuable</span></div>\r\n\r\n<div style=\"margin: auto; padding: 28px 0 0 0; width: 1200px;\"><span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 70px; font-weight: 600; line-height: 80px;\">Marketing &amp;</span></div>\r\n\r\n<div style=\"margin: auto; padding: 8px 0 0 0; width: 1200px;\"><span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 55px; font-weight: 600; line-height: 65px;\">Customer Relationship<br />Management</span></div>\r\n\r\n<div style=\"margin: auto; padding: 0px 0 0 0; width: 1200px;\">\r\n<span style=\"color: #ccc; font-size: 25px; line-height: 35px;\">Our club management software includes vital tools<br />such as automated e-mail, financial statistics,<br/>membership reporting, source tracking, and more</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 20px 0 0 0; position: relative; width: 1200px;\"><a class=\"button large button-icon\" style=\"border: none;\" href=\"/winery-pos-features/marketing-crm-customer-service/\" target=\"_self\">Learn More</a> <a class=\"button large button-icon\" style=\"border: none;\" href=\"/winery-pos-features/\" target=\"_self\">All Features</a></div>'),
(2059,1634,'layer_index_1','active'),
(2060,1634,'layer_delay_1','400'),
(2061,1634,'layer_duration_1','400'),
(2062,1634,'layer_opacity_1','1'),
(2063,1634,'layer_zindex_1','1'),
(2064,1634,'layer_easing_1','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2065,1634,'layer_direction_1','left'),
(2066,1634,'layer_posx_1','0'),
(2067,1634,'layer_posy_1','0'),
(2068,1634,'layer_2','<div style=\"margin: auto; padding: 0 0 0 0; width: 670px; float: right;\"><span style=\"color: #fff; font-size: 26px; font-style: none;\">Easy e-mail from customizable templates<br>- including database fields</span></div>'),
(2069,1634,'layer_index_2','active'),
(2070,1634,'layer_delay_2','1500'),
(2071,1634,'layer_duration_2','700'),
(2072,1634,'layer_opacity_2','1'),
(2073,1634,'layer_zindex_2','1'),
(2074,1634,'layer_easing_2','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2075,1634,'layer_direction_2','right'),
(2076,1634,'layer_posx_2','650'),
(2077,1634,'layer_posy_2','30'),
(2078,1634,'layer_3','<div style=\"margin: auto; padding: 0 0 0 0; width: 670px; float: right;\"><span style=\"color: #fff; font-size: 26px; font-style: none;\">Beautiful customizable receipts- e-mail or print</span></div>'),
(2079,1634,'layer_index_3','active'),
(2080,1634,'layer_delay_3','3000'),
(2081,1634,'layer_duration_3','700'),
(2082,1634,'layer_opacity_3','1'),
(2083,1634,'layer_zindex_3','1'),
(2084,1634,'layer_easing_3','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2085,1634,'layer_direction_3','right'),
(2086,1634,'layer_posx_3','650'),
(2087,1634,'layer_posy_3','124'),
(2088,1634,'layer_4','<div style=\"margin: auto; padding: 0 0 0 0; width: 670px; float: right;\"><span style=\"color: #fff; font-size: 27px; font-style: none;\"><b>Fully automated:</b></span></div>'),
(2089,1634,'layer_index_4','active'),
(2090,1634,'layer_delay_4','4500'),
(2091,1634,'layer_duration_4','700'),
(2092,1634,'layer_opacity_4','1'),
(2093,1634,'layer_zindex_4','1'),
(2094,1634,'layer_easing_4','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2095,1634,'layer_direction_4','right'),
(2096,1634,'layer_posx_4','650'),
(2097,1634,'layer_posy_4','175'),
(2098,1634,'layer_5','<div style=\"margin: auto; padding: 0 0 0 0; width: 670px; float: right;\"><span style=\"color: #fff; font-size: 26px; font-style: none;\">\r\n<ul>\r\n<li>member birthday cards</li>\r\n<li>membership anniversary cards</li>\r\n<li>spouse birthday cards</li>\r\n<li>wedding anniversary cards</li>\r\n</ul>\r\n</span>\r\n</div>'),
(2099,1634,'layer_index_5','active'),
(2100,1634,'layer_delay_5','5000'),
(2101,1634,'layer_duration_5','700'),
(2102,1634,'layer_opacity_5','1'),
(2103,1634,'layer_zindex_5','1'),
(2104,1634,'layer_easing_5','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2105,1634,'layer_direction_5','right'),
(2106,1634,'layer_posx_5','680'),
(2107,1634,'layer_posy_5','220'),
(2108,1634,'layer_6','<div style=\"margin: auto; padding: 0 0 0 0; width: 670px; float: right;\">\r\n<span style=\"color: #fff; font-size: 26px; font-style: none;\">\r\n<ul>\r\n<li>address validation</li>\r\n<li>membership statistics snapshots</li>\r\n<li>employee club signup incentive system</li>\r\n<li>expiration, suspension, and restart dates</li>\r\n</ul>\r\n</span>\r\n</div>'),
(2109,1634,'layer_index_6','active'),
(2110,1634,'layer_delay_6','6500'),
(2111,1634,'layer_duration_6','700'),
(2112,1634,'layer_opacity_6','1'),
(2113,1634,'layer_zindex_6','1'),
(2114,1634,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2115,1634,'layer_direction_6','right'),
(2116,1634,'layer_posx_6','680'),
(2117,1634,'layer_posy_6','335'),
(2118,1634,'layer_7','<div style=\"margin: auto; padding: 0 0 0 0; width: 670px; float: right;\">\r\n<span style=\"color: #fff; font-size: 26px; font-style: none;\">\r\n<ul>\r\n<li>packages delivered e-mail</li>\r\n<li>shipping problem notifications</li>\r\n<li>member proximity determination</li>\r\n<li>more...</li>\r\n</ul>\r\n</span></div>'),
(2119,1634,'layer_index_7','active'),
(2120,1634,'layer_delay_7','8000'),
(2121,1634,'layer_duration_7','700'),
(2122,1634,'layer_opacity_7','1'),
(2123,1634,'layer_zindex_7','1'),
(2124,1634,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2125,1634,'layer_direction_7','right'),
(2126,1634,'layer_posx_7','680'),
(2127,1634,'layer_posy_7','455'),
(2128,1636,'_edit_lock','1541044226:2'),
(2129,1636,'_edit_last','2'),
(2130,1636,'background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/news3.jpg'),
(2131,1636,'background_color',''),
(2132,1636,'background_video_mp4',''),
(2133,1636,'background_video_ogv',''),
(2134,1636,'background_video_webm',''),
(2135,1636,'background_image_parallax','no'),
(2136,1636,'layer_1','<div style=\"margin: auto; padding: 0; width: 1200px;\">\r\n<div style=\"margin: auto; padding: 40px 0 0 0; width: auto;\">\r\n<span style=\"color: #fff; font-size: 30px; font-style: italic;\">Catapult your sales to the next level with our</span>\r\n</div></div>\r\n\r\n<div style=\"margin: auto; padding: 0; width: 1200px;\">\r\n<div style=\"margin: auto; padding: 25px 0 0 0; width: auto;\">\r\n<span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 45px; font-weight: 600;\">Embedded <strong><em><span style=\"text-transform: none;\">iframe</span></em><strong>  Shopping Cart</strong></strong></span>\r\n</div></div>\r\n\r\n<div style=\"margin: auto; padding: 0; width: 1200px;\">\r\n<div style=\"margin: auto; padding: 35px 0 0 0; width: auto;\">\r\n<span style=\"color: black; font-size: 27px; font-weight: bold; line-height: 32px;\">Our shopping cart is easily embedded right</span>\r\n<span style=\"color: black; font-size: 27px; font-weight: bold; line-height: 32px;\">into your website</span>\r\n</div>\r\n<div style=\"margin: auto; padding: 25px 0 0 0; width: auto;\">\r\n<span style=\"color: black; font-size: 27px; font-weight: bold; line-height: 32px;\">Responsive to any screen size</span>\r\n</div>\r\n<div style=\"margin: auto; padding: 25px 0 0 0; width: auto;\">\r\n<span style=\"color: black; font-size: 27px; font-weight: bold; line-height: 32px;\">Appearance has infinite possibilities</span>\r\n<span style=\"color: black; font-size: 27px; font-weight: bold; line-height: 32px;\">Text and images are controlled from your database</span>\r\n<span style=\"color: black; font-size: 27px; font-weight: bold; line-height: 32px;\">Persistent page state without cookies</span>\r\n<span style=\"color: black; font-size: 27px; font-weight: bold; line-height: 32px;\">Abandoned cart</span>\r\n<span style=\"color: black; font-size: 27px; font-weight: bold; line-height: 32px;\">Gift cards on cart</span>\r\n<span style=\"color: black; font-size: 27px; font-weight: bold; line-height: 32px;\">Template designs</span>\r\n</div>\r\n<div style=\"margin: auto; padding: 25px 0 0 0; width: auto;\">\r\n<span style=\"color: black; font-size: 27px; font-weight: bold; line-height: 32px;\">Integral part of the Active software</span>\r\n</div>\r\n</div>\r\n\r\n'),
(2137,1636,'layer_index_1','active'),
(2138,1636,'layer_delay_1','400'),
(2139,1636,'layer_duration_1','400'),
(2140,1636,'layer_opacity_1','1'),
(2141,1636,'layer_zindex_1','1'),
(2142,1636,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2143,1636,'layer_direction_1','right'),
(2144,1636,'layer_posx_1','530'),
(2145,1636,'layer_posy_1','0'),
(2146,1636,'layer_2','<div style=\"margin: auto; padding: 75px 0 0 0; width: 1920px;\">\r\n<img class=\"alignleft size-full\" src=\"/wp-content/uploads/2017/01/CartCatalog.png\" alt=\"eCommerce\" width=\"497\" height=\"400\" />\r\n</div>'),
(2147,1636,'layer_index_2','active'),
(2148,1636,'layer_delay_2','600'),
(2149,1636,'layer_duration_2','800'),
(2150,1636,'layer_opacity_2','1'),
(2151,1636,'layer_zindex_2','1'),
(2152,1636,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2153,1636,'layer_direction_2','left'),
(2154,1636,'layer_posx_2','0'),
(2155,1636,'layer_posy_2','0'),
(2156,1636,'layer_3','<div style=\"margin: auto; padding: 75px 0 0 0; width: 1920px;\">\r\n<img class=\"alignleft size-full\" src=\"/wp-content/uploads/2017/01/CartElement.png\" alt=\"eCommerce\" width=\"497\" height=\"400\" />\r\n</div>'),
(2157,1636,'layer_index_3','active'),
(2158,1636,'layer_delay_3','2500'),
(2159,1636,'layer_duration_3','800'),
(2160,1636,'layer_opacity_3','1'),
(2161,1636,'layer_zindex_3','1'),
(2162,1636,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2163,1636,'layer_direction_3','left'),
(2164,1636,'layer_posx_3','0'),
(2165,1636,'layer_posy_3','0'),
(2166,1636,'layer_4','<div style=\"margin: auto; padding: 75px 0 0 0; width: 1920px;\">\r\n<img class=\"alignleft size-full\" src=\"/wp-content/uploads/2017/01/CartMiniBasket.png\" alt=\"eCommerce\" width=\"497\" height=\"400\" />\r\n</div>'),
(2167,1636,'layer_index_4','active'),
(2168,1636,'layer_delay_4','5000'),
(2169,1636,'layer_duration_4','800'),
(2170,1636,'layer_opacity_4','1'),
(2171,1636,'layer_zindex_4','1'),
(2172,1636,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2173,1636,'layer_direction_4','left'),
(2174,1636,'layer_posx_4','0'),
(2175,1636,'layer_posy_4','0'),
(2176,1636,'layer_5','<div style=\"margin: auto; padding: 75px 0 0 0; width: 1920px;\">\r\n<img class=\"alignleft size-full\" src=\"/wp-content/uploads/2017/01/CartShoppingCart.png\" alt=\"eCommerce\" width=\"497\" height=\"400\" />\r\n</div>'),
(2177,1636,'layer_index_5','active'),
(2178,1636,'layer_delay_5','7500'),
(2179,1636,'layer_duration_5','800'),
(2180,1636,'layer_opacity_5','1'),
(2181,1636,'layer_zindex_5','1'),
(2182,1636,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2183,1636,'layer_direction_5','left'),
(2184,1636,'layer_posx_5','0'),
(2185,1636,'layer_posy_5','0'),
(2186,1636,'layer_6','<div style=\"margin: auto; padding: 75px 0 0 0; width: 1920px;\">\r\n<img class=\"alignleft size-full\" src=\"/wp-content/uploads/2017/01/CartCheckout.png\" alt=\"eCommerce\" width=\"497\" height=\"400\" />\r\n</div>'),
(2187,1636,'layer_index_6','active'),
(2188,1636,'layer_delay_6','10000'),
(2189,1636,'layer_duration_6','800'),
(2190,1636,'layer_opacity_6','1'),
(2191,1636,'layer_zindex_6','1'),
(2192,1636,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2193,1636,'layer_direction_6','left'),
(2194,1636,'layer_posx_6','0'),
(2195,1636,'layer_posy_6','0'),
(2196,1636,'layer_7','<div style=\"margin: auto; padding: 75px 0 0 0; width: 1920px;\">\r\n<img class=\"alignleft size-full\" src=\"/wp-content/uploads/2017/01/CartOrderReview.png\" alt=\"eCommerce\" width=\"497\" height=\"400\" />\r\n</div>'),
(2197,1636,'layer_index_7',''),
(2198,1636,'layer_delay_7','12500'),
(2199,1636,'layer_duration_7','800'),
(2200,1636,'layer_opacity_7','1'),
(2201,1636,'layer_zindex_7','1'),
(2202,1636,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2203,1636,'layer_direction_7','left'),
(2204,1636,'layer_posx_7','0'),
(2205,1636,'layer_posy_7','0'),
(2209,848,'ninzio_one_page','no'),
(2213,1639,'_edit_lock','1541280452:2'),
(2214,1639,'_edit_last','2'),
(2219,1639,'background_image','https://activeclubsolutions.net/wp-content/uploads/2018/11/personcarryingbox.jpg'),
(2220,1639,'background_color',''),
(2221,1639,'background_video_mp4',''),
(2222,1639,'background_video_ogv',''),
(2223,1639,'background_video_webm',''),
(2224,1639,'background_image_parallax','no'),
(2225,1639,'layer_1','<div style=\"margin: auto; padding: 0; width: 1200px;\"><img src=\"/wp-content/uploads/2018/01/integrations_13.png\" alt=\"eCommerce software for wine sales with shipping fedex ups gso integration payment gateway integration first data vantiv worldpay intuit quickbooks accounting integration\" width=\"1024\" height=\"498\" /></div>'),
(2226,1639,'layer_index_1','active'),
(2227,1639,'layer_delay_1','400'),
(2228,1639,'layer_duration_1','400'),
(2229,1639,'layer_opacity_1','1'),
(2230,1639,'layer_zindex_1','1'),
(2231,1639,'layer_easing_1','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2232,1639,'layer_direction_1','right'),
(2233,1639,'layer_posx_1','200'),
(2234,1639,'layer_posy_1','50'),
(2235,1639,'layer_2','<div style=\"margin: auto; padding: 50px 0 0 0; width: 1200px;\"><span style=\"color: #fff; font-size: 30px; font-style: italic; line-height: 38px;\">Increase productivity with seamless integration<br>of the most popular services and software for</span></div>\r\n\r\n<div style=\"margin: auto; padding: 15px 0 0 0; width: 1200px;\"><span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 48px; font-weight: 600; line-height: 58px;\">Shipping, Fulfillment, Weather,<br>Payments, Accounting,<br>Compliance, and Marketing</span></div>\r\n\r\n<div style=\"margin: auto; padding: 15px 0 0 0; width: 1200px;\"><span style=\"color: #ccc; font-size: 25px; line-height: 35px;\">Our software integrates with partners such as  Quickbooks Accounting,<br>FedEx, UPS, GSO, ShipCompliant, OpenEdge, EVO Payments,<br>SocketLabs, Constant Contact, Vertical Response and many more.</span></div>'),
(2236,1639,'layer_index_2','active'),
(2237,1639,'layer_delay_2','450'),
(2238,1639,'layer_duration_2','400'),
(2239,1639,'layer_opacity_2','1'),
(2240,1639,'layer_zindex_2','1'),
(2241,1639,'layer_easing_2','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2242,1639,'layer_direction_2','left'),
(2243,1639,'layer_posx_2','0'),
(2244,1639,'layer_posy_2','0'),
(2245,1639,'layer_3','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 25px; line-height: 30px;\">Our software prints FedEx, GSO, and UPS shipping labels</span>\r\n</div>'),
(2246,1639,'layer_index_3','active'),
(2247,1639,'layer_delay_3','5000'),
(2248,1639,'layer_duration_3','500'),
(2249,1639,'layer_opacity_3','1'),
(2250,1639,'layer_zindex_3','1'),
(2251,1639,'layer_easing_3','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2252,1639,'layer_direction_3','bottom'),
(2253,1639,'layer_posx_3','550'),
(2254,1639,'layer_posy_3','540'),
(2255,1639,'layer_4','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 25px; line-height: 30px;\">Our software includes a 7 day weather report on all shipments</span>\r\n</div>'),
(2256,1639,'layer_index_4','active'),
(2257,1639,'layer_delay_4','7000'),
(2258,1639,'layer_duration_4','600'),
(2259,1639,'layer_opacity_4','1'),
(2260,1639,'layer_zindex_4','1'),
(2261,1639,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2262,1639,'layer_direction_4','left_bottom'),
(2263,1639,'layer_posx_4','0'),
(2264,1639,'layer_posy_4','460'),
(2265,1639,'layer_5','<div style=\"margin: auto; padding: 480px 0 0 0; float: left; width: 1200px;\"><div style=\"margin: auto; padding: 35px 0 0 0; width: 1200px;\"><a class=\"button large button-icon\" style=\"border: none;\" href=\"/active-club-solutions-partners/\" target=\"_self\">Learn More</a><a class=\"button large button-icon\" style=\"border: none;\" href=\"/winery-pos-features/accounting/\" target=\"_self\">Accounting Features</a></div></div>'),
(2266,1639,'layer_index_5','active'),
(2267,1639,'layer_delay_5','600'),
(2268,1639,'layer_duration_5','400'),
(2269,1639,'layer_opacity_5','1'),
(2270,1639,'layer_zindex_5','1'),
(2271,1639,'layer_easing_5','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(2272,1639,'layer_direction_5','left'),
(2273,1639,'layer_posx_5','0'),
(2274,1639,'layer_posy_5','0'),
(2275,1639,'layer_6',''),
(2276,1639,'layer_index_6','active'),
(2277,1639,'layer_delay_6','0'),
(2278,1639,'layer_duration_6','0'),
(2279,1639,'layer_opacity_6','1'),
(2280,1639,'layer_zindex_6','1'),
(2281,1639,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2282,1639,'layer_direction_6','none'),
(2283,1639,'layer_posx_6','0'),
(2284,1639,'layer_posy_6','0'),
(2285,1639,'layer_7',''),
(2286,1639,'layer_index_7','active'),
(2287,1639,'layer_delay_7','0'),
(2288,1639,'layer_duration_7','0'),
(2289,1639,'layer_opacity_7','1'),
(2290,1639,'layer_zindex_7','1'),
(2291,1639,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(2292,1639,'layer_direction_7','none'),
(2293,1639,'layer_posx_7','0'),
(2294,1639,'layer_posy_7','0'),
(2295,1436,'ninzio_one_page','no'),
(2298,1435,'ninzio_one_page','no'),
(2301,1493,'ninzio_one_page','no'),
(2302,1644,'_wp_attached_file','2014/07/header9.jpg'),
(2303,1644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:19:\"2014/07/header9.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"header9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"header9-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"header9-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"header9-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"header9-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:19:\"header9-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:20:\"header9-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2304,1494,'ninzio_one_page','no'),
(2305,1645,'_wp_attached_file','2014/07/header10.jpg'),
(2306,1645,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header10.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header10-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header10-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header10-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header10-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header10-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header10-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2307,1646,'_wp_attached_file','2014/07/header11.jpg'),
(2308,1646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header11.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header11-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header11-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header11-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header11-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header11-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header11-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2309,1495,'ninzio_one_page','no'),
(2312,1496,'ninzio_one_page','no'),
(2313,1648,'_wp_attached_file','2014/07/header12.jpg'),
(2314,1648,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header12.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header12-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header12-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header12-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header12-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header12-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header12-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2319,1651,'_wp_attached_file','2014/07/header13.jpg'),
(2320,1651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header13.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header13-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header13-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header13-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header13-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header13-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header13-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2321,1652,'_wp_attached_file','2014/07/header15.jpg'),
(2322,1652,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header15.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header15-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header15-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header15-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header15-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header15-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header15-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2323,1653,'_wp_attached_file','2014/07/header14.jpg'),
(2324,1653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header14.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header14-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header14-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header14-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header14-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header14-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header14-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2325,1497,'ninzio_one_page','no'),
(2326,1654,'_wp_attached_file','2014/07/header16.jpg'),
(2327,1654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header16.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header16-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header16-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header16-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header16-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header16-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header16-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2328,1498,'ninzio_one_page','no'),
(2329,992,'ninzio_one_page','no'),
(2330,508,'ninzio_one_page','no'),
(2331,1655,'_wp_attached_file','2014/07/header23.jpg'),
(2332,1655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header23.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header23-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header23-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header23-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header23-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header23-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header23-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header23-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2333,1656,'_wp_attached_file','2014/07/header22.jpg'),
(2334,1656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header22.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header22-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header22-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header22-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header22-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header22-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header22-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2335,1657,'_wp_attached_file','2014/07/header21.jpg'),
(2336,1657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header21.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header21-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header21-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header21-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header21-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header21-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header21-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2339,1659,'_wp_attached_file','2014/07/header19.jpg'),
(2340,1659,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header19.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header19-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header19-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header19-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header19-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header19-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header19-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2341,1660,'_wp_attached_file','2014/07/header18.jpg'),
(2342,1660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header18.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header18-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header18-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header18-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header18-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header18-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header18-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2343,1661,'_wp_attached_file','2014/07/header17.jpg'),
(2344,1661,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header17.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header17-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header17-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header17-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header17-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header17-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header17-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2345,1591,'ninzio_one_page','no'),
(2346,1662,'_wp_attached_file','2014/05/header24.jpg'),
(2347,1662,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/05/header24.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header24-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header24-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header24-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header24-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header24-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header24-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header24-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2348,1587,'ninzio_one_page','no'),
(2349,1589,'ninzio_one_page','no'),
(2350,1588,'ninzio_one_page','no'),
(2351,1590,'ninzio_one_page','no'),
(2352,1663,'_wp_attached_file','2014/07/header201.jpg'),
(2353,1663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2014/07/header201.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"header201-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"header201-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"header201-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"header201-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"header201-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"header201-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"header201-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2354,1592,'ninzio_one_page','no'),
(2355,1664,'_wp_attached_file','2014/07/header25.jpg'),
(2356,1664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/07/header25.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header25-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header25-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header25-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header25-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header25-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header25-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header25-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2357,1593,'ninzio_one_page','no'),
(2358,1665,'_wp_attached_file','2014/05/header31.jpg'),
(2359,1665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/05/header31.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header31-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header31-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header31-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header31-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header31-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header31-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header31-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2360,1666,'_wp_attached_file','2014/05/header51.jpg'),
(2361,1666,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/05/header51.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header51-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header51-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header51-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header51-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header51-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header51-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header51-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2362,1667,'_wp_attached_file','2014/05/header41.jpg'),
(2363,1667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/05/header41.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header41-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header41-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header41-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header41-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header41-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header41-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header41-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2369,1669,'_wp_attached_file','2014/05/header26.jpg'),
(2370,1669,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/05/header26.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header26-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header26-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header26-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header26-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header26-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header26-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header26-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2372,1459,'ninzio_one_page','no'),
(2373,1670,'_wp_attached_file','2014/05/header27.jpg'),
(2374,1670,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/05/header27.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header27-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header27-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header27-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header27-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header27-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header27-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header27-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2375,1438,'ninzio_one_page','no'),
(2376,1671,'_wp_attached_file','2014/05/header28.jpg'),
(2377,1671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2014/05/header28.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header28-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header28-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header28-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header28-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header28-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header28-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header28-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2378,1672,'_edit_lock','1416610543:2'),
(2379,1672,'_edit_last','2'),
(2385,1672,'ninzio_post_audio_mp3',''),
(2386,1672,'ninzio_post_audio_ogg',''),
(2387,1672,'ninzio_post_audio_embed',''),
(2388,1672,'ninzio_post_video_mp4',''),
(2389,1672,'ninzio_post_video_ogv',''),
(2390,1672,'ninzio_post_video_webm',''),
(2391,1672,'ninzio_post_video_embed',''),
(2392,1672,'ninzio_post_video_poster',''),
(2393,1672,'ninzio_post_link_url',''),
(2394,1672,'ninzio_post_image_url',''),
(2395,1672,'ninzio_post_image_description',''),
(2396,1672,'ninzio_post_status_author',''),
(2397,1672,'ninzio_post_quote_author',''),
(2398,1672,'ninzio_post_featured_media','yes'),
(2418,1526,'_wp_old_slug','who-is-this-from-you-get-to-choose'),
(2421,1528,'_wp_old_slug','use-active-club-managers-attractive-and-personalized-email-communications-to-better-serve-your-customers'),
(2423,1530,'_wp_old_slug','acknowledge-your-customers-on-their-birthday-without-remembering-or-doing-a-thing'),
(2428,1524,'_wp_old_slug','new-the-latest-and-smartest-in-customer-selections-customized-winemakers-selection-club'),
(2430,1521,'_wp_old_slug','active-club-solutions-is-proud-to-present-remote-active-club-manager'),
(2432,1517,'_wp_old_slug','start-managing-wine-club-and-e-commerce-inventory-and-allocations-better'),
(2436,1432,'_wp_old_slug','manage-your-wine-club-members-from-your-ipad-with-our-new-ipadtablet-app'),
(2438,1430,'_wp_old_slug','wine-club-software-vertical-response-constant-contact'),
(2443,1679,'_wp_attached_file','2014/09/3-1.png'),
(2444,1679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:584;s:4:\"file\";s:15:\"2014/09/3-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"3-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"3-1-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"3-1-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:15:\"3-1-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:15:\"3-1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:15:\"3-1-894x584.png\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),
(2445,1691,'_edit_lock','1415129219:2'),
(2446,1691,'_edit_last','2'),
(2447,1691,'_oembed_99de52f88b4b020859e46d7c0964a5cc','{{unknown}}'),
(2448,1691,'_oembed_ccf19268ddee384b2e3c1a73c6747bd9','{{unknown}}'),
(2449,1691,'ninzio_post_audio_mp3',''),
(2450,1691,'ninzio_post_audio_ogg',''),
(2451,1691,'ninzio_post_audio_embed',''),
(2452,1691,'ninzio_post_video_mp4',''),
(2453,1691,'ninzio_post_video_ogv',''),
(2454,1691,'ninzio_post_video_webm',''),
(2455,1691,'ninzio_post_video_embed','<!-- copy and paste. Modify height and width if desired. --><iframe class=\"tscplayer_inline embeddedObject\" name=\"tsc_player\" scrolling=\"no\" frameborder=\"0\" type=\"text/html\" style=\"overflow:hidden;\" src=\"http://www.screencast.com/users/ActiveClubMgmt/folders/Tutorials/media/3b44119a-225d-49e8-a44c-50c3dc8dcc79/embed\"  webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> '),
(2456,1691,'ninzio_post_video_poster',''),
(2457,1691,'ninzio_post_link_url',''),
(2458,1691,'ninzio_post_image_url',''),
(2459,1691,'ninzio_post_image_description',''),
(2460,1691,'ninzio_post_status_author',''),
(2461,1691,'ninzio_post_quote_author',''),
(2462,1691,'ninzio_post_featured_media','yes'),
(2464,1692,'_edit_lock','1415129742:2'),
(2465,1692,'_edit_last','2'),
(2466,1692,'ninzio_post_audio_mp3',''),
(2467,1692,'ninzio_post_audio_ogg',''),
(2468,1692,'ninzio_post_audio_embed',''),
(2469,1692,'ninzio_post_video_mp4',''),
(2470,1692,'ninzio_post_video_ogv',''),
(2471,1692,'ninzio_post_video_webm',''),
(2472,1692,'ninzio_post_video_embed',''),
(2473,1692,'ninzio_post_video_poster',''),
(2474,1692,'ninzio_post_link_url',''),
(2475,1692,'ninzio_post_image_url','http://www.secureclub.net/images/activeclubmgmt/integrateshipping.jpg'),
(2476,1692,'ninzio_post_image_description','Integrated Shipping'),
(2477,1692,'ninzio_post_status_author',''),
(2478,1692,'ninzio_post_quote_author',''),
(2479,1692,'ninzio_post_featured_media','yes'),
(2483,1694,'_edit_lock','1415129872:2'),
(2484,1694,'_edit_last','2'),
(2485,1695,'_wp_attached_file','2014/10/rubino-webpage.jpg'),
(2486,1695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1062;s:6:\"height\";i:853;s:4:\"file\";s:26:\"2014/10/rubino-webpage.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"rubino-webpage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"rubino-webpage-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"rubino-webpage-1024x822.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:822;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"rubino-webpage-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"rubino-webpage-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"rubino-webpage-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"rubino-webpage-1062x588.jpg\";s:5:\"width\";i:1062;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2487,1694,'_thumbnail_id','1695'),
(2488,1694,'ninzio_post_audio_mp3',''),
(2489,1694,'ninzio_post_audio_ogg',''),
(2490,1694,'ninzio_post_audio_embed',''),
(2491,1694,'ninzio_post_video_mp4',''),
(2492,1694,'ninzio_post_video_ogv',''),
(2493,1694,'ninzio_post_video_webm',''),
(2494,1694,'ninzio_post_video_embed',''),
(2495,1694,'ninzio_post_video_poster',''),
(2496,1694,'ninzio_post_link_url',''),
(2497,1694,'ninzio_post_image_url',''),
(2498,1694,'ninzio_post_image_description',''),
(2499,1694,'ninzio_post_status_author',''),
(2500,1694,'ninzio_post_quote_author',''),
(2501,1694,'ninzio_post_featured_media','yes'),
(2506,1696,'_wp_attached_file','2014/10/integratedshipping.jpg'),
(2507,1696,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1482;s:6:\"height\";i:1296;s:4:\"file\";s:30:\"2014/10/integratedshipping.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"integratedshipping-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"integratedshipping-300x262.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"integratedshipping-1024x895.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:895;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"integratedshipping-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"integratedshipping-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"integratedshipping-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"integratedshipping-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2508,1692,'_thumbnail_id','1696'),
(2510,1697,'_edit_lock','1423763610:2'),
(2511,1697,'_edit_last','2'),
(2512,1697,'ninzio_post_audio_mp3',''),
(2513,1697,'ninzio_post_audio_ogg',''),
(2514,1697,'ninzio_post_audio_embed',''),
(2515,1697,'ninzio_post_video_mp4',''),
(2516,1697,'ninzio_post_video_ogv',''),
(2517,1697,'ninzio_post_video_webm',''),
(2518,1697,'ninzio_post_video_embed',''),
(2519,1697,'ninzio_post_video_poster',''),
(2520,1697,'ninzio_post_link_url',''),
(2521,1697,'ninzio_post_image_url',''),
(2522,1697,'ninzio_post_image_description',''),
(2523,1697,'ninzio_post_status_author',''),
(2524,1697,'ninzio_post_quote_author',''),
(2525,1697,'ninzio_post_featured_media','yes'),
(2526,1698,'_wp_attached_file','2014/10/mini-basket.jpg'),
(2527,1698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1897;s:6:\"height\";i:867;s:4:\"file\";s:23:\"2014/10/mini-basket.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mini-basket-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"mini-basket-300x137.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"mini-basket-1024x468.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"mini-basket-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"mini-basket-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"mini-basket-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"mini-basket-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2528,1697,'_thumbnail_id','1698'),
(2530,1700,'_edit_lock','1467419624:2'),
(2531,1700,'_edit_last','2'),
(2532,1700,'ninzio_post_audio_mp3',''),
(2533,1700,'ninzio_post_audio_ogg',''),
(2534,1700,'ninzio_post_audio_embed',''),
(2535,1700,'ninzio_post_video_mp4',''),
(2536,1700,'ninzio_post_video_ogv',''),
(2537,1700,'ninzio_post_video_webm',''),
(2538,1700,'ninzio_post_video_embed',''),
(2539,1700,'ninzio_post_video_poster',''),
(2540,1700,'ninzio_post_link_url',''),
(2541,1700,'ninzio_post_image_url',''),
(2542,1700,'ninzio_post_image_description',''),
(2543,1700,'ninzio_post_status_author',''),
(2544,1700,'ninzio_post_quote_author',''),
(2545,1700,'ninzio_post_featured_media','yes'),
(2546,1701,'_wp_attached_file','2014/10/NCWIE-e1414785370243.jpg'),
(2547,1701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:292;s:4:\"file\";s:32:\"2014/10/NCWIE-e1414785370243.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2549,1701,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:702;s:6:\"height\";i:1024;s:4:\"file\";s:9:\"NCWIE.jpg\";}s:18:\"full-1414785205197\";a:3:{s:5:\"width\";i:300;s:6:\"height\";i:438;s:4:\"file\";s:24:\"NCWIE-e1414785073375.jpg\";}}'),
(2550,1700,'_thumbnail_id','1701'),
(2552,1702,'_edit_lock','1467353673:2'),
(2553,1702,'_edit_last','2'),
(2554,1703,'_wp_attached_file','2014/10/download.jpg'),
(2555,1703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:265;s:6:\"height\";i:183;s:4:\"file\";s:20:\"2014/10/download.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"download-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2556,1702,'_thumbnail_id','1703'),
(2557,1702,'ninzio_post_audio_mp3',''),
(2558,1702,'ninzio_post_audio_ogg',''),
(2559,1702,'ninzio_post_audio_embed',''),
(2560,1702,'ninzio_post_video_mp4',''),
(2561,1702,'ninzio_post_video_ogv',''),
(2562,1702,'ninzio_post_video_webm',''),
(2563,1702,'ninzio_post_video_embed',''),
(2564,1702,'ninzio_post_video_poster',''),
(2565,1702,'ninzio_post_link_url',''),
(2566,1702,'ninzio_post_image_url',''),
(2567,1702,'ninzio_post_image_description',''),
(2568,1702,'ninzio_post_status_author',''),
(2569,1702,'ninzio_post_quote_author',''),
(2570,1702,'ninzio_post_featured_media','yes'),
(2586,1713,'_edit_lock','1615533140:2'),
(2587,1713,'_edit_last','2'),
(2588,1713,'wprss_url','https://activeclubsolutions.net'),
(2589,1713,'wprss_enclosure','false'),
(2590,1713,'wprss_force_feed','false'),
(2591,1713,'wprss_activate_feed',''),
(2592,1713,'wprss_pause_feed',''),
(2593,1713,'wprss_age_limit',''),
(2594,1713,'wprss_age_unit','days'),
(2595,1713,'wprss_update_interval','global'),
(2596,1713,'wprss_state','active'),
(2599,1713,'wprss_last_update','1763178804'),
(2600,1714,'wprss_item_permalink','https://activeclubsolutions.net/intelligent-mobile-friendly-branded-shopping-cart-new-feature/'),
(2601,1714,'wprss_item_enclosure',''),
(2602,1714,'wprss_item_author','Active Club Solutions'),
(2603,1714,'wprss_feed_id','1713'),
(2604,1715,'wprss_item_permalink','https://activeclubsolutions.net/2015-unified-wine-and-grape-symposium/'),
(2605,1715,'wprss_item_enclosure',''),
(2606,1715,'wprss_item_author','Active Club Solutions'),
(2607,1715,'wprss_feed_id','1713'),
(2608,1716,'wprss_item_permalink','https://activeclubsolutions.net/2014-north-coast-winery-expo/'),
(2609,1716,'wprss_item_enclosure',''),
(2610,1716,'wprss_item_author','Active Club Solutions'),
(2611,1716,'wprss_feed_id','1713'),
(2612,1717,'wprss_item_permalink','https://activeclubsolutions.net/over-the-top-shipping-integrations/'),
(2613,1717,'wprss_item_enclosure',''),
(2614,1717,'wprss_item_author','Active Club Solutions'),
(2615,1717,'wprss_feed_id','1713'),
(2616,1718,'wprss_item_permalink','https://activeclubsolutions.net/new-beautifully-branded-club-registration-and-member-login-webpages/'),
(2617,1718,'wprss_item_enclosure',''),
(2618,1718,'wprss_item_author','Active Club Solutions'),
(2619,1718,'wprss_feed_id','1713'),
(2620,1719,'wprss_item_permalink','https://activeclubsolutions.net/powerful-inventory-management/'),
(2621,1719,'wprss_item_enclosure',''),
(2622,1719,'wprss_item_author','Active Club Solutions'),
(2623,1719,'wprss_feed_id','1713'),
(2624,1720,'wprss_item_permalink','https://activeclubsolutions.net/paypros-decline-minimizer/'),
(2625,1720,'wprss_item_enclosure',''),
(2626,1720,'wprss_item_author','Active Club Solutions'),
(2627,1720,'wprss_feed_id','1713'),
(2628,1721,'wprss_item_permalink','https://activeclubsolutions.net/new-active-club-gift-message-card-printing/'),
(2629,1721,'wprss_item_enclosure',''),
(2630,1721,'wprss_item_author','Active Club Solutions'),
(2631,1721,'wprss_feed_id','1713'),
(2632,1722,'wprss_item_permalink','https://activeclubsolutions.net/fedex-integration-update/'),
(2633,1722,'wprss_item_enclosure',''),
(2634,1722,'wprss_item_author','Active Club Solutions'),
(2635,1722,'wprss_feed_id','1713'),
(2636,1723,'wprss_item_permalink','https://activeclubsolutions.net/new-quick-search-feature/'),
(2637,1723,'wprss_item_enclosure',''),
(2638,1723,'wprss_item_author','Active Club Solutions'),
(2639,1723,'wprss_feed_id','1713'),
(2640,1713,'wprss_last_update_items','0'),
(2641,1713,'wprss_next_update','14 mins'),
(2642,1713,'wprss_items_imported','38'),
(2670,1713,'wprss_site_url','https://activeclubsolutions.net/'),
(2671,1713,'wprss_feed_image',NULL),
(2692,1727,'_wp_attached_file','2014/05/OpenEdge.png'),
(2693,1727,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:189;s:6:\"height\";i:215;s:4:\"file\";s:20:\"2014/05/OpenEdge.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"OpenEdge-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:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2887,1736,'_wp_attached_file','2014/11/openedge.jpg'),
(2888,1736,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"2014/11/openedge.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"openedge-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"openedge-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"openedge-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"openedge-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"openedge-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"openedge-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"openedge-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2889,1737,'_wp_attached_file','2014/07/OpenedgeH.jpg'),
(2890,1737,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2014/07/OpenedgeH.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"OpenedgeH-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"OpenedgeH-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"OpenedgeH-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"OpenedgeH-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"OpenedgeH-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"OpenedgeH-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"OpenedgeH-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(2891,1737,'_edit_lock','1416601999:2'),
(2892,1737,'_edit_last','2'),
(2898,1672,'_thumbnail_id','1737'),
(3104,1742,'_edit_lock','1467353186:2'),
(3105,1742,'_edit_last','2'),
(3106,1742,'ninzio_post_audio_mp3',''),
(3107,1742,'ninzio_post_audio_ogg',''),
(3108,1742,'ninzio_post_audio_embed',''),
(3109,1742,'ninzio_post_video_mp4',''),
(3110,1742,'ninzio_post_video_ogv',''),
(3111,1742,'ninzio_post_video_webm',''),
(3112,1742,'ninzio_post_video_embed',''),
(3113,1742,'ninzio_post_video_poster',''),
(3114,1742,'ninzio_post_link_url',''),
(3115,1742,'ninzio_post_image_url',''),
(3116,1742,'ninzio_post_image_description',''),
(3117,1742,'ninzio_post_status_author',''),
(3118,1742,'ninzio_post_quote_author',''),
(3119,1742,'ninzio_post_featured_media','yes'),
(3120,1742,'_thumbnail_id','1582'),
(3123,1743,'wprss_item_permalink','https://activeclubsolutions.net/a-word-from-the-president-on-quickbooks-integrations/'),
(3124,1743,'wprss_item_enclosure',''),
(3125,1743,'wprss_item_author','Active Club Solutions'),
(3126,1743,'wprss_feed_id','1713'),
(3265,1744,'_edit_lock','1467353408:2'),
(3266,1744,'_edit_last','2'),
(3267,1745,'_wp_attached_file','2014/12/2015EWE.jpg'),
(3268,1745,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:346;s:4:\"file\";s:19:\"2014/12/2015EWE.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"2015EWE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"2015EWE-300x129.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"2015EWE-600x346.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"2015EWE-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3269,1744,'_oembed_42b76027c5709f6e380e7f603062a86b','{{unknown}}'),
(3270,1744,'_thumbnail_id','1745'),
(3271,1744,'ninzio_post_audio_mp3',''),
(3272,1744,'ninzio_post_audio_ogg',''),
(3273,1744,'ninzio_post_audio_embed',''),
(3274,1744,'ninzio_post_video_mp4',''),
(3275,1744,'ninzio_post_video_ogv',''),
(3276,1744,'ninzio_post_video_webm',''),
(3277,1744,'ninzio_post_video_embed',''),
(3278,1744,'ninzio_post_video_poster',''),
(3279,1744,'ninzio_post_link_url',''),
(3280,1744,'ninzio_post_image_url',''),
(3281,1744,'ninzio_post_image_description',''),
(3282,1744,'ninzio_post_status_author',''),
(3283,1744,'ninzio_post_quote_author',''),
(3284,1744,'ninzio_post_featured_media','yes'),
(3287,1746,'wprss_item_permalink','https://activeclubsolutions.net/2015-eastern-winery-expo/'),
(3288,1746,'wprss_item_enclosure',''),
(3289,1746,'wprss_item_author','Active Club Solutions'),
(3290,1746,'wprss_feed_id','1713'),
(3423,1753,'_edit_lock','1567486850:2'),
(3424,1753,'_edit_last','2'),
(3425,1753,'_wp_page_template','default'),
(3426,1753,'ninzio_page_subtitle','Easy, powerful mobile winery POS app customized to your needs and budget.'),
(3427,1753,'ninzio_page_sidebar','right'),
(3428,1753,'ninzio_page_title_background_color',''),
(3429,1753,'ninzio_page_title_background_color_opacity','1'),
(3430,1753,'ninzio_page_title_text_color','#ffffff'),
(3431,1753,'ninzio_page_subtitle_background_color',''),
(3432,1753,'ninzio_page_subtitle_background_color_opacity','1'),
(3433,1753,'ninzio_page_subtitle_text_color','#ffffff'),
(3434,1753,'ninzio_page_title_section_background_color','#f6f6f6'),
(3435,1753,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/03/glassintastingroom.png'),
(3436,1753,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(3437,1753,'ninzio_page_title_section_background_image_position','center_center'),
(3438,1753,'ninzio_page_title_section_background_image_attachment','scroll'),
(3439,1753,'ninzio_page_title_section_background_image_size','auto'),
(3440,1753,'ninzio_one_page','no'),
(3441,1753,'ninzio_slider','no'),
(3442,1753,'ninzio_page_layout','yes'),
(3443,1753,'ninzio_page_twitter','no'),
(3444,1753,'ninzio_page_padding_top','yes'),
(3445,1753,'ninzio_rich_header','no'),
(3446,1753,'ninzio_page_title_section_background_image_parallax','no'),
(3494,1768,'_edit_lock','1541051450:2'),
(3495,1768,'_edit_last','2'),
(3496,1768,'_wp_page_template','default'),
(3497,1768,'ninzio_page_subtitle','Easy powerful mobile winery POS customized to your needs'),
(3498,1768,'ninzio_page_sidebar','right'),
(3499,1768,'ninzio_page_title_background_color',''),
(3500,1768,'ninzio_page_title_background_color_opacity','1'),
(3501,1768,'ninzio_page_title_text_color','#ffffff'),
(3502,1768,'ninzio_page_subtitle_background_color',''),
(3503,1768,'ninzio_page_subtitle_background_color_opacity','1'),
(3504,1768,'ninzio_page_subtitle_text_color','#ffffff'),
(3505,1768,'ninzio_page_title_section_background_color','#f6f6f6'),
(3506,1768,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/header10.jpg'),
(3507,1768,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(3508,1768,'ninzio_page_title_section_background_image_position','center_center'),
(3509,1768,'ninzio_page_title_section_background_image_attachment','scroll'),
(3510,1768,'ninzio_page_title_section_background_image_size','auto'),
(3511,1768,'ninzio_one_page','no'),
(3512,1768,'ninzio_slider','no'),
(3513,1768,'ninzio_page_layout','yes'),
(3514,1768,'ninzio_page_twitter','no'),
(3515,1768,'ninzio_page_padding_top','yes'),
(3516,1768,'ninzio_rich_header','yes'),
(3517,1768,'ninzio_page_title_section_background_image_parallax','no'),
(3542,1770,'_wp_attached_file','2015/01/iPad-screenshot.png'),
(3543,1770,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:27:\"2015/01/iPad-screenshot.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"iPad-screenshot-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"iPad-screenshot-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"iPad-screenshot-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"iPad-screenshot-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"iPad-screenshot-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"iPad-screenshot-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"iPad-screenshot-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3549,1772,'_edit_lock','1541044324:2'),
(3552,1774,'_wp_attached_file','2015/01/6-bg.jpg'),
(3553,1774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:584;s:4:\"file\";s:16:\"2015/01/6-bg.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"6-bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"6-bg-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"6-bg-1024x311.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:311;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:16:\"6-bg-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:16:\"6-bg-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:16:\"6-bg-894x584.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:17:\"6-bg-1200x584.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3555,1772,'_edit_last','2'),
(3556,1772,'background_image','https://activeclubsolutions.net/wp-content/uploads/2017/03/glassintastingroom.png'),
(3557,1772,'background_color',''),
(3558,1772,'background_video_mp4',''),
(3559,1772,'background_video_ogv',''),
(3560,1772,'background_video_webm',''),
(3561,1772,'background_image_parallax','no'),
(3562,1772,'layer_1','<div style=\"margin: auto; padding: 40px 0 0 0; width: 1920px;\"><span style=\"color: #fff; font-size: 30px; font-style: italic; line-height: 38px;\">Change the way you sell with our</span></div>\r\n\r\n<div style=\"margin: auto; padding: 25px 0 0 0; width: 1920px;\"><span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 48px; font-weight: 600; line-height: 58px;\">Native iPad POS App</span></div>\r\n\r\n<div style=\"margin: auto; padding: 25px 0 0 0; width: 1920px;\"><span style=\"color: #fff; font-size: 25px; line-height: 35px;\">Create orders from customizable interface</span></div>\r\n\r\n<div style=\"margin: auto; padding: 5px 0 0 0; width: 1920px;\"><span style=\"color: #fff; font-size: 25px; line-height: 35px;\">Checkout using card on file / tips / gift cards</span></div>\r\n\r\n<div style=\"margin: auto; padding: 5px 0 0 0; width: 1920px;\"><span style=\"color: #fff; font-size: 25px; line-height: 35px;\">Pickup list / signature / order history / <b>swap</b></span></div>\r\n\r\n<div style=\"margin: auto; padding: 5px 0 0 0; width: 1920px;\"><span style=\"color: #fff; font-size: 25px; line-height: 35px;\">Customer lookup and registration</span></div>\r\n\r\n<div style=\"margin: auto; padding: 5px 0 0 0; width: 1920px;\"><span style=\"color: #fff; font-size: 25px; line-height: 35px;\">Pending orders - local and shared</span></div><div style=\"margin: auto; padding: 5px 0 0 0; width: 1920px;\"><span style=\"color: #fff; font-size: 25px; line-height: 35px;\">Mobile wholesale</span></div>\r\n\r\n<div style=\"margin: auto; padding: 5px 0 0 0; width: 1920px;\"><span style=\"color: #fff; font-size: 25px; line-height: 35px;\">Cash drawer / inventory / transfers</span></div>\r\n\r\n<div style=\"margin: auto; padding: 5px 0 0 0; width: 1920px;\"><span style=\"color: #fff; font-size: 25px; line-height: 35px;\">Barcode scanner</span></div>\r\n\r\n<div style=\"margin: auto; padding: 5px 0 0 0; width: 1920px;\"><span style=\"color: #fff; font-size: 25px; line-height: 35px;\">Kitchen printer and modifiers</span></div>'),
(3563,1772,'layer_index_1','active'),
(3564,1772,'layer_delay_1','400'),
(3565,1772,'layer_duration_1','500'),
(3566,1772,'layer_opacity_1','1'),
(3567,1772,'layer_zindex_1','1'),
(3568,1772,'layer_easing_1','cubic-bezier(0.250, 0.100, 0.250, 1.000)'),
(3569,1772,'layer_direction_1','left'),
(3570,1772,'layer_posx_1','0'),
(3571,1772,'layer_posy_1','0'),
(3572,1772,'layer_2','<div style=\"margin: auto; padding: 70px 120px; width: 1920px;\">\r\n<img src=\"/wp-content/uploads/2017/01/iPadNewOrder.png\" alt=\"Tasting Room POS\" width=\"635\" height=\"450\" class=\"aligncenter\"/>\r\n</div>\r\n'),
(3573,1772,'layer_index_2','active'),
(3574,1772,'layer_delay_2','400'),
(3575,1772,'layer_duration_2','700'),
(3576,1772,'layer_opacity_2','1'),
(3577,1772,'layer_zindex_2','1'),
(3578,1772,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(3579,1772,'layer_direction_2','right'),
(3580,1772,'layer_posx_2','0'),
(3581,1772,'layer_posy_2','0'),
(3582,1772,'layer_3','<div style=\"margin: auto; padding: 70px 120px; width: 1920px;\"><img src=\"/wp-content/uploads/2017/01/iPadCheckoutSlide.png\" alt=\"Tasting Room POS\" width=\"635\" height=\"450\" class=\"aligncenter\"/></div>\r\n\r\n'),
(3583,1772,'layer_index_3','active'),
(3584,1772,'layer_delay_3','2500'),
(3585,1772,'layer_duration_3','800'),
(3586,1772,'layer_opacity_3','1'),
(3587,1772,'layer_zindex_3','1'),
(3588,1772,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(3589,1772,'layer_direction_3','right'),
(3590,1772,'layer_posx_3','0'),
(3591,1772,'layer_posy_3','0'),
(3592,1772,'layer_4','<div style=\"margin: auto; padding: 70px 120px; width: 1920px;\">\r\n<img src=\"/wp-content/uploads/2017/01/iPadOrderHistory_4.png\" alt=\"Tasting Room POS\" width=\"635\" height=\"450\" class=\"aligncenter\"/>\r\n</div>'),
(3593,1772,'layer_index_4','active'),
(3594,1772,'layer_delay_4','5000'),
(3595,1772,'layer_duration_4','800'),
(3596,1772,'layer_opacity_4','1'),
(3597,1772,'layer_zindex_4','1'),
(3598,1772,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(3599,1772,'layer_direction_4','right'),
(3600,1772,'layer_posx_4','0'),
(3601,1772,'layer_posy_4','0'),
(3602,1772,'layer_5','<div style=\"margin: auto; padding: 70px 120px; width: 1920px;\">\r\n<img src=\"/wp-content/uploads/2017/01/iPadCustomer.png\" alt=\"Tasting Room POS\" width=\"635\" height=\"450\" class=\"aligncenter\"/>\r\n</div>'),
(3603,1772,'layer_index_5','active'),
(3604,1772,'layer_delay_5','7500'),
(3605,1772,'layer_duration_5','800'),
(3606,1772,'layer_opacity_5','1'),
(3607,1772,'layer_zindex_5','1'),
(3608,1772,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(3609,1772,'layer_direction_5','right'),
(3610,1772,'layer_posx_5','0'),
(3611,1772,'layer_posy_5','0'),
(3612,1772,'layer_6','<div style=\"margin: auto; padding: 70px 120px; width: 1920px;\">\r\n<img src=\"/wp-content/uploads/2017/01/iPadPending.png\" alt=\"Tasting Room POS\" width=\"635\" height=\"450\" class=\"aligncenter\"/>\r\n</div>'),
(3613,1772,'layer_index_6','active'),
(3614,1772,'layer_delay_6','10000'),
(3615,1772,'layer_duration_6','800'),
(3616,1772,'layer_opacity_6','1'),
(3617,1772,'layer_zindex_6','1'),
(3618,1772,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(3619,1772,'layer_direction_6','right'),
(3620,1772,'layer_posx_6','0'),
(3621,1772,'layer_posy_6','0'),
(3622,1772,'layer_7','<div style=\"margin: auto; padding: 70px 120px; width: 1920px;\">\r\n<img src=\"/wp-content/uploads/2017/01/iPadWholesale.png\" alt=\"Tasting Room POS\" width=\"635\" height=\"450\" class=\"aligncenter\"/>\r\n</div>\r\n\r\n'),
(3623,1772,'layer_index_7','active'),
(3624,1772,'layer_delay_7','12500'),
(3625,1772,'layer_duration_7','800'),
(3626,1772,'layer_opacity_7','1'),
(3627,1772,'layer_zindex_7','1'),
(3628,1772,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(3629,1772,'layer_direction_7','right'),
(3630,1772,'layer_posx_7','0'),
(3631,1772,'layer_posy_7','0'),
(3634,1776,'_wp_attached_file','2015/01/6-1.png'),
(3635,1776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:584;s:4:\"file\";s:15:\"2015/01/6-1.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"6-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"6-1-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"6-1-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:15:\"6-1-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:15:\"6-1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:15:\"6-1-894x584.png\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:16:\"6-1-1200x584.png\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3637,1777,'_edit_lock','1559680651:9'),
(3638,1777,'_edit_last','2'),
(3639,1777,'_wp_page_template','default'),
(3640,1777,'ninzio_page_subtitle',''),
(3641,1777,'ninzio_page_sidebar','none'),
(3642,1777,'ninzio_page_title_background_color',''),
(3643,1777,'ninzio_page_title_background_color_opacity','1'),
(3644,1777,'ninzio_page_title_text_color','#ffffff'),
(3645,1777,'ninzio_page_subtitle_background_color',''),
(3646,1777,'ninzio_page_subtitle_background_color_opacity','1'),
(3647,1777,'ninzio_page_subtitle_text_color','#ffffff'),
(3648,1777,'ninzio_page_title_section_background_color','#f6f6f6'),
(3649,1777,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/header201.jpg'),
(3650,1777,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(3651,1777,'ninzio_page_title_section_background_image_position','center_center'),
(3652,1777,'ninzio_page_title_section_background_image_attachment','scroll'),
(3653,1777,'ninzio_page_title_section_background_image_size','auto'),
(3654,1777,'ninzio_one_page','no'),
(3655,1777,'ninzio_slider','no'),
(3656,1777,'ninzio_page_layout','yes'),
(3657,1777,'ninzio_page_twitter','no'),
(3658,1777,'ninzio_page_padding_top','yes'),
(3659,1777,'ninzio_rich_header','yes'),
(3660,1777,'ninzio_page_title_section_background_image_parallax','no'),
(3661,1779,'_wp_attached_file','2015/01/POS-portal.jpg'),
(3662,1779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:22:\"2015/01/POS-portal.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"POS-portal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3669,1780,'_edit_lock','1467353682:2'),
(3670,1781,'_wp_attached_file','2015/01/richmond2015.jpg'),
(3671,1781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:240;s:4:\"file\";s:24:\"2015/01/richmond2015.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"richmond2015-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"richmond2015-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"richmond2015-384x240.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3672,1780,'_thumbnail_id','1781'),
(3673,1780,'_edit_last','2'),
(3674,1780,'ninzio_post_audio_mp3',''),
(3675,1780,'ninzio_post_audio_ogg',''),
(3676,1780,'ninzio_post_audio_embed',''),
(3677,1780,'ninzio_post_video_mp4',''),
(3678,1780,'ninzio_post_video_ogv',''),
(3679,1780,'ninzio_post_video_webm',''),
(3680,1780,'ninzio_post_video_embed',''),
(3681,1780,'ninzio_post_video_poster',''),
(3682,1780,'ninzio_post_link_url',''),
(3683,1780,'ninzio_post_image_url',''),
(3684,1780,'ninzio_post_image_description',''),
(3685,1780,'ninzio_post_status_author',''),
(3686,1780,'ninzio_post_quote_author',''),
(3687,1780,'ninzio_post_featured_media','yes'),
(3689,1782,'_edit_lock','1467353591:2'),
(3690,1782,'_edit_last','2'),
(3691,1783,'_wp_attached_file','2015/01/midwest.jpg'),
(3692,1783,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:312;s:4:\"file\";s:19:\"2015/01/midwest.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"midwest-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"midwest-288x300.jpg\";s:5:\"width\";i:288;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"midwest-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3693,1782,'_thumbnail_id','1783'),
(3694,1782,'ninzio_post_audio_mp3',''),
(3695,1782,'ninzio_post_audio_ogg',''),
(3696,1782,'ninzio_post_audio_embed',''),
(3697,1782,'ninzio_post_video_mp4',''),
(3698,1782,'ninzio_post_video_ogv',''),
(3699,1782,'ninzio_post_video_webm',''),
(3700,1782,'ninzio_post_video_embed',''),
(3701,1782,'ninzio_post_video_poster',''),
(3702,1782,'ninzio_post_link_url',''),
(3703,1782,'ninzio_post_image_url',''),
(3704,1782,'ninzio_post_image_description',''),
(3705,1782,'ninzio_post_status_author',''),
(3706,1782,'ninzio_post_quote_author',''),
(3707,1782,'ninzio_post_featured_media','yes'),
(3710,1784,'wprss_item_permalink','https://activeclubsolutions.net/2015-midwest-grape-and-wine-expo/'),
(3711,1784,'wprss_item_enclosure',''),
(3712,1784,'wprss_item_author','Active Club Solutions'),
(3713,1784,'wprss_feed_id','1713'),
(3714,1785,'wprss_item_permalink','https://activeclubsolutions.net/2015-craft-beverages-unlimited/'),
(3715,1785,'wprss_item_enclosure',''),
(3716,1785,'wprss_item_author','Active Club Solutions'),
(3717,1785,'wprss_feed_id','1713'),
(3718,1786,'_edit_lock','1447786969:2'),
(3719,1786,'_edit_last','2'),
(3720,1786,'ninzio_post_audio_mp3',''),
(3721,1786,'ninzio_post_audio_ogg',''),
(3722,1786,'ninzio_post_audio_embed',''),
(3723,1786,'ninzio_post_video_mp4',''),
(3724,1786,'ninzio_post_video_ogv',''),
(3725,1786,'ninzio_post_video_webm',''),
(3726,1786,'ninzio_post_video_embed',''),
(3727,1786,'ninzio_post_video_poster',''),
(3728,1786,'ninzio_post_link_url',''),
(3729,1786,'ninzio_post_image_url',''),
(3730,1786,'ninzio_post_image_description',''),
(3731,1786,'ninzio_post_status_author',''),
(3732,1786,'ninzio_post_quote_author',''),
(3733,1786,'ninzio_post_featured_media','yes'),
(3737,1787,'wprss_item_permalink','https://activeclubsolutions.net/new-the-active-club-mobile-pos/'),
(3738,1787,'wprss_item_enclosure',''),
(3739,1787,'wprss_item_author','Active Club Solutions'),
(3740,1787,'wprss_feed_id','1713'),
(3767,1790,'_edit_lock','1633562133:2'),
(3768,1790,'_edit_last','2'),
(3769,1790,'_wp_page_template','default'),
(3770,1790,'ninzio_page_subtitle','A great mobile POS for your tasting room or... anywhere'),
(3771,1790,'ninzio_page_sidebar','none'),
(3772,1790,'ninzio_page_title_background_color',''),
(3773,1790,'ninzio_page_title_background_color_opacity','1'),
(3774,1790,'ninzio_page_title_text_color','#ffffff'),
(3775,1790,'ninzio_page_subtitle_background_color',''),
(3776,1790,'ninzio_page_subtitle_background_color_opacity','1'),
(3777,1790,'ninzio_page_subtitle_text_color','#ffffff'),
(3778,1790,'ninzio_page_title_section_background_color','#f6f6f6'),
(3779,1790,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2015/01/header30.jpg'),
(3780,1790,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(3781,1790,'ninzio_page_title_section_background_image_position','left_top'),
(3782,1790,'ninzio_page_title_section_background_image_attachment','scroll'),
(3783,1790,'ninzio_page_title_section_background_image_size','auto'),
(3784,1790,'ninzio_one_page','no'),
(3785,1790,'ninzio_slider','no'),
(3786,1790,'ninzio_page_layout','yes'),
(3787,1790,'ninzio_page_twitter','no'),
(3788,1790,'ninzio_page_padding_top','yes'),
(3789,1790,'ninzio_rich_header','yes'),
(3790,1790,'ninzio_page_title_section_background_image_parallax','no'),
(3793,1793,'_wp_attached_file','2015/01/header30.jpg'),
(3794,1793,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:20:\"2015/01/header30.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"header30-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"header30-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"header30-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"header30-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"header30-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"header30-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"header30-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3795,1794,'_wp_attached_file','2015/01/winery-pos-ipad.jpg'),
(3796,1794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:714;s:4:\"file\";s:27:\"2015/01/winery-pos-ipad.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"winery-pos-ipad-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"winery-pos-ipad-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"winery-pos-ipad-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"winery-pos-ipad-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"winery-pos-ipad-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"winery-pos-ipad-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(3797,1794,'_wp_attachment_image_alt','Winery POS and ecommerce solution'),
(3809,1796,'_edit_lock','1567735375:15'),
(3810,1796,'_edit_last','2'),
(3811,1796,'_wp_page_template','default'),
(3812,1796,'ninzio_page_subtitle','<b>CHANGE THE WAY YOU SELL</b>'),
(3813,1796,'ninzio_page_sidebar','none'),
(3814,1796,'ninzio_page_title_background_color',''),
(3815,1796,'ninzio_page_title_background_color_opacity','1'),
(3816,1796,'ninzio_page_title_text_color','#ffffff'),
(3817,1796,'ninzio_page_subtitle_background_color',''),
(3818,1796,'ninzio_page_subtitle_background_color_opacity','1'),
(3819,1796,'ninzio_page_subtitle_text_color','#ffffff'),
(3820,1796,'ninzio_page_title_section_background_color','#f6f6f6'),
(3821,1796,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2015/01/header30.jpg'),
(3822,1796,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(3823,1796,'ninzio_page_title_section_background_image_position','center_top'),
(3824,1796,'ninzio_page_title_section_background_image_attachment','scroll'),
(3825,1796,'ninzio_page_title_section_background_image_size','auto'),
(3826,1796,'ninzio_one_page','no'),
(3827,1796,'ninzio_slider','no'),
(3828,1796,'ninzio_page_layout','yes'),
(3829,1796,'ninzio_page_twitter','no'),
(3830,1796,'ninzio_page_padding_top','yes'),
(3831,1796,'ninzio_rich_header','no'),
(3832,1796,'ninzio_page_title_section_background_image_parallax','no'),
(3834,1801,'_menu_item_type','post_type'),
(3835,1801,'_menu_item_menu_item_parent','1444'),
(3836,1801,'_menu_item_object_id','1796'),
(3837,1801,'_menu_item_object','page'),
(3838,1801,'_menu_item_target',''),
(3839,1801,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(3840,1801,'_menu_item_xfn',''),
(3841,1801,'_menu_item_url',''),
(3862,1772,'_wp_old_slug','1772'),
(3891,508,'wsw-settings','a:44:{s:13:\"keyword_value\";s:0:\"\";s:15:\"is_meta_keyword\";s:0:\"\";s:17:\"meta_keyword_type\";s:8:\"keywords\";s:13:\"is_meta_title\";s:0:\"\";s:10:\"meta_title\";s:0:\"\";s:19:\"is_meta_description\";s:0:\"\";s:21:\"is_meta_robot_noindex\";s:0:\"\";s:22:\"is_meta_robot_nofollow\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:17:\"is_over_sentences\";s:0:\"\";s:20:\"first_over_sentences\";s:0:\"\";s:19:\"last_over_sentences\";s:0:\"\";s:16:\"is_rich_snippets\";s:0:\"\";s:18:\"show_rich_snippets\";s:0:\"\";s:12:\"rating_value\";s:1:\"0\";s:13:\"review_author\";s:0:\"\";s:14:\"review_summary\";s:0:\"\";s:18:\"review_description\";s:0:\"\";s:10:\"event_name\";s:0:\"\";s:10:\"event_date\";s:0:\"\";s:9:\"event_url\";s:0:\"\";s:19:\"event_location_name\";s:0:\"\";s:21:\"event_location_street\";s:0:\"\";s:23:\"event_location_locality\";s:0:\"\";s:21:\"event_location_region\";s:0:\"\";s:12:\"people_fname\";s:0:\"\";s:12:\"people_lname\";s:0:\"\";s:15:\"people_locality\";s:0:\"\";s:13:\"people_region\";s:0:\"\";s:12:\"people_title\";s:0:\"\";s:14:\"people_homeurl\";s:0:\"\";s:15:\"people_photourl\";s:0:\"\";s:12:\"product_name\";s:0:\"\";s:16:\"product_imageurl\";s:0:\"\";s:19:\"product_description\";s:0:\"\";s:14:\"product_offers\";s:0:\"\";s:18:\"is_social_facebook\";s:0:\"\";s:25:\"social_facebook_publisher\";s:0:\"\";s:22:\"social_facebook_author\";s:0:\"\";s:21:\"social_facebook_title\";s:0:\"\";s:27:\"social_facebook_description\";s:0:\"\";s:17:\"is_social_twitter\";s:0:\"\";s:20:\"social_twitter_title\";s:0:\"\";s:26:\"social_twitter_description\";s:0:\"\";}'),
(3893,848,'_yoast_wpseo_focuskw','winery pos'),
(3894,848,'_yoast_wpseo_title','Winery POS wine club software winery ecommerce'),
(3895,848,'_yoast_wpseo_metadesc','Our winery software is an iPad winery POS, wineclub software, eCommerce all in one powerful tasting room solution.'),
(3896,848,'_yoast_wpseo_linkdex','56'),
(4047,1628,'_yoast_wpseo_title','wine club software'),
(4049,1772,'_yoast_wpseo_title','winery POS ipad winery pos wine club software'),
(4194,1790,'_yoast_wpseo_metadesc','Winery POS'),
(4574,1811,'_edit_lock','1507760733:2'),
(4575,1811,'_edit_last','2'),
(4576,1812,'_wp_attached_file','2015/02/thank-you-note.jpg'),
(4577,1812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:276;s:6:\"height\";i:183;s:4:\"file\";s:26:\"2015/02/thank-you-note.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"thank-you-note-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),
(4578,1811,'_thumbnail_id','1812'),
(4579,1811,'ninzio_post_audio_mp3',''),
(4580,1811,'ninzio_post_audio_ogg',''),
(4581,1811,'ninzio_post_audio_embed',''),
(4582,1811,'ninzio_post_video_mp4',''),
(4583,1811,'ninzio_post_video_ogv',''),
(4584,1811,'ninzio_post_video_webm',''),
(4585,1811,'ninzio_post_video_embed',''),
(4586,1811,'ninzio_post_video_poster',''),
(4587,1811,'ninzio_post_link_url',''),
(4588,1811,'ninzio_post_image_url',''),
(4589,1811,'ninzio_post_image_description',''),
(4590,1811,'ninzio_post_status_author',''),
(4591,1811,'ninzio_post_quote_author',''),
(4592,1811,'ninzio_post_featured_media','yes'),
(4596,1786,'_wp_old_slug','new-the-active-club-mobile-pos'),
(4599,1813,'wprss_item_permalink','https://activeclubsolutions.net/thank-visiting-us-2015-unified-wine-grape-symposium/'),
(4600,1813,'wprss_item_enclosure',''),
(4601,1813,'wprss_item_author','Active Club Solutions'),
(4602,1813,'wprss_feed_id','1713'),
(4603,1814,'wprss_item_permalink','https://activeclubsolutions.net/new-the-active-club-ipad-winery-pos/'),
(4604,1814,'wprss_item_enclosure',''),
(4605,1814,'wprss_item_author','Active Club Solutions'),
(4606,1814,'wprss_feed_id','1713'),
(4741,1780,'_oembed_f98f0269b1d18651357fe8542e25e47c','{{unknown}}'),
(4742,1780,'_oembed_4d49872ed9e47767f8faadb580864858','{{unknown}}'),
(5384,1493,'_yoast_wpseo_focuskw','wine club software'),
(5385,1493,'_yoast_wpseo_linkdex','74'),
(7892,508,'_yoast_wpseo_focuskw','winery pos'),
(7893,508,'_yoast_wpseo_linkdex','39'),
(7900,508,'_yoast_wpseo_metadesc','Ask us about our mobile winery POS, wine club software and winery ecommerce.'),
(7901,1435,'_yoast_wpseo_metadesc','Our All in One DTC Winery Software includes Tasting Room POS, Wine Club Software & eCommerce and integration with several other systems like FedEx, UPS'),
(8014,1786,'_yoast_wpseo_focuskw','winery pos'),
(8015,1786,'_yoast_wpseo_linkdex','70'),
(8018,1786,'_yoast_wpseo_metadesc','Mobile winery POS, Wine POS'),
(8019,1497,'_yoast_wpseo_focuskw','winery ecommerce'),
(8020,1497,'_yoast_wpseo_metadesc','Responsive Winery ecommerce, that looks great on mobile devices as well. wine ecommerce fully integrated with Tasting Room POS and Wine Club Software'),
(8021,1497,'_yoast_wpseo_linkdex','64'),
(8022,1493,'_yoast_wpseo_metadesc','Powerful integrated wine club software is an integral part of our DTC Winery Software which works with our Tasting Room POS and eCommerce'),
(8023,1495,'_yoast_wpseo_focuskw','Integrated & Certified partners for Our All in One DTC Solution'),
(8024,1495,'_yoast_wpseo_linkdex','55'),
(8025,1495,'_yoast_wpseo_metadesc','Integrated & Certified partners for Our All in One DTC Solution - Mobile tasting room POS, wine club software and winery eCommerce'),
(8026,1592,'_yoast_wpseo_focuskw','winery pos'),
(8027,1592,'_yoast_wpseo_linkdex','42'),
(8028,1592,'_yoast_wpseo_metadesc','Partners for our mobile winery POS, wineclub software and wine eCommerce'),
(8029,1496,'_yoast_wpseo_focuskw','Winery POS'),
(8030,1496,'_yoast_wpseo_linkdex','41'),
(8031,1496,'_yoast_wpseo_metadesc','Free support for our mobile winery POS, wine club software and wine eCommerce'),
(8055,1494,'_yoast_wpseo_focuskw','Marketing and CRM'),
(8056,1494,'_yoast_wpseo_linkdex','77'),
(8057,1494,'_yoast_wpseo_metadesc','Marketing and CRM - our all-in-one DTC software - winery tasting room POS, wine club software and wine eCommerce solution.'),
(8058,1498,'_yoast_wpseo_focuskw','Winery Software'),
(8059,1498,'_yoast_wpseo_linkdex','77'),
(8060,1498,'_yoast_wpseo_metadesc','Winery software for the tasting room. Wine POS, wine club software, wine eCommerce, all in one tasting room solutions.'),
(9553,1858,'_wp_attached_file','2016/02/first-data.png'),
(9554,1858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:112;s:4:\"file\";s:22:\"2016/02/first-data.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"first-data-150x112.png\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"first-data-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"first-data-384x112.png\";s:5:\"width\";i:384;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(9555,1859,'_wp_attached_file','2016/02/vantiv.png'),
(9556,1859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:379;s:6:\"height\";i:133;s:4:\"file\";s:18:\"2016/02/vantiv.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"vantiv-150x133.png\";s:5:\"width\";i:150;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"vantiv-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(10085,1796,'_yoast_wpseo_focuskw','winery pos'),
(10086,1796,'_yoast_wpseo_linkdex','65'),
(10087,1434,'ninzio_one_page','no'),
(10088,1434,'_yoast_wpseo_focuskw','wine club software news'),
(10089,1434,'_yoast_wpseo_linkdex','27'),
(10092,1459,'_yoast_wpseo_focuskw','wine eCommerce'),
(10093,1459,'_yoast_wpseo_linkdex','44'),
(10096,1753,'_yoast_wpseo_focuskw','winery POS'),
(10097,1753,'_yoast_wpseo_linkdex','48'),
(10300,1867,'_edit_lock','1567487447:2'),
(10301,1867,'_edit_last','2'),
(10302,1867,'_wp_page_template','default'),
(10303,1867,'ninzio_page_subtitle',''),
(10304,1867,'ninzio_page_sidebar','none'),
(10305,1867,'ninzio_page_title_background_color','#ffffff'),
(10306,1867,'ninzio_page_title_background_color_opacity','1'),
(10307,1867,'ninzio_page_title_text_color','#000000'),
(10308,1867,'ninzio_page_subtitle_background_color',''),
(10309,1867,'ninzio_page_subtitle_background_color_opacity','1'),
(10310,1867,'ninzio_page_subtitle_text_color','#444444'),
(10311,1867,'ninzio_page_title_section_background_color','#f6f6f6'),
(10312,1867,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/10/picewithmagnifyingglass.png'),
(10313,1867,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(10314,1867,'ninzio_page_title_section_background_image_position','center_center'),
(10315,1867,'ninzio_page_title_section_background_image_attachment','scroll'),
(10316,1867,'ninzio_page_title_section_background_image_size','auto'),
(10317,1867,'ninzio_one_page','no'),
(10318,1867,'ninzio_slider','no'),
(10319,1867,'ninzio_page_layout','no'),
(10320,1867,'ninzio_page_twitter','no'),
(10321,1867,'ninzio_page_padding_top','yes'),
(10322,1867,'ninzio_rich_header','no'),
(10323,1867,'ninzio_page_title_section_background_image_parallax','no'),
(10419,1868,'_edit_lock','1561957620:2'),
(10420,1868,'_edit_last','2'),
(10421,1868,'_wp_page_template','default'),
(10422,1868,'ninzio_page_subtitle',''),
(10423,1868,'ninzio_page_sidebar','right'),
(10424,1868,'ninzio_page_title_background_color',''),
(10425,1868,'ninzio_page_title_background_color_opacity','1'),
(10426,1868,'ninzio_page_title_text_color','#ffffff'),
(10427,1868,'ninzio_page_subtitle_background_color',''),
(10428,1868,'ninzio_page_subtitle_background_color_opacity','1'),
(10429,1868,'ninzio_page_subtitle_text_color','#444444'),
(10430,1868,'ninzio_page_title_section_background_color','#f6f6f6'),
(10431,1868,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/05/header3.jpg'),
(10432,1868,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(10433,1868,'ninzio_page_title_section_background_image_position','center_center'),
(10434,1868,'ninzio_page_title_section_background_image_attachment','scroll'),
(10435,1868,'ninzio_page_title_section_background_image_size','auto'),
(10436,1868,'ninzio_one_page','no'),
(10437,1868,'ninzio_slider','no'),
(10438,1868,'ninzio_page_layout','yes'),
(10439,1868,'ninzio_page_twitter','no'),
(10440,1868,'ninzio_page_padding_top','yes'),
(10441,1868,'ninzio_rich_header','no'),
(10442,1868,'ninzio_page_title_section_background_image_parallax','no'),
(10444,1753,'_yoast_wpseo_focuskw_text_input','winery POS'),
(10445,1870,'_edit_lock','1567486238:2'),
(10446,1870,'_edit_last','2'),
(10447,1870,'_wp_page_template','default'),
(10448,1870,'ninzio_page_subtitle',''),
(10449,1870,'ninzio_page_sidebar','right'),
(10450,1870,'ninzio_page_title_background_color','#ffffff'),
(10451,1870,'ninzio_page_title_background_color_opacity','0.25'),
(10452,1870,'ninzio_page_title_text_color','#000000'),
(10453,1870,'ninzio_page_subtitle_background_color',''),
(10454,1870,'ninzio_page_subtitle_background_color_opacity','1'),
(10455,1870,'ninzio_page_subtitle_text_color','#444444'),
(10456,1870,'ninzio_page_title_section_background_color','#f6f6f6'),
(10457,1870,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/08/2-2.png'),
(10458,1870,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(10459,1870,'ninzio_page_title_section_background_image_position','center_top'),
(10460,1870,'ninzio_page_title_section_background_image_attachment','scroll'),
(10461,1870,'ninzio_page_title_section_background_image_size','auto'),
(10462,1870,'ninzio_one_page','no'),
(10463,1870,'ninzio_slider','no'),
(10464,1870,'ninzio_page_layout','yes'),
(10465,1870,'ninzio_page_twitter','no'),
(10466,1870,'ninzio_page_padding_top','yes'),
(10467,1870,'ninzio_rich_header','no'),
(10468,1870,'ninzio_page_title_section_background_image_parallax','no'),
(10510,848,'_yoast_wpseo_focuskw_text_input','winery pos'),
(10512,1796,'_yoast_wpseo_focuskw_text_input','winery pos'),
(10531,1459,'_yoast_wpseo_focuskw_text_input','wine eCommerce'),
(10551,1867,'_yoast_wpseo_focuskw_text_input','winery software'),
(10552,1867,'_yoast_wpseo_focuskw','winery software'),
(10553,1867,'_yoast_wpseo_linkdex','52'),
(10603,1498,'_yoast_wpseo_focuskw_text_input','Winery Software'),
(10605,1496,'_yoast_wpseo_focuskw_text_input','Winery POS'),
(10606,1495,'_yoast_wpseo_focuskw_text_input','Integrated & Certified partners for Our All in One DTC Solution'),
(10607,1494,'_yoast_wpseo_focuskw_text_input','Marketing and CRM'),
(10608,1493,'_yoast_wpseo_focuskw_text_input','wine club software'),
(10609,1497,'_yoast_wpseo_focuskw_text_input','winery ecommerce'),
(11424,1592,'_yoast_wpseo_focuskw_text_input','winery pos'),
(11450,1894,'_edit_lock','1507760715:2'),
(11451,1894,'_edit_last','2'),
(11452,1895,'_wp_attached_file','2016/05/mpop-3.jpg'),
(11453,1895,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1117;s:4:\"file\";s:18:\"2016/05/mpop-3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"mpop-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"mpop-3-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"mpop-3-768x477.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"mpop-3-1024x635.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:18:\"mpop-3-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:18:\"mpop-3-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:18:\"mpop-3-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:19:\"mpop-3-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(11454,1895,'_wp_attachment_image_alt','Active Club iPad POS station'),
(11455,1894,'_thumbnail_id','1895'),
(11456,1894,'_yoast_wpseo_primary_category','1'),
(11457,1894,'ninzio_post_audio_mp3',''),
(11458,1894,'ninzio_post_audio_ogg',''),
(11459,1894,'ninzio_post_audio_embed',''),
(11460,1894,'ninzio_post_video_mp4',''),
(11461,1894,'ninzio_post_video_ogv',''),
(11462,1894,'ninzio_post_video_webm',''),
(11463,1894,'ninzio_post_video_embed',''),
(11464,1894,'ninzio_post_video_poster',''),
(11465,1894,'ninzio_post_link_url',''),
(11466,1894,'ninzio_post_image_url',''),
(11467,1894,'ninzio_post_image_description',''),
(11468,1894,'ninzio_post_status_author',''),
(11469,1894,'ninzio_post_quote_author',''),
(11470,1894,'ninzio_post_featured_media','yes'),
(11474,1896,'_edit_lock','1467351782:2'),
(11475,1896,'_edit_last','2'),
(11476,1896,'_yoast_wpseo_primary_category','3'),
(11477,1896,'ninzio_post_audio_mp3',''),
(11478,1896,'ninzio_post_audio_ogg',''),
(11479,1896,'ninzio_post_audio_embed',''),
(11480,1896,'ninzio_post_video_mp4',''),
(11481,1896,'ninzio_post_video_ogv',''),
(11482,1896,'ninzio_post_video_webm',''),
(11483,1896,'ninzio_post_video_embed',''),
(11484,1896,'ninzio_post_video_poster',''),
(11485,1896,'ninzio_post_link_url',''),
(11486,1896,'ninzio_post_image_url',''),
(11487,1896,'ninzio_post_image_description',''),
(11488,1896,'ninzio_post_status_author',''),
(11489,1896,'ninzio_post_quote_author',''),
(11490,1896,'ninzio_post_featured_media','yes'),
(11491,1896,'_yoast_wpseo_focuskw_text_input','winery pos'),
(11492,1896,'_yoast_wpseo_focuskw','winery pos'),
(11493,1896,'_yoast_wpseo_linkdex','46'),
(11497,1897,'wprss_item_permalink','https://activeclubsolutions.net/breezy-wine-club-pickups/'),
(11498,1897,'wprss_item_enclosure',''),
(11499,1897,'wprss_item_author','Active Club Solutions'),
(11500,1897,'wprss_feed_id','1713'),
(11501,1898,'wprss_item_permalink','https://activeclubsolutions.net/1894-2/'),
(11502,1898,'wprss_item_enclosure',''),
(11503,1898,'wprss_item_author','Active Club Solutions'),
(11504,1898,'wprss_feed_id','1713'),
(12864,1894,'_yoast_wpseo_content_score','30'),
(12865,1790,'_yoast_wpseo_content_score','60'),
(12866,1790,'_yoast_wpseo_focuskw_text_input','winery software'),
(12867,1790,'_yoast_wpseo_focuskw','winery software'),
(12868,1790,'_yoast_wpseo_linkdex','49'),
(12963,1742,'_yoast_wpseo_primary_category',''),
(12964,1742,'_yoast_wpseo_content_score','30'),
(12965,1744,'_yoast_wpseo_primary_category',''),
(12966,1744,'_yoast_wpseo_content_score','60'),
(12970,1782,'_yoast_wpseo_primary_category',''),
(12971,1782,'_yoast_wpseo_content_score','60'),
(12972,1811,'_yoast_wpseo_primary_category',''),
(12973,1811,'_yoast_wpseo_content_score','60'),
(12974,1700,'_yoast_wpseo_primary_category',''),
(12975,1700,'_yoast_wpseo_content_score','60'),
(13168,1917,'_menu_item_type','custom'),
(13169,1917,'_menu_item_menu_item_parent','1935'),
(13170,1917,'_menu_item_object_id','1917'),
(13171,1917,'_menu_item_object','custom'),
(13172,1917,'_menu_item_target',''),
(13173,1917,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(13174,1917,'_menu_item_xfn',''),
(13175,1917,'_menu_item_url',''),
(13177,1918,'_menu_item_type','custom'),
(13178,1918,'_menu_item_menu_item_parent','1917'),
(13179,1918,'_menu_item_object_id','1918'),
(13180,1918,'_menu_item_object','custom'),
(13181,1918,'_menu_item_target',''),
(13182,1918,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(13183,1918,'_menu_item_xfn',''),
(13184,1918,'_menu_item_url','https://www.secureclub.net/Help/acm/UG/index.html'),
(13186,1919,'_menu_item_type','custom'),
(13187,1919,'_menu_item_menu_item_parent','1917'),
(13188,1919,'_menu_item_object_id','1919'),
(13189,1919,'_menu_item_object','custom'),
(13190,1919,'_menu_item_target',''),
(13191,1919,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(13192,1919,'_menu_item_xfn',''),
(13193,1919,'_menu_item_url','https://www.secureclub.net/Help/train/ACM_LG.pdf'),
(13249,1926,'_menu_item_type','custom'),
(13250,1926,'_menu_item_menu_item_parent','1917'),
(13251,1926,'_menu_item_object_id','1926'),
(13252,1926,'_menu_item_object','custom'),
(13253,1926,'_menu_item_target',''),
(13254,1926,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(13255,1926,'_menu_item_xfn',''),
(13256,1926,'_menu_item_url','https://www.secureclub.net/Help/qba/index.html'),
(13258,1927,'_menu_item_type','custom'),
(13259,1927,'_menu_item_menu_item_parent','1935'),
(13260,1927,'_menu_item_object_id','1927'),
(13261,1927,'_menu_item_object','custom'),
(13262,1927,'_menu_item_target',''),
(13263,1927,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(13264,1927,'_menu_item_xfn',''),
(13265,1927,'_menu_item_url',''),
(13267,1928,'_menu_item_type','custom'),
(13268,1928,'_menu_item_menu_item_parent','1927'),
(13269,1928,'_menu_item_object_id','1928'),
(13270,1928,'_menu_item_object','custom'),
(13271,1928,'_menu_item_target',''),
(13272,1928,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(13273,1928,'_menu_item_xfn',''),
(13274,1928,'_menu_item_url','https://www.secureclub.net/Help/pos/pos_hardware.html'),
(13303,1932,'_menu_item_type','custom'),
(13304,1932,'_menu_item_menu_item_parent','1935'),
(13305,1932,'_menu_item_object_id','1932'),
(13306,1932,'_menu_item_object','custom'),
(13307,1932,'_menu_item_target',''),
(13308,1932,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(13309,1932,'_menu_item_xfn',''),
(13310,1932,'_menu_item_url',''),
(13312,1933,'_menu_item_type','custom'),
(13313,1933,'_menu_item_menu_item_parent','1932'),
(13314,1933,'_menu_item_object_id','1933'),
(13315,1933,'_menu_item_object','custom'),
(13316,1933,'_menu_item_target',''),
(13317,1933,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(13318,1933,'_menu_item_xfn',''),
(13319,1933,'_menu_item_url','https://www.secureclub.net/webservices/customerservice.asmx'),
(13331,1935,'_menu_item_type','custom'),
(13332,1935,'_menu_item_menu_item_parent','0'),
(13333,1935,'_menu_item_object_id','1935'),
(13334,1935,'_menu_item_object','custom'),
(13335,1935,'_menu_item_target',''),
(13336,1935,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(13337,1935,'_menu_item_xfn',''),
(13338,1935,'_menu_item_url','https://www.secureclub.net/Help/'),
(13358,1936,'_menu_item_type','custom'),
(13359,1936,'_menu_item_menu_item_parent','1935'),
(13360,1936,'_menu_item_object_id','1936'),
(13361,1936,'_menu_item_object','custom'),
(13362,1936,'_menu_item_target',''),
(13363,1936,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(13364,1936,'_menu_item_xfn',''),
(13365,1936,'_menu_item_url','https://www.secureclub.net/Help/'),
(13467,848,'_yoast_wpseo_content_score','60'),
(13675,848,'_oembed_5879d38ab42b476a4907bcffbc7e9a6d','{{unknown}}'),
(13747,1940,'_edit_lock','1469540529:2'),
(13748,1940,'_edit_last','2'),
(13750,1940,'_yoast_wpseo_primary_category',''),
(13751,1940,'ninzio_post_audio_mp3',''),
(13752,1940,'ninzio_post_audio_ogg',''),
(13753,1940,'ninzio_post_audio_embed',''),
(13754,1940,'ninzio_post_video_mp4',''),
(13755,1940,'ninzio_post_video_ogv',''),
(13756,1940,'ninzio_post_video_webm',''),
(13757,1940,'ninzio_post_video_embed',''),
(13758,1940,'ninzio_post_video_poster',''),
(13759,1940,'ninzio_post_link_url',''),
(13760,1940,'ninzio_post_image_url',''),
(13761,1940,'ninzio_post_image_description',''),
(13762,1940,'ninzio_post_status_author',''),
(13763,1940,'ninzio_post_quote_author',''),
(13764,1940,'ninzio_post_featured_media','yes'),
(13765,1940,'_yoast_wpseo_content_score','30'),
(13766,1940,'_yoast_wpseo_focuskw_text_input','wholesale'),
(13767,1940,'_yoast_wpseo_focuskw','wholesale'),
(13768,1940,'_yoast_wpseo_linkdex','48'),
(13787,1941,'_wp_attached_file','2016/07/wholesale.png'),
(13788,1941,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:21:\"2016/07/wholesale.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"wholesale-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"wholesale-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"wholesale-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"wholesale-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"wholesale-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"wholesale-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"wholesale-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"wholesale-1024x588.png\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(13791,1942,'wprss_item_permalink','https://activeclubsolutions.net/wholesale-in-your-hands/'),
(13792,1942,'wprss_item_enclosure',''),
(13793,1942,'wprss_item_author','Active Club Solutions'),
(13794,1942,'wprss_feed_id','1713'),
(14132,1868,'_yoast_wpseo_content_score','30'),
(14133,1753,'_yoast_wpseo_content_score','60'),
(14134,1947,'_edit_lock','1470759318:2'),
(14135,1947,'_edit_last','2'),
(14136,1947,'_yoast_wpseo_primary_category',''),
(14137,1947,'ninzio_post_audio_mp3',''),
(14138,1947,'ninzio_post_audio_ogg',''),
(14139,1947,'ninzio_post_audio_embed',''),
(14140,1947,'ninzio_post_video_mp4',''),
(14141,1947,'ninzio_post_video_ogv',''),
(14142,1947,'ninzio_post_video_webm',''),
(14143,1947,'ninzio_post_video_embed',''),
(14144,1947,'ninzio_post_video_poster',''),
(14145,1947,'ninzio_post_link_url',''),
(14146,1947,'ninzio_post_image_url',''),
(14147,1947,'ninzio_post_image_description',''),
(14148,1947,'ninzio_post_status_author',''),
(14149,1947,'ninzio_post_quote_author',''),
(14150,1947,'ninzio_post_featured_media','yes'),
(14151,1947,'_yoast_wpseo_content_score','30'),
(14153,1947,'_yoast_wpseo_focuskw_text_input','kitchen'),
(14154,1947,'_yoast_wpseo_focuskw','kitchen'),
(14155,1947,'_yoast_wpseo_linkdex','38'),
(14156,1796,'_yoast_wpseo_content_score','60'),
(14158,1949,'wprss_item_permalink','https://activeclubsolutions.net/pos-kitchen-warehouse-printing/'),
(14159,1949,'wprss_item_enclosure',''),
(14160,1949,'wprss_item_author','Active Club Solutions'),
(14161,1949,'wprss_feed_id','1713'),
(14163,1455,'_edit_lock','1470765823:6'),
(14165,1435,'_yoast_wpseo_content_score','30'),
(14188,1794,'_edit_lock','1471367655:6'),
(14189,1621,'_yoast_wpseo_content_score','30'),
(14529,2045,'_wp_attached_file','2016/08/iphone_graph_skew.png'),
(14530,2045,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:428;s:6:\"height\";i:896;s:4:\"file\";s:29:\"2016/08/iphone_graph_skew.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"iphone_graph_skew-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"iphone_graph_skew-143x300.png\";s:5:\"width\";i:143;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"iphone_graph_skew-428x480.png\";s:5:\"width\";i:428;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"iphone_graph_skew-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"iphone_graph_skew-428x588.png\";s:5:\"width\";i:428;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"iphone_graph_skew-428x588.png\";s:5:\"width\";i:428;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(14593,2056,'_wp_attached_file','2016/08/acm_on_monitor.png'),
(14594,2056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:816;s:4:\"file\";s:26:\"2016/08/acm_on_monitor.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"acm_on_monitor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"acm_on_monitor-300x204.png\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"acm_on_monitor-768x522.png\";s:5:\"width\";i:768;s:6:\"height\";i:522;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"acm_on_monitor-1024x696.png\";s:5:\"width\";i:1024;s:6:\"height\";i:696;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"acm_on_monitor-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"acm_on_monitor-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"acm_on_monitor-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"acm_on_monitor-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(14595,2057,'_wp_attached_file','2016/08/pos-ipad-skew.png'),
(14596,2057,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:914;s:6:\"height\";i:646;s:4:\"file\";s:25:\"2016/08/pos-ipad-skew.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"pos-ipad-skew-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"pos-ipad-skew-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"pos-ipad-skew-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"pos-ipad-skew-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"pos-ipad-skew-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:25:\"pos-ipad-skew-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"pos-ipad-skew-914x588.png\";s:5:\"width\";i:914;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(14597,2057,'_edit_lock','1471959223:6'),
(14604,2061,'_edit_lock','1479937462:2'),
(14605,2061,'_edit_last','2'),
(14606,2062,'_wp_attached_file','2016/08/sample-charts-100.jpg'),
(14607,2062,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1030;s:4:\"file\";s:29:\"2016/08/sample-charts-100.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"sample-charts-100-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"sample-charts-100-300x241.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"sample-charts-100-768x618.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"sample-charts-100-1024x824.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:824;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"sample-charts-100-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"sample-charts-100-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"sample-charts-100-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"sample-charts-100-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(14608,2061,'_yoast_wpseo_primary_category',''),
(14609,2061,'ninzio_post_audio_mp3',''),
(14610,2061,'ninzio_post_audio_ogg',''),
(14611,2061,'ninzio_post_audio_embed',''),
(14612,2061,'ninzio_post_video_mp4',''),
(14613,2061,'ninzio_post_video_ogv',''),
(14614,2061,'ninzio_post_video_webm',''),
(14615,2061,'ninzio_post_video_embed',''),
(14616,2061,'ninzio_post_video_poster',''),
(14617,2061,'ninzio_post_link_url',''),
(14618,2061,'ninzio_post_image_url',''),
(14619,2061,'ninzio_post_image_description',''),
(14620,2061,'ninzio_post_status_author',''),
(14621,2061,'ninzio_post_quote_author',''),
(14622,2061,'ninzio_post_featured_media','yes'),
(14623,2061,'_yoast_wpseo_focuskw_text_input','dashboard'),
(14624,2061,'_yoast_wpseo_focuskw','dashboard'),
(14625,2061,'_yoast_wpseo_linkdex','28'),
(14626,2061,'_yoast_wpseo_content_score','30'),
(14629,2063,'wprss_item_permalink','https://activeclubsolutions.net/kpi-dashboards/'),
(14630,2063,'wprss_item_enclosure',''),
(14631,2063,'wprss_item_author','Active Club Solutions'),
(14632,2063,'wprss_feed_id','1713'),
(15329,2066,'_edit_lock','1648056152:2'),
(15330,2066,'_edit_last','2'),
(15331,2066,'_wp_page_template','default'),
(15332,2066,'ninzio_page_subtitle',''),
(15333,2066,'ninzio_page_sidebar','none'),
(15334,2066,'ninzio_page_title_background_color',''),
(15335,2066,'ninzio_page_title_background_color_opacity','1'),
(15336,2066,'ninzio_page_title_text_color','#000000'),
(15337,2066,'ninzio_page_subtitle_background_color',''),
(15338,2066,'ninzio_page_subtitle_background_color_opacity','1'),
(15339,2066,'ninzio_page_subtitle_text_color','#000000'),
(15340,2066,'ninzio_page_title_section_background_color','#f6f6f6'),
(15341,2066,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/05/news1.jpg'),
(15342,2066,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(15343,2066,'ninzio_page_title_section_background_image_position','center_center'),
(15344,2066,'ninzio_page_title_section_background_image_attachment','scroll'),
(15345,2066,'ninzio_page_title_section_background_image_size','cover'),
(15346,2066,'ninzio_one_page','no'),
(15347,2066,'ninzio_slider','no'),
(15348,2066,'ninzio_page_layout','yes'),
(15349,2066,'ninzio_page_twitter','no'),
(15350,2066,'ninzio_page_padding_top','yes'),
(15351,2066,'ninzio_rich_header','no'),
(15352,2066,'ninzio_page_title_section_background_image_parallax','no'),
(15353,2066,'_yoast_wpseo_content_score','30'),
(15375,2084,'_edit_lock','1649022980:2'),
(15376,2084,'_edit_last','2'),
(15377,2084,'_wp_page_template','default'),
(15378,2084,'ninzio_page_subtitle',''),
(15379,2084,'ninzio_page_sidebar','none'),
(15380,2084,'ninzio_page_title_background_color',''),
(15381,2084,'ninzio_page_title_background_color_opacity','1'),
(15382,2084,'ninzio_page_title_text_color','#444444'),
(15383,2084,'ninzio_page_subtitle_background_color',''),
(15384,2084,'ninzio_page_subtitle_background_color_opacity','1'),
(15385,2084,'ninzio_page_subtitle_text_color','#444444'),
(15386,2084,'ninzio_page_title_section_background_color','#f6f6f6'),
(15387,2084,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/news3.jpg'),
(15388,2084,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(15389,2084,'ninzio_page_title_section_background_image_position','center_center'),
(15390,2084,'ninzio_page_title_section_background_image_attachment','scroll'),
(15391,2084,'ninzio_page_title_section_background_image_size','auto'),
(15392,2084,'ninzio_one_page','no'),
(15393,2084,'ninzio_slider','no'),
(15394,2084,'ninzio_page_layout','yes'),
(15395,2084,'ninzio_page_twitter','no'),
(15396,2084,'ninzio_page_padding_top','yes'),
(15397,2084,'ninzio_rich_header','no'),
(15398,2084,'ninzio_page_title_section_background_image_parallax','no'),
(15399,2084,'_yoast_wpseo_content_score','60'),
(15429,2089,'_wpas_done_all','1'),
(15430,2089,'custom_css_add','yes'),
(15431,2089,'content_width',''),
(15432,2089,'custom_css_preprocessor',''),
(15433,2089,'_jetpack_dont_email_post_to_subs','1'),
(15480,2066,'_jetpack_dont_email_post_to_subs','1'),
(15481,2084,'_jetpack_dont_email_post_to_subs','1'),
(15984,2108,'_edit_lock','1592003319:2'),
(15985,2108,'_edit_last','2'),
(15986,2108,'_wp_page_template','default'),
(15987,2108,'ninzio_page_subtitle',''),
(15988,2108,'ninzio_page_sidebar','none'),
(15989,2108,'ninzio_page_title_background_color',''),
(15990,2108,'ninzio_page_title_background_color_opacity','1'),
(15991,2108,'ninzio_page_title_text_color','#e0e0e0'),
(15992,2108,'ninzio_page_subtitle_background_color',''),
(15993,2108,'ninzio_page_subtitle_background_color_opacity','1'),
(15994,2108,'ninzio_page_subtitle_text_color','#ffffff'),
(15995,2108,'ninzio_page_title_section_background_color','#f6f6f6'),
(15996,2108,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/05/header27.jpg'),
(15997,2108,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(15998,2108,'ninzio_page_title_section_background_image_position','left_top'),
(15999,2108,'ninzio_page_title_section_background_image_attachment','scroll'),
(16000,2108,'ninzio_page_title_section_background_image_size','auto'),
(16001,2108,'ninzio_one_page','no'),
(16002,2108,'ninzio_slider','no'),
(16003,2108,'ninzio_page_layout','yes'),
(16004,2108,'ninzio_page_twitter','no'),
(16005,2108,'ninzio_page_padding_top','yes'),
(16006,2108,'ninzio_rich_header','yes'),
(16007,2108,'ninzio_page_title_section_background_image_parallax','no'),
(16008,2108,'_yoast_wpseo_content_score','90'),
(16010,2108,'_wpas_done_all','1'),
(16011,2108,'_jetpack_dont_email_post_to_subs','1'),
(16026,2114,'_edit_lock','1476804288:2'),
(16027,2114,'_edit_last','2'),
(16028,2114,'_yoast_wpseo_primary_category',''),
(16029,2114,'ninzio_post_audio_mp3',''),
(16030,2114,'ninzio_post_audio_ogg',''),
(16031,2114,'ninzio_post_audio_embed',''),
(16032,2114,'ninzio_post_video_mp4',''),
(16033,2114,'ninzio_post_video_ogv',''),
(16034,2114,'ninzio_post_video_webm',''),
(16035,2114,'ninzio_post_video_embed',''),
(16036,2114,'ninzio_post_video_poster',''),
(16037,2114,'ninzio_post_link_url',''),
(16038,2114,'ninzio_post_image_url',''),
(16039,2114,'ninzio_post_image_description',''),
(16040,2114,'ninzio_post_status_author',''),
(16041,2114,'ninzio_post_quote_author',''),
(16042,2114,'ninzio_post_featured_media','yes'),
(16043,2114,'_yoast_wpseo_focuskw_text_input','POS'),
(16044,2114,'_yoast_wpseo_focuskw','POS'),
(16045,2114,'_yoast_wpseo_linkdex','31'),
(16046,2114,'_yoast_wpseo_content_score','30'),
(16049,2114,'_wpas_done_all','1'),
(16052,2115,'_wpas_done_all','1'),
(16053,2115,'wprss_item_permalink','https://activeclubsolutions.net/new-cycle-count-reports-2016-winexpo/'),
(16054,2115,'wprss_item_enclosure',''),
(16055,2115,'wprss_item_author','Active Club Solutions'),
(16056,2115,'wprss_feed_id','1713'),
(16080,1497,'_yoast_wpseo_content_score','30'),
(16081,1497,'_oembed_58a991b6986a4ea53c9b012417200a62','<blockquote data-secret=\"OqIMvjcAun\" class=\"wp-embedded-content\"><a href=\"https://activeclubsolutions.net/winery-pos-features/shopping-cart-web-interfaces/shopping-cart-1/\">Shopping Cart 1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://activeclubsolutions.net/winery-pos-features/shopping-cart-web-interfaces/shopping-cart-1/embed/#?secret=OqIMvjcAun\" data-secret=\"OqIMvjcAun\" width=\"600\" height=\"338\" title=\"&#8220;Shopping Cart 1&#8221; &#8212; Winery POS mobile ipad POS wine club software\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),
(16082,1497,'_oembed_time_58a991b6986a4ea53c9b012417200a62','1477193334'),
(16083,1497,'_jetpack_dont_email_post_to_subs','1'),
(16151,2122,'_edit_lock','1651871751:2'),
(16152,2122,'_edit_last','2'),
(16153,2122,'_wp_page_template','default'),
(16154,2122,'ninzio_page_subtitle',''),
(16155,2122,'ninzio_page_sidebar','none'),
(16156,2122,'ninzio_page_title_background_color',''),
(16157,2122,'ninzio_page_title_background_color_opacity','1'),
(16158,2122,'ninzio_page_title_text_color','#ffffff'),
(16159,2122,'ninzio_page_subtitle_background_color',''),
(16160,2122,'ninzio_page_subtitle_background_color_opacity','1'),
(16161,2122,'ninzio_page_subtitle_text_color','#444444'),
(16162,2122,'ninzio_page_title_section_background_color','#f6f6f6'),
(16163,2122,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/05/sample-blog.jpg'),
(16164,2122,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(16165,2122,'ninzio_page_title_section_background_image_position','center_center'),
(16166,2122,'ninzio_page_title_section_background_image_attachment','scroll'),
(16167,2122,'ninzio_page_title_section_background_image_size','auto'),
(16168,2122,'ninzio_one_page','no'),
(16169,2122,'ninzio_slider','no'),
(16170,2122,'ninzio_page_layout','yes'),
(16171,2122,'ninzio_page_twitter','no'),
(16172,2122,'ninzio_page_padding_top','yes'),
(16173,2122,'ninzio_rich_header','yes'),
(16174,2122,'ninzio_page_title_section_background_image_parallax','no'),
(16175,2122,'_yoast_wpseo_content_score','30'),
(16177,2122,'_wpas_done_all','1'),
(16362,2125,'_edit_lock','1478100883:2'),
(16363,2125,'_edit_last','2'),
(16364,2125,'_yoast_wpseo_primary_category',''),
(16365,2125,'ninzio_post_audio_mp3',''),
(16366,2125,'ninzio_post_audio_ogg',''),
(16367,2125,'ninzio_post_audio_embed',''),
(16368,2125,'ninzio_post_video_mp4',''),
(16369,2125,'ninzio_post_video_ogv',''),
(16370,2125,'ninzio_post_video_webm',''),
(16371,2125,'ninzio_post_video_embed',''),
(16372,2125,'ninzio_post_video_poster',''),
(16373,2125,'ninzio_post_link_url',''),
(16374,2125,'ninzio_post_image_url',''),
(16375,2125,'ninzio_post_image_description',''),
(16376,2125,'ninzio_post_status_author',''),
(16377,2125,'ninzio_post_quote_author',''),
(16378,2125,'ninzio_post_featured_media','yes'),
(16379,2125,'_yoast_wpseo_content_score','30'),
(16380,2125,'_oembed_acf80ed0ae2b1492845e2907dee0c35c','<blockquote data-secret=\"5AyQxW96j2\" class=\"wp-embedded-content\"><a href=\"https://activeclubsolutions.net/winery-pos-features/shopping-cart-web-interfaces/shopping-cart-1/\">Shopping Cart 1</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://activeclubsolutions.net/winery-pos-features/shopping-cart-web-interfaces/shopping-cart-1/embed/#?secret=5AyQxW96j2\" data-secret=\"5AyQxW96j2\" width=\"600\" height=\"338\" title=\"&#8220;Shopping Cart 1&#8221; &#8212; Winery POS mobile ipad POS wine club software\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),
(16381,2125,'_oembed_time_acf80ed0ae2b1492845e2907dee0c35c','1478100218'),
(16382,2125,'_oembed_e95d0b2b1cfa5f02b3e5f7011d2a5bd4','<blockquote data-secret=\"OuDdEtMWXY\" class=\"wp-embedded-content\"><a href=\"https://activeclubsolutions.net/winery-pos-features/shopping-cart-web-interfaces/shopping-cart-2/\">Shopping Cart 2</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://activeclubsolutions.net/winery-pos-features/shopping-cart-web-interfaces/shopping-cart-2/embed/#?secret=OuDdEtMWXY\" data-secret=\"OuDdEtMWXY\" width=\"600\" height=\"338\" title=\"&#8220;Shopping Cart 2&#8221; &#8212; Winery POS mobile ipad POS wine club software\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),
(16383,2125,'_oembed_time_e95d0b2b1cfa5f02b3e5f7011d2a5bd4','1478100218'),
(16386,2125,'_yoast_wpseo_focuskw_text_input','tasting room pos'),
(16387,2125,'_yoast_wpseo_focuskw','tasting room pos'),
(16388,2125,'_yoast_wpseo_linkdex','58'),
(16389,2125,'_wpas_done_all','1'),
(16392,2126,'_wpas_done_all','1'),
(16393,2126,'wprss_item_permalink','https://activeclubsolutions.net/complete-control-catalog-cart/'),
(16394,2126,'wprss_item_enclosure',''),
(16395,2126,'wprss_item_author','Active Club Solutions'),
(16396,2126,'wprss_feed_id','1713'),
(16404,848,'_jetpack_dont_email_post_to_subs','1'),
(16406,1621,'_jetpack_dont_email_post_to_subs','1'),
(16590,2136,'_edit_lock','1478792370:2'),
(16591,2136,'_edit_last','2'),
(16592,2136,'_yoast_wpseo_primary_category',''),
(16593,2136,'ninzio_post_audio_mp3',''),
(16594,2136,'ninzio_post_audio_ogg',''),
(16595,2136,'ninzio_post_audio_embed',''),
(16596,2136,'ninzio_post_video_mp4',''),
(16597,2136,'ninzio_post_video_ogv',''),
(16598,2136,'ninzio_post_video_webm',''),
(16599,2136,'ninzio_post_video_embed',''),
(16600,2136,'ninzio_post_video_poster',''),
(16601,2136,'ninzio_post_link_url',''),
(16602,2136,'ninzio_post_image_url',''),
(16603,2136,'ninzio_post_image_description',''),
(16604,2136,'ninzio_post_status_author',''),
(16605,2136,'ninzio_post_quote_author',''),
(16606,2136,'ninzio_post_featured_media','yes'),
(16607,2136,'_yoast_wpseo_focuskw_text_input','tasting room POS'),
(16608,2136,'_yoast_wpseo_focuskw','tasting room POS'),
(16609,2136,'_yoast_wpseo_linkdex','23'),
(16610,2136,'_yoast_wpseo_content_score','60'),
(16613,2136,'_wpas_done_all','1'),
(16616,2137,'_wpas_done_all','1'),
(16617,2137,'wprss_item_permalink','https://activeclubsolutions.net/post-harvest-special-price/'),
(16618,2137,'wprss_item_enclosure',''),
(16619,2137,'wprss_item_author','Active Club Solutions'),
(16620,2137,'wprss_feed_id','1713'),
(16748,1435,'_jetpack_dont_email_post_to_subs','1'),
(16749,1496,'_jetpack_dont_email_post_to_subs','1'),
(16750,1496,'_yoast_wpseo_content_score','60'),
(16751,1495,'_jetpack_dont_email_post_to_subs','1'),
(16752,1495,'_yoast_wpseo_content_score','60'),
(16753,1494,'_jetpack_dont_email_post_to_subs','1'),
(16754,1494,'_yoast_wpseo_content_score','30'),
(16755,1493,'_jetpack_dont_email_post_to_subs','1'),
(16756,1493,'_yoast_wpseo_content_score','30'),
(16757,1498,'_jetpack_dont_email_post_to_subs','1'),
(16758,1498,'_yoast_wpseo_content_score','30'),
(16762,1796,'_jetpack_dont_email_post_to_subs','1'),
(16763,1450,'_jetpack_dont_email_post_to_subs','1'),
(16764,1444,'_jetpack_dont_email_post_to_subs','1'),
(16765,1801,'_jetpack_dont_email_post_to_subs','1'),
(16766,1505,'_jetpack_dont_email_post_to_subs','1'),
(16767,1504,'_jetpack_dont_email_post_to_subs','1'),
(16768,1503,'_jetpack_dont_email_post_to_subs','1'),
(16769,1502,'_jetpack_dont_email_post_to_subs','1'),
(16770,1501,'_jetpack_dont_email_post_to_subs','1'),
(16771,1500,'_jetpack_dont_email_post_to_subs','1'),
(16773,1446,'_jetpack_dont_email_post_to_subs','1'),
(16774,1600,'_jetpack_dont_email_post_to_subs','1'),
(16775,1598,'_jetpack_dont_email_post_to_subs','1'),
(16776,1597,'_jetpack_dont_email_post_to_subs','1'),
(16777,1596,'_jetpack_dont_email_post_to_subs','1'),
(16778,1595,'_jetpack_dont_email_post_to_subs','1'),
(16780,1594,'_jetpack_dont_email_post_to_subs','1'),
(16786,1448,'_jetpack_dont_email_post_to_subs','1'),
(16787,1442,'_jetpack_dont_email_post_to_subs','1'),
(16788,1935,'_jetpack_dont_email_post_to_subs','1'),
(16789,1917,'_jetpack_dont_email_post_to_subs','1'),
(16790,1919,'_jetpack_dont_email_post_to_subs','1'),
(16791,1918,'_jetpack_dont_email_post_to_subs','1'),
(16793,1926,'_jetpack_dont_email_post_to_subs','1'),
(16794,1927,'_jetpack_dont_email_post_to_subs','1'),
(16795,1928,'_jetpack_dont_email_post_to_subs','1'),
(16799,1932,'_jetpack_dont_email_post_to_subs','1'),
(16800,1933,'_jetpack_dont_email_post_to_subs','1'),
(16801,1936,'_jetpack_dont_email_post_to_subs','1'),
(16802,1443,'_jetpack_dont_email_post_to_subs','1'),
(16803,2061,'_jetpack_dont_email_post_to_subs','1'),
(16807,2157,'_edit_lock','1567735895:15'),
(16808,2157,'_edit_last','2'),
(16809,2157,'_wp_page_template','default'),
(16810,2157,'ninzio_page_subtitle','LIVE DEMO!'),
(16811,2157,'ninzio_page_sidebar','none'),
(16812,2157,'ninzio_page_title_background_color',''),
(16813,2157,'ninzio_page_title_background_color_opacity','1'),
(16814,2157,'ninzio_page_title_text_color','#ffffff'),
(16815,2157,'ninzio_page_subtitle_background_color',''),
(16816,2157,'ninzio_page_subtitle_background_color_opacity','1'),
(16817,2157,'ninzio_page_subtitle_text_color','#ffffff'),
(16818,2157,'ninzio_page_title_section_background_color','#f6f6f6'),
(16819,2157,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/10/golfcourselarge.png'),
(16820,2157,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(16821,2157,'ninzio_page_title_section_background_image_position','center_center'),
(16822,2157,'ninzio_page_title_section_background_image_attachment','scroll'),
(16823,2157,'ninzio_page_title_section_background_image_size','auto'),
(16824,2157,'ninzio_one_page','no'),
(16825,2157,'ninzio_slider','no'),
(16826,2157,'ninzio_page_layout','yes'),
(16827,2157,'ninzio_page_twitter','no'),
(16828,2157,'ninzio_page_padding_top','yes'),
(16829,2157,'ninzio_rich_header','yes'),
(16830,2157,'ninzio_page_title_section_background_image_parallax','no'),
(16831,2157,'_yoast_wpseo_content_score','60'),
(16834,2157,'_wpas_done_all','1'),
(16835,2157,'_jetpack_dont_email_post_to_subs','1'),
(16953,2164,'_menu_item_type','post_type'),
(16954,2164,'_menu_item_menu_item_parent','1444'),
(16955,2164,'_menu_item_object_id','2157'),
(16956,2164,'_menu_item_object','page'),
(16957,2164,'_menu_item_target',''),
(16958,2164,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(16959,2164,'_menu_item_xfn',''),
(16960,2164,'_menu_item_url',''),
(16963,2164,'_wpas_done_all','1'),
(16964,2164,'_jetpack_dont_email_post_to_subs','1'),
(17135,2170,'_edit_lock','1480973957:2'),
(17136,2170,'_edit_last','2'),
(17137,2170,'_yoast_wpseo_primary_category',''),
(17138,2170,'ninzio_post_audio_mp3',''),
(17139,2170,'ninzio_post_audio_ogg',''),
(17140,2170,'ninzio_post_audio_embed',''),
(17141,2170,'ninzio_post_video_mp4',''),
(17142,2170,'ninzio_post_video_ogv',''),
(17143,2170,'ninzio_post_video_webm',''),
(17144,2170,'ninzio_post_video_embed',''),
(17145,2170,'ninzio_post_video_poster',''),
(17146,2170,'ninzio_post_link_url',''),
(17147,2170,'ninzio_post_image_url',''),
(17148,2170,'ninzio_post_image_description',''),
(17149,2170,'ninzio_post_status_author',''),
(17150,2170,'ninzio_post_quote_author',''),
(17151,2170,'ninzio_post_featured_media','yes'),
(17152,2170,'_yoast_wpseo_content_score','60'),
(17155,2170,'_wpas_done_all','1'),
(17158,2171,'_wpas_done_all','1'),
(17159,2171,'wprss_item_permalink','https://activeclubsolutions.net/please-visit-us-unified-wine-grape-symposium-125-26/'),
(17160,2171,'wprss_item_enclosure',''),
(17161,2171,'wprss_item_author','Active Club Solutions'),
(17162,2171,'wprss_feed_id','1713'),
(17259,1625,'_edit_lock','1481321331:2'),
(17260,2176,'_wp_attached_file','2016/12/ACS-Laptop.png'),
(17261,2176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:584;s:4:\"file\";s:22:\"2016/12/ACS-Laptop.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"ACS-Laptop-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"ACS-Laptop-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"ACS-Laptop-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"ACS-Laptop-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:22:\"ACS-Laptop-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"ACS-Laptop-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:22:\"ACS-Laptop-894x584.png\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:23:\"ACS-Laptop-1200x584.png\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(17262,2177,'_wp_attached_file','2016/12/ACS-Phone.png'),
(17263,2177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:584;s:4:\"file\";s:21:\"2016/12/ACS-Phone.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"ACS-Phone-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"ACS-Phone-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"ACS-Phone-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"ACS-Phone-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"ACS-Phone-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"ACS-Phone-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"ACS-Phone-894x584.png\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"ACS-Phone-1200x584.png\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(17264,2178,'_wp_attached_file','2016/12/ACS-Tablet.png'),
(17265,2178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:584;s:4:\"file\";s:22:\"2016/12/ACS-Tablet.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"ACS-Tablet-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"ACS-Tablet-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"ACS-Tablet-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"ACS-Tablet-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:22:\"ACS-Tablet-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"ACS-Tablet-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:22:\"ACS-Tablet-894x584.png\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:23:\"ACS-Tablet-1200x584.png\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(17344,2122,'_jetpack_dont_email_post_to_subs','1'),
(17579,2194,'_edit_lock','1651592466:2'),
(17580,2194,'_edit_last','2'),
(17581,2194,'_wp_page_template','default'),
(17583,2194,'ninzio_page_subtitle',''),
(17584,2194,'ninzio_page_sidebar','none'),
(17585,2194,'ninzio_page_title_background_color',''),
(17586,2194,'ninzio_page_title_background_color_opacity','1'),
(17587,2194,'ninzio_page_title_text_color','#eaeaea'),
(17588,2194,'ninzio_page_subtitle_background_color',''),
(17589,2194,'ninzio_page_subtitle_background_color_opacity','1'),
(17590,2194,'ninzio_page_subtitle_text_color','#444444'),
(17591,2194,'ninzio_page_title_section_background_color','#f6f6f6'),
(17592,2194,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/header14.jpg'),
(17593,2194,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(17594,2194,'ninzio_page_title_section_background_image_position','left_top'),
(17595,2194,'ninzio_page_title_section_background_image_attachment','scroll'),
(17596,2194,'ninzio_page_title_section_background_image_size','auto'),
(17597,2194,'ninzio_one_page','no'),
(17598,2194,'ninzio_slider','no'),
(17599,2194,'ninzio_page_layout','yes'),
(17600,2194,'ninzio_page_twitter','no'),
(17601,2194,'ninzio_page_padding_top','yes'),
(17602,2194,'ninzio_rich_header','no'),
(17603,2194,'ninzio_page_title_section_background_image_parallax','no'),
(17604,2194,'_yoast_wpseo_content_score','30'),
(17605,2194,'_wpas_done_all','1'),
(17606,2194,'_jetpack_dont_email_post_to_subs','1'),
(17675,1590,'_yoast_wpseo_content_score','30'),
(17676,1590,'_jetpack_dont_email_post_to_subs','1'),
(17699,2202,'_wp_attached_file','2016/12/QuickBooks.png'),
(17700,2202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:980;s:6:\"height\";i:756;s:4:\"file\";s:22:\"2016/12/QuickBooks.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"QuickBooks-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"QuickBooks-300x231.png\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"QuickBooks-768x592.png\";s:5:\"width\";i:768;s:6:\"height\";i:592;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:22:\"QuickBooks-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"QuickBooks-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:22:\"QuickBooks-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"QuickBooks-980x588.png\";s:5:\"width\";i:980;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(17850,1868,'_jetpack_dont_email_post_to_subs','1'),
(17859,2222,'_wp_attached_file','2017/01/PricingChartNoFooter.png'),
(17860,2222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:933;s:6:\"height\";i:1044;s:4:\"file\";s:32:\"2017/01/PricingChartNoFooter.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"PricingChartNoFooter-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"PricingChartNoFooter-268x300.png\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"PricingChartNoFooter-768x859.png\";s:5:\"width\";i:768;s:6:\"height\";i:859;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"PricingChartNoFooter-915x1024.png\";s:5:\"width\";i:915;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:32:\"PricingChartNoFooter-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:32:\"PricingChartNoFooter-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:32:\"PricingChartNoFooter-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:32:\"PricingChartNoFooter-933x588.png\";s:5:\"width\";i:933;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(17985,1436,'_jetpack_dont_email_post_to_subs','1'),
(17986,1436,'_yoast_wpseo_content_score','30'),
(17988,1634,'_jetpack_dont_email_post_to_subs','1'),
(17989,1634,'_yoast_wpseo_content_score','30'),
(17990,1859,'_edit_lock','1484097813:2'),
(17991,1436,'_oembed_eacd29637f555773771c66ed876d2387','{{unknown}}'),
(17993,1592,'_jetpack_dont_email_post_to_subs','1'),
(17994,1592,'_yoast_wpseo_content_score','60'),
(17995,1587,'_jetpack_dont_email_post_to_subs','1'),
(17996,1587,'_yoast_wpseo_content_score','30'),
(17997,1777,'_jetpack_dont_email_post_to_subs','1'),
(17998,1777,'_yoast_wpseo_content_score','30'),
(17999,1589,'_jetpack_dont_email_post_to_subs','1'),
(18000,1589,'_yoast_wpseo_content_score','60'),
(18001,1593,'_jetpack_dont_email_post_to_subs','1'),
(18002,1593,'_yoast_wpseo_content_score','60'),
(18003,1591,'_jetpack_dont_email_post_to_subs','1'),
(18004,1591,'_yoast_wpseo_content_score','60'),
(18005,1588,'_yoast_wpseo_content_score','60'),
(18008,1867,'_jetpack_dont_email_post_to_subs','1'),
(18009,1867,'_yoast_wpseo_content_score','60'),
(18011,1459,'_yoast_wpseo_content_score','60'),
(18012,1459,'_jetpack_dont_email_post_to_subs','1'),
(18014,1753,'_jetpack_dont_email_post_to_subs','1'),
(18015,1870,'_yoast_wpseo_content_score','30'),
(18016,1870,'_jetpack_dont_email_post_to_subs','1'),
(18018,2234,'_wp_attached_file','2017/01/iPadCheckout.png'),
(18019,2234,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:24:\"2017/01/iPadCheckout.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"iPadCheckout-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"iPadCheckout-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"iPadCheckout-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"iPadCheckout-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"iPadCheckout-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"iPadCheckout-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"iPadCheckout-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"iPadCheckout-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18020,2235,'_wp_attached_file','2017/01/iPadOrderHistory.png'),
(18021,2235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:28:\"2017/01/iPadOrderHistory.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"iPadOrderHistory-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"iPadOrderHistory-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"iPadOrderHistory-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"iPadOrderHistory-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"iPadOrderHistory-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"iPadOrderHistory-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"iPadOrderHistory-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"iPadOrderHistory-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18022,1753,'_oembed_18e6694456d41012cd47375ae926ad94','{{unknown}}'),
(18023,1796,'_oembed_7bcb388f2be5283221f02c8c295092f7','{{unknown}}'),
(18024,1796,'_oembed_18e6694456d41012cd47375ae926ad94','{{unknown}}'),
(18043,992,'_yoast_wpseo_content_score','60'),
(18044,1624,'_edit_lock','1484184888:2'),
(18057,2245,'_wp_attached_file','2017/01/iphone_cart.png'),
(18058,2245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:428;s:6:\"height\";i:896;s:4:\"file\";s:23:\"2017/01/iphone_cart.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"iphone_cart-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"iphone_cart-143x300.png\";s:5:\"width\";i:143;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"iphone_cart-428x480.png\";s:5:\"width\";i:428;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"iphone_cart-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"iphone_cart-428x588.png\";s:5:\"width\";i:428;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:23:\"iphone_cart-428x588.png\";s:5:\"width\";i:428;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18059,1636,'_jetpack_dont_email_post_to_subs','1'),
(18060,1636,'_yoast_wpseo_content_score','30'),
(18063,2246,'_wp_attached_file','2017/01/iPad_cart.png'),
(18064,2246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:714;s:4:\"file\";s:21:\"2017/01/iPad_cart.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"iPad_cart-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"iPad_cart-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"iPad_cart-768x548.png\";s:5:\"width\";i:768;s:6:\"height\";i:548;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"iPad_cart-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"iPad_cart-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"iPad_cart-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"iPad_cart-1000x588.png\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18065,1772,'_jetpack_dont_email_post_to_subs','1'),
(18066,1628,'_jetpack_dont_email_post_to_subs','1'),
(18067,1639,'_jetpack_dont_email_post_to_subs','1'),
(18078,2248,'_edit_lock','1484241158:2'),
(18079,2248,'_edit_last','2'),
(18080,2248,'_oembed_5d22fa921981d7371089ef9db68d6f6b','{{unknown}}'),
(18081,2248,'_yoast_wpseo_primary_category',''),
(18082,2248,'ninzio_post_audio_mp3',''),
(18083,2248,'ninzio_post_audio_ogg',''),
(18084,2248,'ninzio_post_audio_embed',''),
(18085,2248,'ninzio_post_video_mp4',''),
(18086,2248,'ninzio_post_video_ogv',''),
(18087,2248,'ninzio_post_video_webm',''),
(18088,2248,'ninzio_post_video_embed',''),
(18089,2248,'ninzio_post_video_poster',''),
(18090,2248,'ninzio_post_link_url',''),
(18091,2248,'ninzio_post_image_url',''),
(18092,2248,'ninzio_post_image_description',''),
(18093,2248,'ninzio_post_status_author',''),
(18094,2248,'ninzio_post_quote_author',''),
(18095,2248,'ninzio_post_featured_media','yes'),
(18096,2248,'_yoast_wpseo_focuskw_text_input','winery pos'),
(18097,2248,'_yoast_wpseo_focuskw','winery pos'),
(18098,2248,'_yoast_wpseo_linkdex','41'),
(18099,2248,'_yoast_wpseo_content_score','60'),
(18102,2248,'_wpas_done_all','1'),
(18103,1621,'_wp_old_slug','slide1'),
(18106,2249,'_wpas_done_all','1'),
(18107,2249,'wprss_item_permalink','https://activeclubsolutions.net/get-cheeseburger-no-mayo/'),
(18108,2249,'wprss_item_enclosure',''),
(18109,2249,'wprss_item_author','Active Club Solutions'),
(18110,2249,'wprss_feed_id','1713'),
(18111,1636,'_wp_old_slug','slide4'),
(18112,1772,'_wp_old_slug','slide6'),
(18113,1634,'_wp_old_slug','slide3'),
(18114,1628,'_wp_old_slug','slide2'),
(18115,1639,'_wp_old_slug','slide5'),
(18117,1639,'_yoast_wpseo_content_score','30'),
(18132,2257,'_wp_attached_file','2017/01/GSOLogoFinal.png'),
(18133,2257,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2017/01/GSOLogoFinal.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"GSOLogoFinal-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"GSOLogoFinal-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18135,2258,'_wp_attached_file','2017/01/vantiv_2.png'),
(18136,2258,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:163;s:6:\"height\";i:42;s:4:\"file\";s:20:\"2017/01/vantiv_2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"vantiv_2-150x42.png\";s:5:\"width\";i:150;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18144,2259,'_wp_attached_file','2017/01/PCmonitorWithACM_1.png'),
(18145,2259,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:547;s:6:\"height\";i:378;s:4:\"file\";s:30:\"2017/01/PCmonitorWithACM_1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_1-300x207.png\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18146,2260,'_wp_attached_file','2017/01/5monitors_1.png'),
(18147,2260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1267;s:6:\"height\";i:573;s:4:\"file\";s:23:\"2017/01/5monitors_1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"5monitors_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"5monitors_1-300x136.png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"5monitors_1-768x347.png\";s:5:\"width\";i:768;s:6:\"height\";i:347;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"5monitors_1-1024x463.png\";s:5:\"width\";i:1024;s:6:\"height\";i:463;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"5monitors_1-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"5monitors_1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"5monitors_1-894x573.png\";s:5:\"width\";i:894;s:6:\"height\";i:573;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"5monitors_1-1200x573.png\";s:5:\"width\";i:1200;s:6:\"height\";i:573;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18149,2262,'_wp_attached_file','2017/01/wizard.png'),
(18150,2262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:18:\"2017/01/wizard.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18166,1772,'_yoast_wpseo_content_score','30'),
(18167,2263,'_wp_attached_file','2017/01/mpopandipad.png'),
(18168,2263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:437;s:4:\"file\";s:23:\"2017/01/mpopandipad.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mpopandipad-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"mpopandipad-300x128.png\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"mpopandipad-768x328.png\";s:5:\"width\";i:768;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"mpopandipad-1024x437.png\";s:5:\"width\";i:1024;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"mpopandipad-600x437.png\";s:5:\"width\";i:600;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"mpopandipad-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"mpopandipad-894x437.png\";s:5:\"width\";i:894;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18172,1790,'_jetpack_dont_email_post_to_subs','1'),
(18174,2265,'_wp_attached_file','2017/01/iPadWholesaleOrder.png'),
(18175,2265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:30:\"2017/01/iPadWholesaleOrder.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"iPadWholesaleOrder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"iPadWholesaleOrder-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"iPadWholesaleOrder-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"iPadWholesaleOrder-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"iPadWholesaleOrder-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"iPadWholesaleOrder-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"iPadWholesaleOrder-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"iPadWholesaleOrder-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18176,1768,'_yoast_wpseo_content_score','30'),
(18180,2268,'_edit_lock','1541044582:2'),
(18181,2268,'_edit_last','2'),
(18183,2268,'background_image','https://activeclubsolutions.net/wp-content/uploads/2017/04/dandilion_5.png'),
(18184,2268,'background_color',''),
(18185,2268,'background_video_mp4',''),
(18186,2268,'background_video_ogv',''),
(18187,2268,'background_video_webm',''),
(18188,2268,'background_image_parallax','yes'),
(18189,2268,'layer_1','<div style=\"margin: auto; padding: 0; width: 1200px;\"><img class=\"alignleft size-full\" src=\"/wp-content/uploads/2017/01/registration_2.png\" alt=\"registration\" width=\"288\" height=\"500\" /></div>\r\n\r\n<div style=\"margin: auto; padding: 0; width: 1000px;\"><div style=\"margin: auto; padding: 100px 0 0 0; width: 670px; float: right;\">\r\n<span style=\"color: #000; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 45px; font-weight: 600;\">Embedded <strong><em><span style=\"text-transform: none;\">iframe</span></em><strong>  Account Tools</strong></strong></span></div></div>\r\n\r\n<div style=\"margin: auto; padding: 0; width: 1000px;\"><div style=\"margin: auto; padding: 40px 0 0 0; width: 670px; float: right;\"><span style=\"color: #fff; font-size: 36px; font-style: italic;\">Provide your customers with:</span></div></div>\r\n\r\n<div style=\"margin: auto; padding: 0; width: 1000px;\"><div style=\"margin: auto; padding: 40px 0 0 0; width: 670px; float: right;\"><span style=\"color: #fff; font-size: 30px; font-style: none;\">&#10003; online club signup / kiosk</span></div></div>\r\n\r\n'),
(18190,2268,'layer_index_1','active'),
(18191,2268,'layer_delay_1','400'),
(18192,2268,'layer_duration_1','400'),
(18193,2268,'layer_opacity_1','1'),
(18194,2268,'layer_zindex_1','1'),
(18195,2268,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18196,2268,'layer_direction_1','top'),
(18197,2268,'layer_posx_1','150'),
(18198,2268,'layer_posy_1','50'),
(18199,2268,'layer_2','<div style=\"margin: auto; padding: 0; width: 1200px;\">\r\n<img class=\"alignleft\" src=\"/wp-content/uploads/2017/01/manage-shipping2.png\" alt=\"Manage order\" width=\"406\" height=\"500\" /></div>'),
(18200,2268,'layer_index_2','active'),
(18201,2268,'layer_delay_2','3000'),
(18202,2268,'layer_duration_2','800'),
(18203,2268,'layer_opacity_2','1'),
(18204,2268,'layer_zindex_2','1'),
(18205,2268,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18206,2268,'layer_direction_2','left'),
(18207,2268,'layer_posx_2','100'),
(18208,2268,'layer_posy_2','50'),
(18209,2268,'layer_3','<div style=\"margin: auto; padding: 0 0 0 0; width: 770px; float: right;\"><span style=\"color: #fff; font-size: 30px; font-style: none;\">&#10003; online account management</span></div>\r\n\r\n<div style=\"margin: auto; padding: 20px 0 0 0; width: 770px; float: right;\"><span style=\"color: #fff; font-size: 30px; font-style: none;\">&#10003; multiple shipping address management</span></div>\r\n\r\n\r\n'),
(18210,2268,'layer_index_3','active'),
(18211,2268,'layer_delay_3','3000'),
(18212,2268,'layer_duration_3','800'),
(18213,2268,'layer_opacity_3','1'),
(18214,2268,'layer_zindex_3','1'),
(18215,2268,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18216,2268,'layer_direction_3','right'),
(18217,2268,'layer_posx_3','580'),
(18218,2268,'layer_posy_3','342'),
(18219,2268,'layer_4','<div style=\"margin: auto; padding: 0; width: 1200px;\">\r\n<img class=\"alignleft\" src=\"/wp-content/uploads/2017/01/manage-orderlist2.png\" alt=\"Manage Order List\" width=\"406\" height=\"500\" /></div>'),
(18220,2268,'layer_index_4','active'),
(18221,2268,'layer_delay_4','6000'),
(18222,2268,'layer_duration_4','800'),
(18223,2268,'layer_opacity_4','1'),
(18224,2268,'layer_zindex_4','1'),
(18225,2268,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18226,2268,'layer_direction_4','left'),
(18227,2268,'layer_posx_4','100'),
(18228,2268,'layer_posy_4','50'),
(18229,2268,'layer_5','<div style=\"margin: auto; padding: 0; width: 1100px;\"><div style=\"margin: auto; padding: 40px 0 0 0; width: 670px; float: right;\"><span style=\"color: #fff; font-size: 30px; font-style: none;\">&#10003; online order history</span></div></div>'),
(18230,2268,'layer_index_5','active'),
(18231,2268,'layer_delay_5','6000'),
(18232,2268,'layer_duration_5','800'),
(18233,2268,'layer_opacity_5','1'),
(18234,2268,'layer_zindex_5','1'),
(18235,2268,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18236,2268,'layer_direction_5','right'),
(18237,2268,'layer_posx_5','150'),
(18238,2268,'layer_posy_5','400'),
(18239,2268,'layer_6','<div style=\"margin: auto; padding: 0; width: 1100px;\">\r\n<img class=\"alignleft\" src=\"/wp-content/uploads/2017/01/manage-orders2.png\" alt=\"Manage order\" width=\"406\" height=\"500\" />\r\n</div>'),
(18240,2268,'layer_index_6','active'),
(18241,2268,'layer_delay_6','9000'),
(18242,2268,'layer_duration_6','800'),
(18243,2268,'layer_opacity_6','1'),
(18244,2268,'layer_zindex_6','1'),
(18245,2268,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18246,2268,'layer_direction_6','left'),
(18247,2268,'layer_posx_6','100'),
(18248,2268,'layer_posy_6','50'),
(18249,2268,'layer_7','<div style=\"margin: auto; padding: 0; width: 1100px;\"><div style=\"margin: auto; padding: 40px 0 0 0; width: 670px; float: right;\"><span style=\"color: #fff; font-size: 30px; font-style: none;\">&#10003; online order management</span></div></div>\r\n'),
(18250,2268,'layer_index_7','active'),
(18251,2268,'layer_delay_7','9000'),
(18252,2268,'layer_duration_7','800'),
(18253,2268,'layer_opacity_7','1'),
(18254,2268,'layer_zindex_7','1'),
(18255,2268,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18256,2268,'layer_direction_7','right'),
(18257,2268,'layer_posx_7','150'),
(18258,2268,'layer_posy_7','450'),
(18259,2268,'_yoast_wpseo_content_score','30'),
(18260,2268,'_wpas_done_all','1'),
(18261,2268,'_jetpack_dont_email_post_to_subs','1'),
(18279,2275,'_wp_attached_file','2017/01/manage-orderlist2.png'),
(18280,2275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1373;s:6:\"height\";i:1594;s:4:\"file\";s:29:\"2017/01/manage-orderlist2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"manage-orderlist2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"manage-orderlist2-258x300.png\";s:5:\"width\";i:258;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"manage-orderlist2-768x892.png\";s:5:\"width\";i:768;s:6:\"height\";i:892;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"manage-orderlist2-882x1024.png\";s:5:\"width\";i:882;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"manage-orderlist2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"manage-orderlist2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"manage-orderlist2-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"manage-orderlist2-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18281,2276,'_wp_attached_file','2017/01/manage-orders2.png'),
(18282,2276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1297;s:6:\"height\";i:1593;s:4:\"file\";s:26:\"2017/01/manage-orders2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"manage-orders2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"manage-orders2-244x300.png\";s:5:\"width\";i:244;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"manage-orders2-768x943.png\";s:5:\"width\";i:768;s:6:\"height\";i:943;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"manage-orders2-834x1024.png\";s:5:\"width\";i:834;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"manage-orders2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"manage-orders2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"manage-orders2-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"manage-orders2-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18283,2277,'_wp_attached_file','2017/01/manage-shipping2.png'),
(18284,2277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1373;s:6:\"height\";i:1593;s:4:\"file\";s:28:\"2017/01/manage-shipping2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"manage-shipping2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"manage-shipping2-259x300.png\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"manage-shipping2-768x891.png\";s:5:\"width\";i:768;s:6:\"height\";i:891;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"manage-shipping2-883x1024.png\";s:5:\"width\";i:883;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"manage-shipping2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"manage-shipping2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"manage-shipping2-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"manage-shipping2-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18285,2278,'_wp_attached_file','2017/01/registration_2.png'),
(18286,2278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1019;s:6:\"height\";i:1593;s:4:\"file\";s:26:\"2017/01/registration_2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"registration_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"registration_2-192x300.png\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"registration_2-768x1201.png\";s:5:\"width\";i:768;s:6:\"height\";i:1201;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"registration_2-655x1024.png\";s:5:\"width\";i:655;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"registration_2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"registration_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"registration_2-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"registration_2-1019x588.png\";s:5:\"width\";i:1019;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18303,2280,'_wp_attached_file','2017/01/iPadNewOrder.png'),
(18304,2280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1235;s:6:\"height\";i:874;s:4:\"file\";s:24:\"2017/01/iPadNewOrder.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"iPadNewOrder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"iPadNewOrder-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"iPadNewOrder-768x544.png\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"iPadNewOrder-1024x725.png\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"iPadNewOrder-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"iPadNewOrder-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"iPadNewOrder-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"iPadNewOrder-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18306,2281,'_wp_attached_file','2017/01/iPadCheckoutSlide.png'),
(18307,2281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1235;s:6:\"height\";i:874;s:4:\"file\";s:29:\"2017/01/iPadCheckoutSlide.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"iPadCheckoutSlide-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"iPadCheckoutSlide-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"iPadCheckoutSlide-768x544.png\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"iPadCheckoutSlide-1024x725.png\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"iPadCheckoutSlide-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"iPadCheckoutSlide-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"iPadCheckoutSlide-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"iPadCheckoutSlide-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18308,2282,'_wp_attached_file','2017/01/iPadOrderHistory_4.png'),
(18309,2282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1235;s:6:\"height\";i:874;s:4:\"file\";s:30:\"2017/01/iPadOrderHistory_4.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"iPadOrderHistory_4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"iPadOrderHistory_4-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"iPadOrderHistory_4-768x544.png\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"iPadOrderHistory_4-1024x725.png\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"iPadOrderHistory_4-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"iPadOrderHistory_4-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"iPadOrderHistory_4-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"iPadOrderHistory_4-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18311,2283,'_wp_attached_file','2017/01/iPadCustomer.png'),
(18312,2283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1235;s:6:\"height\";i:874;s:4:\"file\";s:24:\"2017/01/iPadCustomer.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"iPadCustomer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"iPadCustomer-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"iPadCustomer-768x544.png\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"iPadCustomer-1024x725.png\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"iPadCustomer-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"iPadCustomer-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"iPadCustomer-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"iPadCustomer-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18313,2284,'_wp_attached_file','2017/01/iPadPending.png'),
(18314,2284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1235;s:6:\"height\";i:874;s:4:\"file\";s:23:\"2017/01/iPadPending.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"iPadPending-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"iPadPending-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"iPadPending-768x544.png\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"iPadPending-1024x725.png\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"iPadPending-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"iPadPending-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"iPadPending-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"iPadPending-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18315,2285,'_wp_attached_file','2017/01/iPadWholesale.png'),
(18316,2285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1235;s:6:\"height\";i:874;s:4:\"file\";s:25:\"2017/01/iPadWholesale.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"iPadWholesale-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"iPadWholesale-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"iPadWholesale-768x544.png\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"iPadWholesale-1024x725.png\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"iPadWholesale-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"iPadWholesale-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:25:\"iPadWholesale-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:26:\"iPadWholesale-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18319,2286,'_wp_attached_file','2017/01/bottlesonthewall.png'),
(18320,2286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1434;s:6:\"height\";i:550;s:4:\"file\";s:28:\"2017/01/bottlesonthewall.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"bottlesonthewall-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"bottlesonthewall-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"bottlesonthewall-768x295.png\";s:5:\"width\";i:768;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"bottlesonthewall-1024x393.png\";s:5:\"width\";i:1024;s:6:\"height\";i:393;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"bottlesonthewall-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"bottlesonthewall-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"bottlesonthewall-894x550.png\";s:5:\"width\";i:894;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"bottlesonthewall-1200x550.png\";s:5:\"width\";i:1200;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18321,2287,'_wp_attached_file','2017/01/winerack.png'),
(18322,2287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:680;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2017/01/winerack.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"winerack-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"winerack-300x106.png\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"winerack-600x240.png\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"winerack-384x240.png\";s:5:\"width\";i:384;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18325,2288,'_wp_attached_file','2017/01/CartCatalog.png'),
(18326,2288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1122;s:6:\"height\";i:904;s:4:\"file\";s:23:\"2017/01/CartCatalog.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"CartCatalog-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"CartCatalog-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"CartCatalog-768x619.png\";s:5:\"width\";i:768;s:6:\"height\";i:619;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"CartCatalog-1024x825.png\";s:5:\"width\";i:1024;s:6:\"height\";i:825;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"CartCatalog-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"CartCatalog-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"CartCatalog-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"CartCatalog-1122x588.png\";s:5:\"width\";i:1122;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18327,2289,'_wp_attached_file','2017/01/CartCheckout.png'),
(18328,2289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1122;s:6:\"height\";i:904;s:4:\"file\";s:24:\"2017/01/CartCheckout.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"CartCheckout-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"CartCheckout-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"CartCheckout-768x619.png\";s:5:\"width\";i:768;s:6:\"height\";i:619;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"CartCheckout-1024x825.png\";s:5:\"width\";i:1024;s:6:\"height\";i:825;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"CartCheckout-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"CartCheckout-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"CartCheckout-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"CartCheckout-1122x588.png\";s:5:\"width\";i:1122;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18329,2290,'_wp_attached_file','2017/01/CartElement.png'),
(18330,2290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1122;s:6:\"height\";i:904;s:4:\"file\";s:23:\"2017/01/CartElement.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"CartElement-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"CartElement-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"CartElement-768x619.png\";s:5:\"width\";i:768;s:6:\"height\";i:619;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"CartElement-1024x825.png\";s:5:\"width\";i:1024;s:6:\"height\";i:825;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"CartElement-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"CartElement-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"CartElement-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"CartElement-1122x588.png\";s:5:\"width\";i:1122;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18331,2291,'_wp_attached_file','2017/01/CartMiniBasket.png'),
(18332,2291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1122;s:6:\"height\";i:904;s:4:\"file\";s:26:\"2017/01/CartMiniBasket.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"CartMiniBasket-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"CartMiniBasket-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"CartMiniBasket-768x619.png\";s:5:\"width\";i:768;s:6:\"height\";i:619;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"CartMiniBasket-1024x825.png\";s:5:\"width\";i:1024;s:6:\"height\";i:825;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"CartMiniBasket-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"CartMiniBasket-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"CartMiniBasket-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"CartMiniBasket-1122x588.png\";s:5:\"width\";i:1122;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18333,2292,'_wp_attached_file','2017/01/CartOrderReview.png'),
(18334,2292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1122;s:6:\"height\";i:904;s:4:\"file\";s:27:\"2017/01/CartOrderReview.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"CartOrderReview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"CartOrderReview-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"CartOrderReview-768x619.png\";s:5:\"width\";i:768;s:6:\"height\";i:619;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"CartOrderReview-1024x825.png\";s:5:\"width\";i:1024;s:6:\"height\";i:825;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"CartOrderReview-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"CartOrderReview-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"CartOrderReview-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"CartOrderReview-1122x588.png\";s:5:\"width\";i:1122;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18335,2293,'_wp_attached_file','2017/01/CartShoppingCart.png'),
(18336,2293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1122;s:6:\"height\";i:904;s:4:\"file\";s:28:\"2017/01/CartShoppingCart.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"CartShoppingCart-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"CartShoppingCart-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"CartShoppingCart-768x619.png\";s:5:\"width\";i:768;s:6:\"height\";i:619;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"CartShoppingCart-1024x825.png\";s:5:\"width\";i:1024;s:6:\"height\";i:825;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"CartShoppingCart-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"CartShoppingCart-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"CartShoppingCart-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"CartShoppingCart-1122x588.png\";s:5:\"width\";i:1122;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18339,2294,'_wp_attached_file','2017/01/wizard100x100.png'),
(18340,2294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:25:\"2017/01/wizard100x100.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18341,1628,'_yoast_wpseo_content_score','30'),
(18342,2295,'_wp_attached_file','2017/01/wizard130x130.png'),
(18343,2295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:130;s:6:\"height\";i:130;s:4:\"file\";s:25:\"2017/01/wizard130x130.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18388,2296,'_menu_item_type','custom'),
(18389,2296,'_menu_item_menu_item_parent','1932'),
(18390,2296,'_menu_item_object_id','2296'),
(18391,2296,'_menu_item_object','custom'),
(18392,2296,'_menu_item_target',''),
(18393,2296,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(18394,2296,'_menu_item_xfn',''),
(18395,2296,'_menu_item_url','https://www.secureclub.net/Help/cart/index.html'),
(18399,2296,'_wpas_done_all','1'),
(18403,2298,'_wp_attached_file','2017/01/wizard160x160.png'),
(18404,2298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:25:\"2017/01/wizard160x160.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"wizard160x160-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:{}}}'),
(18409,2300,'_edit_lock','1541044652:2'),
(18410,2300,'_edit_last','2'),
(18412,2300,'background_image','https://activeclubsolutions.net/wp-content/uploads/2017/01/DataMining_6.png'),
(18413,2300,'background_color',''),
(18414,2300,'background_video_mp4',''),
(18415,2300,'background_video_ogv',''),
(18416,2300,'background_video_webm',''),
(18417,2300,'background_image_parallax','no'),
(18418,2300,'layer_1','<div style=\"margin: auto; padding: 40px 0 0 0; width: 1200px;\"><span style=\"color: #fff; font-size: 36px; line-height: 45px; font-style: italic;\">Unparalleled search<br>and data mining capabilities</span></div>\r\n\r\n<div style=\"margin: auto; padding: 20px 0 0 0; width: 1200px;\"><span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 45px; font-weight: 600; line-height: 50px;\">\"Live\"&nbsp; Data Reporting</span></div>\r\n\r\n'),
(18419,2300,'layer_index_1','active'),
(18420,2300,'layer_delay_1','0'),
(18421,2300,'layer_duration_1','100'),
(18422,2300,'layer_opacity_1','1'),
(18423,2300,'layer_zindex_1','1'),
(18424,2300,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18425,2300,'layer_direction_1','none'),
(18426,2300,'layer_posx_1','0'),
(18427,2300,'layer_posy_1','0'),
(18428,2300,'layer_2','<div style=\"margin: auto; padding: 217px 0 0 0; width: 1200px;\"><span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 55px; font-weight: 600; line-height: 65px;\">Question?</span></div>\r\n\r\n'),
(18429,2300,'layer_index_2','active'),
(18430,2300,'layer_delay_2','1000'),
(18431,2300,'layer_duration_2','1000'),
(18432,2300,'layer_opacity_2','1'),
(18433,2300,'layer_zindex_2','1'),
(18434,2300,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18435,2300,'layer_direction_2','left'),
(18436,2300,'layer_posx_2','0'),
(18437,2300,'layer_posy_2','0'),
(18438,2300,'layer_3','<div style=\"margin: auto; padding: 287px 0 0 0; width: 1200px;\">\r\n<span style=\"color: #ccc; font-size: 25px; font-weight: bold; line-height: 35px;\">Here is an example:</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 0px 0 0 0; width: 1200px;\">\r\n<span style=\"color: #ccc; font-size: 25px; line-height: 35px;\">\"Find the club members that have purchased<br>in the tasting room in the last 60 days\"</span>\r\n</div>'),
(18439,2300,'layer_index_3','active'),
(18440,2300,'layer_delay_3','3000'),
(18441,2300,'layer_duration_3','500'),
(18442,2300,'layer_opacity_3','1'),
(18443,2300,'layer_zindex_3','1'),
(18444,2300,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18445,2300,'layer_direction_3','left'),
(18446,2300,'layer_posx_3','0'),
(18447,2300,'layer_posy_3','0'),
(18448,2300,'layer_4','<div style=\"margin: auto; padding: 70px 120px; width: 1920px;\">\r\n<img src=\"/wp-content/uploads/2017/01/SearchCustomer_1.png\" alt=\"Tasting Room POS\" width=\"441\" height=\"450\" class=\"aligncenter\"/>\r\n</div>\r\n'),
(18449,2300,'layer_index_4','active'),
(18450,2300,'layer_delay_4','5000'),
(18451,2300,'layer_duration_4','500'),
(18452,2300,'layer_opacity_4','1'),
(18453,2300,'layer_zindex_4','1'),
(18454,2300,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18455,2300,'layer_direction_4','right'),
(18456,2300,'layer_posx_4','0'),
(18457,2300,'layer_posy_4','0'),
(18458,2300,'layer_5','<div style=\"margin: auto; padding: 70px 0px; width: 1720px;\">\r\n<img src=\"/wp-content/uploads/2017/01/ResultsCustSearch_2.png\" alt=\"Tasting Room POS\" width=\"727\" height=\"480\" class=\"aligncenter\"/>\r\n</div>\r\n'),
(18459,2300,'layer_index_5','active'),
(18460,2300,'layer_delay_5','9000'),
(18461,2300,'layer_duration_5','500'),
(18462,2300,'layer_opacity_5','1'),
(18463,2300,'layer_zindex_5','1'),
(18464,2300,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18465,2300,'layer_direction_5','right'),
(18466,2300,'layer_posx_5','0'),
(18467,2300,'layer_posy_5','0'),
(18468,2300,'layer_6','<span style=\"color: #fff; font-size: 20px; line-height: 25px;\">View in numerous report layouts</span>\r\n<span style=\"color: #fff; font-size: 20px; line-height: 25px;\">Create and modify views</span>\r\n<span style=\"color: #fff; font-size: 20px; line-height: 25px;\">Live multi-column sorting</span>\r\n'),
(18469,2300,'layer_index_6','active'),
(18470,2300,'layer_delay_6','9000'),
(18471,2300,'layer_duration_6','200'),
(18472,2300,'layer_opacity_6','1'),
(18473,2300,'layer_zindex_6','1'),
(18474,2300,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18475,2300,'layer_direction_6','bottom'),
(18476,2300,'layer_posx_6','0'),
(18477,2300,'layer_posy_6','410'),
(18478,2300,'layer_7','<span style=\"color: #fff; font-size: 20px; line-height: 25px;\">Quick searches</span>\r\n<span style=\"color: #fff; font-size: 20px; line-height: 25px;\">Saved searches</span>\r\n<span style=\"color: #fff; font-size: 20px; line-height: 25px;\">Make a complex search - you have the power</span>'),
(18479,2300,'layer_index_7','active'),
(18480,2300,'layer_delay_7','9000'),
(18481,2300,'layer_duration_7','1000'),
(18482,2300,'layer_opacity_7','1'),
(18483,2300,'layer_zindex_7','1'),
(18484,2300,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18485,2300,'layer_direction_7','bottom'),
(18486,2300,'layer_posx_7','0'),
(18487,2300,'layer_posy_7','500'),
(18488,2300,'_yoast_wpseo_content_score','30'),
(18489,2300,'_wpas_done_all','1'),
(18490,2300,'_jetpack_dont_email_post_to_subs','1'),
(18491,2301,'_wp_attached_file','2017/01/DataMining_2.png'),
(18492,2301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:807;s:6:\"height\";i:245;s:4:\"file\";s:24:\"2017/01/DataMining_2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"DataMining_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"DataMining_2-300x91.png\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"DataMining_2-768x233.png\";s:5:\"width\";i:768;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"DataMining_2-600x245.png\";s:5:\"width\";i:600;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"DataMining_2-384x245.png\";s:5:\"width\";i:384;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18511,2305,'_wp_attached_file','2017/01/POSNewOrder.png'),
(18512,2305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2017/01/POSNewOrder.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"POSNewOrder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"POSNewOrder-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"POSNewOrder-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"POSNewOrder-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"POSNewOrder-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"POSNewOrder-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"POSNewOrder-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"POSNewOrder-1024x588.png\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18513,2306,'_wp_attached_file','2017/01/POSCheckout.png'),
(18514,2306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2017/01/POSCheckout.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"POSCheckout-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"POSCheckout-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"POSCheckout-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"POSCheckout-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"POSCheckout-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"POSCheckout-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"POSCheckout-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"POSCheckout-1024x588.png\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18515,2307,'_wp_attached_file','2017/01/POSOrderHistory.png'),
(18516,2307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:27:\"2017/01/POSOrderHistory.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"POSOrderHistory-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"POSOrderHistory-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"POSOrderHistory-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"POSOrderHistory-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"POSOrderHistory-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"POSOrderHistory-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"POSOrderHistory-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"POSOrderHistory-1024x588.png\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18517,2308,'_wp_attached_file','2017/01/POSCustomer.png'),
(18518,2308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2017/01/POSCustomer.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"POSCustomer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"POSCustomer-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"POSCustomer-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"POSCustomer-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"POSCustomer-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"POSCustomer-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"POSCustomer-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"POSCustomer-1024x588.png\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18519,2309,'_wp_attached_file','2017/01/POSWholesale.png'),
(18520,2309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:24:\"2017/01/POSWholesale.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"POSWholesale-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"POSWholesale-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"POSWholesale-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"POSWholesale-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"POSWholesale-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"POSWholesale-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"POSWholesale-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"POSWholesale-1024x588.png\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18521,2310,'_wp_attached_file','2017/01/POSPending.png'),
(18522,2310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:22:\"2017/01/POSPending.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"POSPending-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"POSPending-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"POSPending-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"POSPending-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:22:\"POSPending-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"POSPending-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:22:\"POSPending-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:23:\"POSPending-1024x588.png\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18526,2312,'_wp_attached_file','2017/01/SearchCustomer_1.png'),
(18527,2312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:646;s:6:\"height\";i:702;s:4:\"file\";s:28:\"2017/01/SearchCustomer_1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"SearchCustomer_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"SearchCustomer_1-276x300.png\";s:5:\"width\";i:276;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"SearchCustomer_1-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"SearchCustomer_1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"SearchCustomer_1-646x588.png\";s:5:\"width\";i:646;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"SearchCustomer_1-646x588.png\";s:5:\"width\";i:646;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18528,2300,'_wp_old_slug','2300'),
(18532,2314,'_wp_attached_file','2017/01/ResultsCustSearch_2.png'),
(18533,2314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:988;s:6:\"height\";i:652;s:4:\"file\";s:31:\"2017/01/ResultsCustSearch_2.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"ResultsCustSearch_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"ResultsCustSearch_2-300x198.png\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"ResultsCustSearch_2-768x507.png\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:31:\"ResultsCustSearch_2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:31:\"ResultsCustSearch_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:31:\"ResultsCustSearch_2-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"ResultsCustSearch_2-988x588.png\";s:5:\"width\";i:988;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18538,2317,'_wp_attached_file','2017/01/DataMining_5.png'),
(18539,2317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:807;s:6:\"height\";i:245;s:4:\"file\";s:24:\"2017/01/DataMining_5.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"DataMining_5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"DataMining_5-300x91.png\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"DataMining_5-768x233.png\";s:5:\"width\";i:768;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"DataMining_5-600x245.png\";s:5:\"width\";i:600;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"DataMining_5-384x245.png\";s:5:\"width\";i:384;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18562,2319,'_wp_attached_file','2017/01/DataMining_6.png'),
(18563,2319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:807;s:6:\"height\";i:245;s:4:\"file\";s:24:\"2017/01/DataMining_6.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"DataMining_6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"DataMining_6-300x91.png\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"DataMining_6-768x233.png\";s:5:\"width\";i:768;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"DataMining_6-600x245.png\";s:5:\"width\";i:600;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"DataMining_6-384x245.png\";s:5:\"width\";i:384;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18570,2322,'_wp_attached_file','2017/01/vineyardinfog_2.png'),
(18571,2322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2017/01/vineyardinfog_2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"vineyardinfog_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"vineyardinfog_2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"vineyardinfog_2-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"vineyardinfog_2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"vineyardinfog_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"vineyardinfog_2-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18573,2323,'_wp_attached_file','2017/01/fallingdrops.png'),
(18574,2323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:852;s:6:\"height\";i:480;s:4:\"file\";s:24:\"2017/01/fallingdrops.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"fallingdrops-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"fallingdrops-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"fallingdrops-768x433.png\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"fallingdrops-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"fallingdrops-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18575,2324,'_wp_attached_file','2017/01/fallingdrops_2.png'),
(18576,2324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:852;s:6:\"height\";i:221;s:4:\"file\";s:26:\"2017/01/fallingdrops_2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"fallingdrops_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"fallingdrops_2-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"fallingdrops_2-768x199.png\";s:5:\"width\";i:768;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"fallingdrops_2-600x221.png\";s:5:\"width\";i:600;s:6:\"height\";i:221;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"fallingdrops_2-384x221.png\";s:5:\"width\";i:384;s:6:\"height\";i:221;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18578,2325,'_edit_lock','1541044742:2'),
(18579,2325,'_edit_last','2'),
(18580,2326,'_wp_attached_file','2017/01/CRMBackground_1.png'),
(18581,2326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:260;s:4:\"file\";s:27:\"2017/01/CRMBackground_1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"CRMBackground_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"CRMBackground_1-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"CRMBackground_1-768x200.png\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"CRMBackground_1-600x260.png\";s:5:\"width\";i:600;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"CRMBackground_1-384x260.png\";s:5:\"width\";i:384;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"CRMBackground_1-894x260.png\";s:5:\"width\";i:894;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18583,2325,'background_image','https://activeclubsolutions.net/wp-content/uploads/2017/04/golfcourse_1.png'),
(18584,2325,'background_color',''),
(18585,2325,'background_video_mp4',''),
(18586,2325,'background_video_ogv',''),
(18587,2325,'background_video_webm',''),
(18588,2325,'background_image_parallax','no'),
(18589,2325,'layer_1','<div style=\"margin: auto; padding: 0; width: 1920px;\">\r\n<div style=\"margin: auto; padding: 0 0 0 0; width: auto;\">\r\n<span style=\"color: #ccc; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 45px; font-weight: 600; line-height: 50px;\">Keep your finger</span>\r\n<span style=\"color: #ccc; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 45px; font-weight: 600; line-height: 55px;\">on the Pulse</span>\r\n\r\n<span style=\"color: #fff; font-size: 35px; font-weight: 600; line-height: 38px;\">Over 60 different charts</span>\r\n\r\n<div style=\"margin: auto; padding: 0 0 0 0; \">\r\n<a class=\"button large button-icon\" style=\"border: none;\" href=\"/winery-pos-features/mobile-dashboards/\" target=\"_self\">Learn More</a>\r\n</div>\r\n\r\n</div>\r\n</div>'),
(18590,2325,'layer_index_1','active'),
(18591,2325,'layer_delay_1','2500'),
(18592,2325,'layer_duration_1','500'),
(18593,2325,'layer_opacity_1','1'),
(18594,2325,'layer_zindex_1','1'),
(18595,2325,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18596,2325,'layer_direction_1','top'),
(18597,2325,'layer_posx_1','400'),
(18598,2325,'layer_posy_1','350'),
(18599,2325,'layer_2','<img src=\"/wp-content/uploads/2017/01/iPhoneMembership_1.png\" alt=\"Dashboard on iPhone\"  width=\"148px\" height=\"300px\" />\r\n\r\n\r\n'),
(18600,2325,'layer_index_2','active'),
(18601,2325,'layer_delay_2','500'),
(18602,2325,'layer_duration_2','500'),
(18603,2325,'layer_opacity_2','1'),
(18604,2325,'layer_zindex_2','1'),
(18605,2325,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18606,2325,'layer_direction_2','left'),
(18607,2325,'layer_posx_2','0'),
(18608,2325,'layer_posy_2','50'),
(18609,2325,'layer_3','<img src=\"/wp-content/uploads/2017/01/iPhoneConversionByPerson_1.png\" alt=\"Dashboard on iPhone\"  width=\"148px\" height=\"300px\" />\r\n'),
(18610,2325,'layer_index_3','active'),
(18611,2325,'layer_delay_3','1000'),
(18612,2325,'layer_duration_3','1000'),
(18613,2325,'layer_opacity_3','1'),
(18614,2325,'layer_zindex_3','1'),
(18615,2325,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18616,2325,'layer_direction_3','right'),
(18617,2325,'layer_posx_3','650'),
(18618,2325,'layer_posy_3','50'),
(18619,2325,'layer_4','<img src=\"/wp-content/uploads/2017/01/iPhoneSalesByPerson_1.png\" alt=\"Dashboard on iPhone\"  width=\"148px\" height=\"300px\" />\r\n\r\n\r\n'),
(18620,2325,'layer_index_4','active'),
(18621,2325,'layer_delay_4','1000'),
(18622,2325,'layer_duration_4','1000'),
(18623,2325,'layer_opacity_4','1'),
(18624,2325,'layer_zindex_4','1'),
(18625,2325,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18626,2325,'layer_direction_4','top'),
(18627,2325,'layer_posx_4','200'),
(18628,2325,'layer_posy_4','250'),
(18629,2325,'layer_5','<img src=\"/wp-content/uploads/2017/01/iPhoneSalesByClub_1.png\" alt=\"Dashboard on iPhone\"  width=\"148px\" height=\"300px\" />\r\n\r\n\r\n'),
(18630,2325,'layer_index_5','active'),
(18631,2325,'layer_delay_5','1000'),
(18632,2325,'layer_duration_5','1000'),
(18633,2325,'layer_opacity_5','1'),
(18634,2325,'layer_zindex_5','1'),
(18635,2325,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18636,2325,'layer_direction_5','right'),
(18637,2325,'layer_posx_5','850'),
(18638,2325,'layer_posy_5','250'),
(18639,2325,'layer_6','<img src=\"/wp-content/uploads/2017/01/IPhoneSalesByLocation_1.png\" alt=\"Dashboard on iPhone\"  width=\"148px\" height=\"300px\" />\r\n\r\n\r\n'),
(18640,2325,'layer_index_6','active'),
(18641,2325,'layer_delay_6','1000'),
(18642,2325,'layer_duration_6','1000'),
(18643,2325,'layer_opacity_6','1'),
(18644,2325,'layer_zindex_6','1'),
(18645,2325,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18646,2325,'layer_direction_6','left_top'),
(18647,2325,'layer_posx_6','400'),
(18648,2325,'layer_posy_6','50'),
(18649,2325,'layer_7','<img src=\"/wp-content/uploads/2017/01/iPhoneConversionBarchart_1.png\" alt=\"Dashboard on iPhone\"  width=\"148px\" height=\"300px\" />\r\n\r\n\r\n'),
(18650,2325,'layer_index_7','active'),
(18651,2325,'layer_delay_7','1000'),
(18652,2325,'layer_duration_7','1000'),
(18653,2325,'layer_opacity_7','1'),
(18654,2325,'layer_zindex_7','1'),
(18655,2325,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18656,2325,'layer_direction_7','right'),
(18657,2325,'layer_posx_7','1050'),
(18658,2325,'layer_posy_7','50'),
(18659,2325,'_yoast_wpseo_content_score','30'),
(18660,2325,'_wpas_done_all','1'),
(18661,2325,'_jetpack_dont_email_post_to_subs','1'),
(18662,2328,'_wp_attached_file','2017/01/spreadsheet.png'),
(18663,2328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:453;s:4:\"file\";s:23:\"2017/01/spreadsheet.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"spreadsheet-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"spreadsheet-300x160.png\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"spreadsheet-768x409.png\";s:5:\"width\";i:768;s:6:\"height\";i:409;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"spreadsheet-600x453.png\";s:5:\"width\";i:600;s:6:\"height\";i:453;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"spreadsheet-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18688,2341,'_wp_attached_file','2017/01/iPhoneSalesByPerson_1.png'),
(18689,2341,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:197;s:6:\"height\";i:400;s:4:\"file\";s:33:\"2017/01/iPhoneSalesByPerson_1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"iPhoneSalesByPerson_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"iPhoneSalesByPerson_1-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"iPhoneSalesByPerson_1-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18690,2342,'_wp_attached_file','2017/01/IPhoneSalesByLocation_1.png'),
(18691,2342,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:197;s:6:\"height\";i:400;s:4:\"file\";s:35:\"2017/01/IPhoneSalesByLocation_1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"IPhoneSalesByLocation_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"IPhoneSalesByLocation_1-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:35:\"IPhoneSalesByLocation_1-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18692,2343,'_wp_attached_file','2017/01/iPhoneSalesByPersonByHour_1.png'),
(18693,2343,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:197;s:6:\"height\";i:400;s:4:\"file\";s:39:\"2017/01/iPhoneSalesByPersonByHour_1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"iPhoneSalesByPersonByHour_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"iPhoneSalesByPersonByHour_1-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:39:\"iPhoneSalesByPersonByHour_1-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18694,2344,'_wp_attached_file','2017/01/iPhoneSalesByHour_1.png'),
(18695,2344,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:197;s:6:\"height\";i:400;s:4:\"file\";s:31:\"2017/01/iPhoneSalesByHour_1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"iPhoneSalesByHour_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"iPhoneSalesByHour_1-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:31:\"iPhoneSalesByHour_1-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18696,2345,'_wp_attached_file','2017/01/iPhoneSalesByClub_1.png'),
(18697,2345,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:197;s:6:\"height\";i:400;s:4:\"file\";s:31:\"2017/01/iPhoneSalesByClub_1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"iPhoneSalesByClub_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"iPhoneSalesByClub_1-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:31:\"iPhoneSalesByClub_1-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18698,2346,'_wp_attached_file','2017/01/iPhoneSalesByPie_1.png'),
(18699,2346,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:197;s:6:\"height\";i:400;s:4:\"file\";s:30:\"2017/01/iPhoneSalesByPie_1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"iPhoneSalesByPie_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"iPhoneSalesByPie_1-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"iPhoneSalesByPie_1-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18700,2347,'_wp_attached_file','2017/01/iPhoneMembership_1.png'),
(18701,2347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:197;s:6:\"height\";i:400;s:4:\"file\";s:30:\"2017/01/iPhoneMembership_1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"iPhoneMembership_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"iPhoneMembership_1-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"iPhoneMembership_1-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18702,2348,'_wp_attached_file','2017/01/iPhoneConversionBarchart_1.png'),
(18703,2348,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:197;s:6:\"height\";i:400;s:4:\"file\";s:38:\"2017/01/iPhoneConversionBarchart_1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"iPhoneConversionBarchart_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"iPhoneConversionBarchart_1-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:38:\"iPhoneConversionBarchart_1-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18704,2349,'_wp_attached_file','2017/01/iPhoneConversionByPerson_1.png'),
(18705,2349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:197;s:6:\"height\";i:400;s:4:\"file\";s:38:\"2017/01/iPhoneConversionByPerson_1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"iPhoneConversionByPerson_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"iPhoneConversionByPerson_1-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:38:\"iPhoneConversionByPerson_1-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18709,2351,'_wp_attached_file','2017/01/iPhoneConversionBarchart.png'),
(18710,2351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:649;s:6:\"height\";i:1315;s:4:\"file\";s:36:\"2017/01/iPhoneConversionBarchart.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"iPhoneConversionBarchart-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"iPhoneConversionBarchart-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"iPhoneConversionBarchart-505x1024.png\";s:5:\"width\";i:505;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:36:\"iPhoneConversionBarchart-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:36:\"iPhoneConversionBarchart-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:36:\"iPhoneConversionBarchart-649x588.png\";s:5:\"width\";i:649;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:36:\"iPhoneConversionBarchart-649x588.png\";s:5:\"width\";i:649;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18736,2352,'_edit_lock','1541044793:2'),
(18737,2352,'_edit_last','2'),
(18740,2352,'background_image','https://activeclubsolutions.net/wp-content/uploads/2017/01/QuickBooks_2.png'),
(18741,2352,'background_color',''),
(18742,2352,'background_video_mp4',''),
(18743,2352,'background_video_ogv',''),
(18744,2352,'background_video_webm',''),
(18745,2352,'background_image_parallax','no'),
(18746,2352,'layer_1','<div style=\"margin: auto; padding: 45px 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 55px; font-weight: 600; line-height: 65px;\">Intuit QuickBooks Accounting Interface</span></div>\r\n\r\n'),
(18747,2352,'layer_index_1','active'),
(18748,2352,'layer_delay_1','300'),
(18749,2352,'layer_duration_1','600'),
(18750,2352,'layer_opacity_1','1'),
(18751,2352,'layer_zindex_1','1'),
(18752,2352,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18753,2352,'layer_direction_1','top'),
(18754,2352,'layer_posx_1','100'),
(18755,2352,'layer_posy_1','0'),
(18756,2352,'layer_2','<div style=\"margin: auto; padding: 0 0 0 0; width: 670px; float: right;\">\r\n<span style=\"color: #fff; font-size: 26px; line-height: 30px; font-style: none;\">\r\n<ul>\r\n<li>Customer</li>\r\n<li>Customer Grouping</li>\r\n<li>Vendor</li>\r\n</ul>\r\n</span>\r\n</div>'),
(18757,2352,'layer_index_2','active'),
(18758,2352,'layer_delay_2','3000'),
(18759,2352,'layer_duration_2','400'),
(18760,2352,'layer_opacity_2','1'),
(18761,2352,'layer_zindex_2','1'),
(18762,2352,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18763,2352,'layer_direction_2','bottom'),
(18764,2352,'layer_posx_2','300'),
(18765,2352,'layer_posy_2','170'),
(18766,2352,'layer_3','<div style=\"margin: auto; padding: 0 0 0 0; width: 670px; float: right;\">\r\n<span style=\"color: #fff; font-size: 26px; line-height: 30px; font-style: none;\">\r\n<ul>\r\n<li>Item Inventory</li>\r\n<li>Item Inventory Grouping</li>\r\n<li>Item Non-Inventory</li>\r\n<li>Item Assembly</li>\r\n<li>Item Other Charges</li>\r\n<li>Item Sales Tax</li>\r\n</ul>\r\n</span>\r\n</div>'),
(18767,2352,'layer_index_3','active'),
(18768,2352,'layer_delay_3','4000'),
(18769,2352,'layer_duration_3','400'),
(18770,2352,'layer_opacity_3','1'),
(18771,2352,'layer_zindex_3','1'),
(18772,2352,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18773,2352,'layer_direction_3','bottom'),
(18774,2352,'layer_posx_3','300'),
(18775,2352,'layer_posy_3','270'),
(18776,2352,'layer_4','<div style=\"margin: auto; padding: 0 0 0 0; width: 670px; float: right;\">\r\n<span style=\"color: #fff; font-size: 26px; line-height: 30px; font-style: none;\">\r\n<ul>\r\n<li>Accounts Receivable</li>\r\n<li>Payments</li>\r\n<li>Sales Orders</li>\r\n<li>COGS</li>\r\n<li>Unearned Revenue</li>\r\n</ul>\r\n</span>\r\n</div>'),
(18777,2352,'layer_index_4','active'),
(18778,2352,'layer_delay_4','5000'),
(18779,2352,'layer_duration_4','500'),
(18780,2352,'layer_opacity_4','1'),
(18781,2352,'layer_zindex_4','1'),
(18782,2352,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18783,2352,'layer_direction_4','right'),
(18784,2352,'layer_posx_4','670'),
(18785,2352,'layer_posy_4','170'),
(18786,2352,'layer_5','<div style=\"margin: auto; padding: 0px 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 30px; line-height: 35px;\">Interoperation with:</span>\r\n</div>'),
(18787,2352,'layer_index_5','active'),
(18788,2352,'layer_delay_5','1000'),
(18789,2352,'layer_duration_5','500'),
(18790,2352,'layer_opacity_5','1'),
(18791,2352,'layer_zindex_5','1'),
(18792,2352,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18793,2352,'layer_direction_5','left'),
(18794,2352,'layer_posx_5','100'),
(18795,2352,'layer_posy_5','110'),
(18796,2352,'layer_6','<img src=\"/wp-content/uploads/2017/01/QuickBooksBlackLogo.png\" alt=\"QuickBooks Interface\" width=\"500\" height=\"136\" class=\"aligncenter size-full\" />'),
(18797,2352,'layer_index_6','active'),
(18798,2352,'layer_delay_6','1000'),
(18799,2352,'layer_duration_6','500'),
(18800,2352,'layer_opacity_6','1'),
(18801,2352,'layer_zindex_6','1'),
(18802,2352,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18803,2352,'layer_direction_6','right_bottom'),
(18804,2352,'layer_posx_6','640'),
(18805,2352,'layer_posy_6','400'),
(18806,2352,'layer_7','<div style=\"margin: auto; padding: 0 0 0 0; float: left; width: 1200px;\">\r\n<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<a class=\"button large button-icon\" style=\"border: none;\" href=\"/winery-pos-features/accounting/\" target=\"_self\">Learn More</a>\r\n</div></div>'),
(18807,2352,'layer_index_7','active'),
(18808,2352,'layer_delay_7','6000'),
(18809,2352,'layer_duration_7','600'),
(18810,2352,'layer_opacity_7','1'),
(18811,2352,'layer_zindex_7','1'),
(18812,2352,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18813,2352,'layer_direction_7','bottom'),
(18814,2352,'layer_posx_7','700'),
(18815,2352,'layer_posy_7','510'),
(18816,2352,'_yoast_wpseo_content_score','30'),
(18830,2352,'_wpas_done_all','1'),
(18831,2352,'_jetpack_dont_email_post_to_subs','1'),
(18838,2358,'_wp_attached_file','2017/01/QuickBooksBlackLogo.png'),
(18839,2358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:342;s:6:\"height\";i:66;s:4:\"file\";s:31:\"2017/01/QuickBooksBlackLogo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"QuickBooksBlackLogo-150x66.png\";s:5:\"width\";i:150;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"QuickBooksBlackLogo-300x58.png\";s:5:\"width\";i:300;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18843,2296,'_jetpack_dont_email_post_to_subs','1'),
(18847,1438,'_jetpack_dont_email_post_to_subs','1'),
(18848,1438,'_yoast_wpseo_content_score','90'),
(18852,2361,'_edit_lock','1541044872:2'),
(18853,2361,'_edit_last','2'),
(18854,2362,'_wp_attached_file','2017/01/lotsofgears.png'),
(18855,2362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2017/01/lotsofgears.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"lotsofgears-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"lotsofgears-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"lotsofgears-768x200.png\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"lotsofgears-1024x267.png\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"lotsofgears-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"lotsofgears-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"lotsofgears-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"lotsofgears-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18856,2361,'background_image','https://activeclubsolutions.net/wp-content/uploads/2017/01/lotsofgears_1.png'),
(18857,2361,'background_color',''),
(18858,2361,'background_video_mp4',''),
(18859,2361,'background_video_ogv',''),
(18860,2361,'background_video_webm',''),
(18861,2361,'background_image_parallax','no'),
(18862,2361,'layer_1','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 55px; font-weight: 600; line-height: 57px;\">Automated E-mail Reports</span>\r\n</div>\r\n\r\n'),
(18863,2361,'layer_index_1','active'),
(18864,2361,'layer_delay_1','200'),
(18865,2361,'layer_duration_1','500'),
(18866,2361,'layer_opacity_1','1'),
(18867,2361,'layer_zindex_1','1'),
(18868,2361,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18869,2361,'layer_direction_1','left'),
(18870,2361,'layer_posx_1','0'),
(18871,2361,'layer_posy_1','40'),
(18872,2361,'layer_2','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px; float: right;\">\r\n<span style=\"color: #fff; font-size: 22px; line-height: 25px; font-style: none;\">\r\n<ul>\r\n<li>daily All Sales financials</li>\r\n<li>daily Cart financials</li>\r\n<li>daily POS financials by location</li>\r\n<li>daily Shipping Exception report</li>\r\n</ul>\r\n</span>\r\n</div>'),
(18873,2361,'layer_index_2','active'),
(18874,2361,'layer_delay_2','1000'),
(18875,2361,'layer_duration_2','500'),
(18876,2361,'layer_opacity_2','1'),
(18877,2361,'layer_zindex_2','1'),
(18878,2361,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18879,2361,'layer_direction_2','left'),
(18880,2361,'layer_posx_2','0'),
(18881,2361,'layer_posy_2','100'),
(18882,2361,'layer_3','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px; float: right;\">\r\n<span style=\"color: #fff; font-size: 22px; line-height: 25px; font-style: none;\">\r\n<ul>\r\n<li>monthly Accountant\'s Report</li>\r\n<li>monthly All Sales financials</li>\r\n<li>monthly Credit Card Recovery report</li>\r\n<li>monthly Club financials</li>\r\n<li>monthly Cart financials</li>\r\n<li>monthly Employee Incentive report</li>\r\n<li>monthly Financial Dashboard report</li>\r\n<li>monthly Order Summary by tax region</li>\r\n<li>monthly POS financials</li>\r\n</ul>\r\n</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px; float: right;\">\r\n<span style=\"color: #fff; font-size: 22px; line-height: 25px; font-style: none;\">\r\n<ul>\r\n<li>quarterly Accountant\'s Report</li>\r\n<li>yearly Accountant\'s Report</li>\r\n</ul>\r\n</span>\r\n</div>'),
(18883,2361,'layer_index_3','active'),
(18884,2361,'layer_delay_3','3000'),
(18885,2361,'layer_duration_3','500'),
(18886,2361,'layer_opacity_3','1'),
(18887,2361,'layer_zindex_3','1'),
(18888,2361,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18889,2361,'layer_direction_3','left'),
(18890,2361,'layer_posx_3','0'),
(18891,2361,'layer_posy_3','215'),
(18892,2361,'layer_4','<div style=\"margin: auto; padding: 0 0 0 0; width: 1720px;\">\r\n<img src=\"/wp-content/uploads/2017/01/FinanceRptPage4_2.png\" alt=\"FinanceRptPage1_1\" width=\"500\" height=\"401\" class=\"aligncenter size-full wp-image-2368\" />\r\n</div>'),
(18893,2361,'layer_index_4','active'),
(18894,2361,'layer_delay_4','4000'),
(18895,2361,'layer_duration_4','1000'),
(18896,2361,'layer_opacity_4','1'),
(18897,2361,'layer_zindex_4','1'),
(18898,2361,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18899,2361,'layer_direction_4','right'),
(18900,2361,'layer_posx_4','0'),
(18901,2361,'layer_posy_4','100'),
(18902,2361,'layer_5','<div style=\"margin: auto; padding: 0 0 0 0; width: 1720px;\">\r\n<img src=\"/wp-content/uploads/2017/01/FinanceRptPage3_2.png\" alt=\"FinanceRptPage2_1\" width=\"500\" height=\"403\" class=\"aligncenter size-full wp-image-2367\" />\r\n</div>'),
(18903,2361,'layer_index_5','active'),
(18904,2361,'layer_delay_5','6000'),
(18905,2361,'layer_duration_5','1000'),
(18906,2361,'layer_opacity_5','1'),
(18907,2361,'layer_zindex_5','1'),
(18908,2361,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18909,2361,'layer_direction_5','right'),
(18910,2361,'layer_posx_5','0'),
(18911,2361,'layer_posy_5','100'),
(18912,2361,'layer_6','<div style=\"margin: auto; padding: 0 0 0 0; width: 1720px;\">\r\n<img src=\"/wp-content/uploads/2017/01/FinanceRptPage2_2.png\" alt=\"FinanceRptPage3_1\" width=\"500\" height=\"400\" class=\"aligncenter size-full wp-image-2366\" />\r\n</div>'),
(18913,2361,'layer_index_6','active'),
(18914,2361,'layer_delay_6','8000'),
(18915,2361,'layer_duration_6','1000'),
(18916,2361,'layer_opacity_6','1'),
(18917,2361,'layer_zindex_6','1'),
(18918,2361,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18919,2361,'layer_direction_6','right'),
(18920,2361,'layer_posx_6','0'),
(18921,2361,'layer_posy_6','100'),
(18922,2361,'layer_7','<div style=\"margin: auto; padding: 0 0 0 0; width: 1720px;\">\r\n<img src=\"/wp-content/uploads/2017/01/FinanceRptPage1_2.png\" alt=\"FinanceRptPage4_1\" width=\"500\" height=\"399\" class=\"aligncenter size-full wp-image-2365\" />\r\n</div>'),
(18923,2361,'layer_index_7','active'),
(18924,2361,'layer_delay_7','10000'),
(18925,2361,'layer_duration_7','1000'),
(18926,2361,'layer_opacity_7','1'),
(18927,2361,'layer_zindex_7','1'),
(18928,2361,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(18929,2361,'layer_direction_7','right'),
(18930,2361,'layer_posx_7','0'),
(18931,2361,'layer_posy_7','100'),
(18932,2361,'_yoast_wpseo_content_score','30'),
(18934,2361,'_wpas_done_all','1'),
(18935,2361,'_jetpack_dont_email_post_to_subs','1'),
(18936,2363,'_wp_attached_file','2017/01/lotsofgears_1.png'),
(18937,2363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:182;s:4:\"file\";s:25:\"2017/01/lotsofgears_1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"lotsofgears_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"lotsofgears_1-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"lotsofgears_1-600x182.png\";s:5:\"width\";i:600;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"lotsofgears_1-384x182.png\";s:5:\"width\";i:384;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18950,2369,'_wp_attached_file','2017/01/FinanceRptPage1_2.png'),
(18951,2369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:401;s:4:\"file\";s:29:\"2017/01/FinanceRptPage1_2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage1_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage1_2-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage1_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18952,2370,'_wp_attached_file','2017/01/FinanceRptPage5_2.png'),
(18953,2370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:405;s:4:\"file\";s:29:\"2017/01/FinanceRptPage5_2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage5_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage5_2-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage5_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18954,2371,'_wp_attached_file','2017/01/FinanceRptPage4_2.png'),
(18955,2371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:399;s:4:\"file\";s:29:\"2017/01/FinanceRptPage4_2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage4_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage4_2-300x239.png\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage4_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18956,2372,'_wp_attached_file','2017/01/FinanceRptPage3_2.png'),
(18957,2372,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:400;s:4:\"file\";s:29:\"2017/01/FinanceRptPage3_2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage3_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage3_2-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage3_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18958,2373,'_wp_attached_file','2017/01/FinanceRptPage2_2.png'),
(18959,2373,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:403;s:4:\"file\";s:29:\"2017/01/FinanceRptPage2_2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage2_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage2_2-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"FinanceRptPage2_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18960,2374,'_wp_attached_file','2017/01/lotsofgears_2.png'),
(18961,2374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:182;s:4:\"file\";s:25:\"2017/01/lotsofgears_2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"lotsofgears_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"lotsofgears_2-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"lotsofgears_2-600x182.png\";s:5:\"width\";i:600;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"lotsofgears_2-384x182.png\";s:5:\"width\";i:384;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18970,2378,'_wp_attached_file','2017/01/tastingroom_2.png'),
(18971,2378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:367;s:4:\"file\";s:25:\"2017/01/tastingroom_2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"tastingroom_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"tastingroom_2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"tastingroom_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18974,2380,'_wp_attached_file','2017/01/lotsofgears_5.png'),
(18975,2380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:182;s:4:\"file\";s:25:\"2017/01/lotsofgears_5.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"lotsofgears_5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"lotsofgears_5-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"lotsofgears_5-600x182.png\";s:5:\"width\";i:600;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"lotsofgears_5-384x182.png\";s:5:\"width\";i:384;s:6:\"height\";i:182;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18992,2381,'_wp_attached_file','2017/01/JobQueueBackground.png'),
(18993,2381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:307;s:4:\"file\";s:30:\"2017/01/JobQueueBackground.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"JobQueueBackground-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"JobQueueBackground-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"JobQueueBackground-768x298.png\";s:5:\"width\";i:768;s:6:\"height\";i:298;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"JobQueueBackground-600x307.png\";s:5:\"width\";i:600;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"JobQueueBackground-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(18994,2382,'_edit_lock','1541283611:2'),
(18995,2382,'_edit_last','2'),
(18996,2382,'background_image','https://activeclubsolutions.net/wp-content/uploads/2017/01/JobQueueBackground.png'),
(18997,2382,'background_color',''),
(18998,2382,'background_video_mp4',''),
(18999,2382,'background_video_ogv',''),
(19000,2382,'background_video_webm',''),
(19001,2382,'background_image_parallax','no'),
(19002,2382,'layer_1','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 55px; font-weight: 600; line-height: 57px;\">Automated Processing</span>\r\n</div>'),
(19003,2382,'layer_index_1','active'),
(19004,2382,'layer_delay_1','400'),
(19005,2382,'layer_duration_1','600'),
(19006,2382,'layer_opacity_1','1'),
(19007,2382,'layer_zindex_1','1'),
(19008,2382,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19009,2382,'layer_direction_1','top'),
(19010,2382,'layer_posx_1','0'),
(19011,2382,'layer_posy_1','67'),
(19012,2382,'layer_2','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px; float: right;\">\r\n<span style=\"color: #fff; font-size: 22px; line-height: 25px; font-style: none;\">\r\n<ul>\r\n<li>analyse delivered packages</li>\r\n<li>automatic e-mail reminders</li>\r\n<li>club statistics snapshots</li>\r\n<li>club financial snapshots</li>\r\n</ul>\r\n</span>\r\n</div>'),
(19013,2382,'layer_index_2','active'),
(19014,2382,'layer_delay_2','1000'),
(19015,2382,'layer_duration_2','500'),
(19016,2382,'layer_opacity_2','1'),
(19017,2382,'layer_zindex_2','1'),
(19018,2382,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19019,2382,'layer_direction_2','left'),
(19020,2382,'layer_posx_2','0'),
(19021,2382,'layer_posy_2','150'),
(19022,2382,'layer_3','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px; float: right;\">\r\n<span style=\"color: #fff; font-size: 22px; line-height: 25px; font-style: none;\">\r\n<ul>\r\n<li>compliance data transfer</li>\r\n<li>credit card token account updater</li>\r\n<li>database backup</li>\r\n<li>employee incentives</li>\r\n</ul>\r\n</span>\r\n</div>'),
(19023,2382,'layer_index_3','active'),
(19024,2382,'layer_delay_3','2500'),
(19025,2382,'layer_duration_3','500'),
(19026,2382,'layer_opacity_3','1'),
(19027,2382,'layer_zindex_3','1'),
(19028,2382,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19029,2382,'layer_direction_3','left'),
(19030,2382,'layer_posx_3','0'),
(19031,2382,'layer_posy_3','250'),
(19032,2382,'layer_4','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px; float: right;\">\r\n<span style=\"color: #fff; font-size: 22px; line-height: 25px; font-style: none;\">\r\n<ul>\r\n<li>membership expirations</li>\r\n<li>membership restarts</li>\r\n<li>membership suspensions</li>\r\n<li>nightly tracking data collection from FedEx, GSO and UPS</li>\r\n<li>scheduled collection of tracking numbers from ShipCompliant</li>\r\n<li>weather collection and update of sales <i>Not Shipped</i></li>\r\n</ul>\r\n</span>\r\n</div>'),
(19033,2382,'layer_index_4','active'),
(19034,2382,'layer_delay_4','5000'),
(19035,2382,'layer_duration_4','500'),
(19036,2382,'layer_opacity_4','1'),
(19037,2382,'layer_zindex_4','1'),
(19038,2382,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19039,2382,'layer_direction_4','left'),
(19040,2382,'layer_posx_4','0'),
(19041,2382,'layer_posy_4','350'),
(19042,2382,'layer_5','<div style=\"margin: auto; padding: 0 0 0 0; width: 1720px;\">\r\n<img src=\"/wp-content/uploads/2017/01/shipalertemail_2.png\" alt=\"Shipping Alert\" width=\"500\" height=\"401\" class=\"aligncenter size-full wp-image-2368\" />\r\n</div>'),
(19043,2382,'layer_index_5','active'),
(19044,2382,'layer_delay_5','6000'),
(19045,2382,'layer_duration_5','500'),
(19046,2382,'layer_opacity_5','1'),
(19047,2382,'layer_zindex_5','1'),
(19048,2382,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19049,2382,'layer_direction_5','right'),
(19050,2382,'layer_posx_5','100'),
(19051,2382,'layer_posy_5','100'),
(19052,2382,'layer_6',''),
(19053,2382,'layer_index_6','active'),
(19054,2382,'layer_delay_6','0'),
(19055,2382,'layer_duration_6','0'),
(19056,2382,'layer_opacity_6','1'),
(19057,2382,'layer_zindex_6','1'),
(19058,2382,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19059,2382,'layer_direction_6','none'),
(19060,2382,'layer_posx_6','0'),
(19061,2382,'layer_posy_6','0'),
(19062,2382,'layer_7',''),
(19063,2382,'layer_index_7','active'),
(19064,2382,'layer_delay_7','0'),
(19065,2382,'layer_duration_7','0'),
(19066,2382,'layer_opacity_7','1'),
(19067,2382,'layer_zindex_7','1'),
(19068,2382,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19069,2382,'layer_direction_7','none'),
(19070,2382,'layer_posx_7','0'),
(19071,2382,'layer_posy_7','0'),
(19072,2382,'_yoast_wpseo_content_score','30'),
(19074,2382,'_wpas_done_all','1'),
(19075,2382,'_jetpack_dont_email_post_to_subs','1'),
(19084,2385,'_wp_attached_file','2017/01/shipalertemail_2.png'),
(19085,2385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:883;s:6:\"height\";i:672;s:4:\"file\";s:28:\"2017/01/shipalertemail_2.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"shipalertemail_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"shipalertemail_2-300x228.png\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"shipalertemail_2-768x584.png\";s:5:\"width\";i:768;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"shipalertemail_2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"shipalertemail_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"shipalertemail_2-883x588.png\";s:5:\"width\";i:883;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"shipalertemail_2-883x588.png\";s:5:\"width\";i:883;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19087,2386,'_wp_attached_file','2017/01/ChangeLogBackground_3.png'),
(19088,2386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:807;s:6:\"height\";i:245;s:4:\"file\";s:33:\"2017/01/ChangeLogBackground_3.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"ChangeLogBackground_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"ChangeLogBackground_3-300x91.png\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"ChangeLogBackground_3-768x233.png\";s:5:\"width\";i:768;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:33:\"ChangeLogBackground_3-600x245.png\";s:5:\"width\";i:600;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"ChangeLogBackground_3-384x245.png\";s:5:\"width\";i:384;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19089,2387,'_edit_lock','1541044977:2'),
(19090,2387,'_edit_last','2'),
(19092,2387,'background_image','https://activeclubsolutions.net/wp-content/uploads/2017/01/ChangeLogBackground_3.png'),
(19093,2387,'background_color',''),
(19094,2387,'background_video_mp4',''),
(19095,2387,'background_video_ogv',''),
(19096,2387,'background_video_webm',''),
(19097,2387,'background_image_parallax','no'),
(19098,2387,'layer_1','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 30px; font-style: italic; line-height: 38px;\">Easy to use, automatic, and integral convenience</span>\r\n</div>\r\n\r\n'),
(19099,2387,'layer_index_1','active'),
(19100,2387,'layer_delay_1','600'),
(19101,2387,'layer_duration_1','600'),
(19102,2387,'layer_opacity_1','1'),
(19103,2387,'layer_zindex_1','1'),
(19104,2387,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19105,2387,'layer_direction_1','none'),
(19106,2387,'layer_posx_1','0'),
(19107,2387,'layer_posy_1','50'),
(19108,2387,'layer_2','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 55px; font-weight: 600; line-height: 57px;\">Tracking Database Changes</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 25px 0 0 0; width: 1200px;\">\r\n<span style=\"color: #ccc; font-size: 25px; line-height: 30px;\">Tracking database changes can be a lifesaver</span>\r\n</div>\r\n\r\n'),
(19109,2387,'layer_index_2','active'),
(19110,2387,'layer_delay_2','0'),
(19111,2387,'layer_duration_2','600'),
(19112,2387,'layer_opacity_2','1'),
(19113,2387,'layer_zindex_2','1'),
(19114,2387,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19115,2387,'layer_direction_2','left'),
(19116,2387,'layer_posx_2','0'),
(19117,2387,'layer_posy_2','100'),
(19118,2387,'layer_3','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 25px; line-height: 30px;\">Our software tracks all changes to data</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px; float: right;\">\r\n<span style=\"color: #fff; font-size: 22px; line-height: 25px; font-style: none;\">\r\n<ul>\r\n<li>insert</li>\r\n<li>update</li>\r\n<li>delete</li>\r\n</ul>\r\n</span>\r\n</div>'),
(19119,2387,'layer_index_3','active'),
(19120,2387,'layer_delay_3','2000'),
(19121,2387,'layer_duration_3','500'),
(19122,2387,'layer_opacity_3','1'),
(19123,2387,'layer_zindex_3','1'),
(19124,2387,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19125,2387,'layer_direction_3','left'),
(19126,2387,'layer_posx_3','0'),
(19127,2387,'layer_posy_3','230'),
(19128,2387,'layer_4','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 25px; line-height: 30px;\">Detail is at the field level</span>\r\n</div>\r\n'),
(19129,2387,'layer_index_4','active'),
(19130,2387,'layer_delay_4','3000'),
(19131,2387,'layer_duration_4','500'),
(19132,2387,'layer_opacity_4','1'),
(19133,2387,'layer_zindex_4','1'),
(19134,2387,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19135,2387,'layer_direction_4','left_bottom'),
(19136,2387,'layer_posx_4','0'),
(19137,2387,'layer_posy_4','360'),
(19138,2387,'layer_5','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px; float: right;\">\r\n<span style=\"color: #fff; font-size: 22px; line-height: 25px; font-style: none;\">\r\n<ul>\r\n<li>action</li>\r\n<li>person</li>\r\n<li>date and time</li>\r\n<li>product version</li>\r\n</ul>\r\n</span>\r\n</div>'),
(19139,2387,'layer_index_5','active'),
(19140,2387,'layer_delay_5','4000'),
(19141,2387,'layer_duration_5','500'),
(19142,2387,'layer_opacity_5','500'),
(19143,2387,'layer_zindex_5','1'),
(19144,2387,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19145,2387,'layer_direction_5','left_bottom'),
(19146,2387,'layer_posx_5','0'),
(19147,2387,'layer_posy_5','392'),
(19148,2387,'layer_6','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 25px; font-weight: bold; line-height: 26px;\">Make sure your next software solution includes this feature</span>\r\n</div>'),
(19149,2387,'layer_index_6','active'),
(19150,2387,'layer_delay_6','8000'),
(19151,2387,'layer_duration_6','600'),
(19152,2387,'layer_opacity_6','1'),
(19153,2387,'layer_zindex_6','1'),
(19154,2387,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19155,2387,'layer_direction_6','right'),
(19156,2387,'layer_posx_6','600'),
(19157,2387,'layer_posy_6','520'),
(19158,2387,'layer_7','<div style=\"margin: auto; padding: 0 0 0 0; width: 1250px;\">\r\n<img src=\"/wp-content/uploads/2017/01/ChangeLogDlg.png\" alt=\"Shipping Alert\" width=\"524\" height=\"401\" class=\"alignright size-full\" />\r\n</div>\r\n\r\n'),
(19159,2387,'layer_index_7',''),
(19160,2387,'layer_delay_7','6000'),
(19161,2387,'layer_duration_7','500'),
(19162,2387,'layer_opacity_7','1'),
(19163,2387,'layer_zindex_7','1'),
(19164,2387,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(19165,2387,'layer_direction_7','right'),
(19166,2387,'layer_posx_7','0'),
(19167,2387,'layer_posy_7','100'),
(19168,2387,'_yoast_wpseo_content_score','30'),
(19169,2387,'_wpas_done_all','1'),
(19170,2387,'_jetpack_dont_email_post_to_subs','1'),
(19186,2388,'_wp_attached_file','2017/01/ChangeLogDlg.png'),
(19187,2388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:606;s:6:\"height\";i:464;s:4:\"file\";s:24:\"2017/01/ChangeLogDlg.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"ChangeLogDlg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ChangeLogDlg-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"ChangeLogDlg-600x464.png\";s:5:\"width\";i:600;s:6:\"height\";i:464;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"ChangeLogDlg-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19291,508,'_wpas_done_all','1'),
(19301,1435,'_yoast_wpseo_focuskw_text_input','All in One DTC Winery Software'),
(19302,1435,'_yoast_wpseo_focuskw','All in One DTC Winery Software'),
(19303,1435,'_yoast_wpseo_linkdex','42'),
(19317,1868,'_yoast_wpseo_focuskw_text_input','All-In-One Tasting Room Solution'),
(19318,1868,'_yoast_wpseo_focuskw','All-In-One Tasting Room Solution'),
(19319,1868,'_yoast_wpseo_metadesc','All-In-One Tasting Room Solution Pricing - includes Tasting Room POS, Wine Club Software and eCommerce and integration with other software like FedEx, UPS'),
(19320,1868,'_yoast_wpseo_linkdex','67'),
(19321,1434,'_jetpack_dont_email_post_to_subs','1'),
(19322,1434,'_yoast_wpseo_focuskw_text_input','wine club software news'),
(19323,1434,'_yoast_wpseo_content_score','30'),
(19325,1590,'_yoast_wpseo_focuskw_text_input','Active Club Solutions\' DTC Winery Software integration with quickbooks accounting'),
(19326,1590,'_yoast_wpseo_focuskw','Active Club Solutions\' DTC Winery Software integration with quickbooks accounting'),
(19327,1590,'_yoast_wpseo_metadesc','Active Club Solutions\' DTC Winery Software integration with quickbooks accounting. DTC Software includes Tasting Room POS, Wine Club Software and eCommerce'),
(19328,1590,'_yoast_wpseo_linkdex','67'),
(19336,2393,'_wp_attached_file','2017/01/QuickBooks_2.png'),
(19337,2393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2017/01/QuickBooks_2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"QuickBooks_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"QuickBooks_2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"QuickBooks_2-600x300.png\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"QuickBooks_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19342,2157,'_yoast_wpseo_focuskw_text_input','Mobile Dashboards'),
(19343,2157,'_yoast_wpseo_focuskw','Mobile Dashboards'),
(19344,2157,'_yoast_wpseo_metadesc','Powerful Mobile Dashboards for All in One Winery DTC (Direct To Consumer) Software - Tasting Room POS, Wine Club Software and eCommerce'),
(19345,2157,'_yoast_wpseo_linkdex','72'),
(19529,2395,'_wp_attached_file','2017/02/Beachwithwine.png'),
(19530,2395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2017/02/Beachwithwine.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Beachwithwine-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Beachwithwine-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Beachwithwine-768x256.png\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Beachwithwine-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"Beachwithwine-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"Beachwithwine-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:25:\"Beachwithwine-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:26:\"Beachwithwine-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19613,2397,'_wp_attached_file','2017/02/Signupinwinery.png'),
(19614,2397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:433;s:4:\"file\";s:26:\"2017/02/Signupinwinery.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Signupinwinery-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Signupinwinery-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"Signupinwinery-600x433.png\";s:5:\"width\";i:600;s:6:\"height\";i:433;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"Signupinwinery-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19620,2398,'_wp_attached_file','2017/02/Signupinwinery_1.png'),
(19621,2398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:433;s:4:\"file\";s:28:\"2017/02/Signupinwinery_1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Signupinwinery_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Signupinwinery_1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"Signupinwinery_1-600x433.png\";s:5:\"width\";i:600;s:6:\"height\";i:433;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"Signupinwinery_1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19624,2399,'_wp_attached_file','2017/02/iPadWhiteSkewedPOS.png'),
(19625,2399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:914;s:6:\"height\";i:722;s:4:\"file\";s:30:\"2017/02/iPadWhiteSkewedPOS.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"iPadWhiteSkewedPOS-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"iPadWhiteSkewedPOS-300x237.png\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"iPadWhiteSkewedPOS-768x607.png\";s:5:\"width\";i:768;s:6:\"height\";i:607;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"iPadWhiteSkewedPOS-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"iPadWhiteSkewedPOS-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"iPadWhiteSkewedPOS-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"iPadWhiteSkewedPOS-914x588.png\";s:5:\"width\";i:914;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19628,2401,'_wp_attached_file','2017/02/ACMDashboardSkewed_1.png'),
(19629,2401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:663;s:6:\"height\";i:459;s:4:\"file\";s:32:\"2017/02/ACMDashboardSkewed_1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"ACMDashboardSkewed_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"ACMDashboardSkewed_1-300x208.png\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:32:\"ACMDashboardSkewed_1-600x459.png\";s:5:\"width\";i:600;s:6:\"height\";i:459;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:32:\"ACMDashboardSkewed_1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19649,2402,'_wp_attached_file','2017/02/Signupinwinery_2.png'),
(19650,2402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:433;s:4:\"file\";s:28:\"2017/02/Signupinwinery_2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Signupinwinery_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Signupinwinery_2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"Signupinwinery_2-600x433.png\";s:5:\"width\";i:600;s:6:\"height\";i:433;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"Signupinwinery_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(19729,2405,'_edit_last','2'),
(19730,2405,'_yoast_wpseo_primary_category',''),
(19731,2405,'ninzio_post_audio_mp3',''),
(19732,2405,'ninzio_post_audio_ogg',''),
(19733,2405,'ninzio_post_audio_embed',''),
(19734,2405,'ninzio_post_video_mp4',''),
(19735,2405,'ninzio_post_video_ogv',''),
(19736,2405,'ninzio_post_video_webm',''),
(19737,2405,'ninzio_post_video_embed',''),
(19738,2405,'ninzio_post_video_poster',''),
(19739,2405,'ninzio_post_link_url',''),
(19740,2405,'ninzio_post_image_url',''),
(19741,2405,'ninzio_post_image_description',''),
(19742,2405,'ninzio_post_status_author',''),
(19743,2405,'ninzio_post_quote_author',''),
(19744,2405,'ninzio_post_featured_media','yes'),
(19745,2405,'_yoast_wpseo_content_score','30'),
(19746,2405,'_edit_lock','1488167497:2'),
(19749,2405,'_yoast_wpseo_focuskw_text_input','winery pos'),
(19750,2405,'_yoast_wpseo_focuskw','winery pos'),
(19751,2405,'_yoast_wpseo_linkdex','15'),
(19752,2405,'_wpas_done_all','1'),
(19857,2407,'_edit_last','2'),
(19858,2407,'_wp_page_template','default'),
(19859,2407,'ninzio_page_subtitle',''),
(19860,2407,'ninzio_page_sidebar','none'),
(19861,2407,'ninzio_page_title_background_color',''),
(19862,2407,'ninzio_page_title_background_color_opacity','1'),
(19863,2407,'ninzio_page_title_text_color','#ffffff'),
(19864,2407,'ninzio_page_subtitle_background_color',''),
(19865,2407,'ninzio_page_subtitle_background_color_opacity','1'),
(19866,2407,'ninzio_page_subtitle_text_color','#444444'),
(19867,2407,'ninzio_page_title_section_background_color','#f6f6f6'),
(19868,2407,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/02/wallofcorks_2.jpg'),
(19869,2407,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(19870,2407,'ninzio_page_title_section_background_image_position','center_center'),
(19871,2407,'ninzio_page_title_section_background_image_attachment','scroll'),
(19872,2407,'ninzio_page_title_section_background_image_size','auto'),
(19873,2407,'ninzio_one_page','no'),
(19874,2407,'ninzio_slider','no'),
(19875,2407,'ninzio_page_layout','yes'),
(19876,2407,'ninzio_page_twitter','no'),
(19877,2407,'ninzio_page_padding_top','yes'),
(19878,2407,'ninzio_rich_header','no'),
(19879,2407,'ninzio_page_title_section_background_image_parallax','no'),
(19880,2407,'_yoast_wpseo_content_score','30'),
(19881,2407,'_edit_lock','1651592280:2'),
(19882,2408,'_wp_attached_file','2017/02/wallofcorks.jpg'),
(19883,2408,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:564;s:6:\"height\";i:374;s:4:\"file\";s:23:\"2017/02/wallofcorks.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"wallofcorks-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"wallofcorks-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"wallofcorks-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(19884,2409,'_wp_attached_file','2017/02/wallofcorks_2.jpg'),
(19885,2409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1038;s:6:\"height\";i:576;s:4:\"file\";s:25:\"2017/02/wallofcorks_2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"wallofcorks_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"wallofcorks_2-300x166.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"wallofcorks_2-768x426.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"wallofcorks_2-1024x568.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"wallofcorks_2-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"wallofcorks_2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:25:\"wallofcorks_2-894x576.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(19887,2407,'_publicize_pending','1'),
(19888,2407,'_jetpack_dont_email_post_to_subs','1'),
(19978,2416,'_edit_last','2'),
(19979,2416,'_wp_page_template','default'),
(19980,2416,'ninzio_page_subtitle',''),
(19981,2416,'ninzio_page_sidebar','none'),
(19982,2416,'ninzio_page_title_background_color',''),
(19983,2416,'ninzio_page_title_background_color_opacity','1'),
(19984,2416,'ninzio_page_title_text_color','#ffffff'),
(19985,2416,'ninzio_page_subtitle_background_color',''),
(19986,2416,'ninzio_page_subtitle_background_color_opacity','1'),
(19987,2416,'ninzio_page_subtitle_text_color','#444444'),
(19988,2416,'ninzio_page_title_section_background_color','#f6f6f6'),
(19989,2416,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/05/header28.jpg'),
(19990,2416,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(19991,2416,'ninzio_page_title_section_background_image_position','center_center'),
(19992,2416,'ninzio_page_title_section_background_image_attachment','scroll'),
(19993,2416,'ninzio_page_title_section_background_image_size','auto'),
(19994,2416,'ninzio_one_page','no'),
(19995,2416,'ninzio_slider','no'),
(19996,2416,'ninzio_page_layout','yes'),
(19997,2416,'ninzio_page_twitter','no'),
(19998,2416,'ninzio_page_padding_top','yes'),
(19999,2416,'ninzio_rich_header','no'),
(20000,2416,'ninzio_page_title_section_background_image_parallax','no'),
(20001,2416,'_yoast_wpseo_content_score','30'),
(20002,2416,'_edit_lock','1651591926:2'),
(20003,2416,'_publicize_pending','1'),
(20004,2416,'_jetpack_dont_email_post_to_subs','1'),
(20029,1474,'_jetpack_dont_email_post_to_subs','1'),
(20037,5,'_jetpack_dont_email_post_to_subs','1'),
(20102,2421,'_wp_attached_file','2017/02/Chipper.jpg'),
(20103,2421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:452;s:4:\"file\";s:19:\"2017/02/Chipper.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Chipper-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Chipper-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"Chipper-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"Chipper-600x452.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"Chipper-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20104,2420,'_edit_last','2'),
(20105,2420,'_yoast_wpseo_primary_category',''),
(20106,2420,'ninzio_post_audio_mp3',''),
(20107,2420,'ninzio_post_audio_ogg',''),
(20108,2420,'ninzio_post_audio_embed',''),
(20109,2420,'ninzio_post_video_mp4',''),
(20110,2420,'ninzio_post_video_ogv',''),
(20111,2420,'ninzio_post_video_webm',''),
(20112,2420,'ninzio_post_video_embed',''),
(20113,2420,'ninzio_post_video_poster',''),
(20114,2420,'ninzio_post_link_url',''),
(20115,2420,'ninzio_post_image_url',''),
(20116,2420,'ninzio_post_image_description',''),
(20117,2420,'ninzio_post_status_author',''),
(20118,2420,'ninzio_post_quote_author',''),
(20119,2420,'ninzio_post_featured_media','yes'),
(20120,2420,'_yoast_wpseo_focuskw_text_input','Mobile POS EMV/Chip'),
(20121,2420,'_yoast_wpseo_focuskw','Mobile POS EMV/Chip'),
(20122,2420,'_yoast_wpseo_linkdex','40'),
(20123,2420,'_yoast_wpseo_content_score','30'),
(20124,2420,'_edit_lock','1488161878:2'),
(20127,2420,'_wpas_done_all','1'),
(20152,2422,'_wp_attached_file','2017/02/EMViPadCheckout-1.png'),
(20153,2422,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1883;s:6:\"height\";i:1090;s:4:\"file\";s:29:\"2017/02/EMViPadCheckout-1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"EMViPadCheckout-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"EMViPadCheckout-1-300x174.png\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"EMViPadCheckout-1-768x445.png\";s:5:\"width\";i:768;s:6:\"height\";i:445;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"EMViPadCheckout-1-1024x593.png\";s:5:\"width\";i:1024;s:6:\"height\";i:593;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"EMViPadCheckout-1-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"EMViPadCheckout-1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"EMViPadCheckout-1-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"EMViPadCheckout-1-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20154,2420,'_jetpack_dont_email_post_to_subs','1'),
(20156,2424,'_edit_last','2'),
(20157,2424,'_wp_page_template','default'),
(20158,2424,'_publicize_pending','1'),
(20159,2424,'ninzio_page_subtitle',''),
(20160,2424,'ninzio_page_sidebar','none'),
(20161,2424,'ninzio_page_title_background_color',''),
(20162,2424,'ninzio_page_title_background_color_opacity','1'),
(20163,2424,'ninzio_page_title_text_color','#444444'),
(20164,2424,'ninzio_page_subtitle_background_color',''),
(20165,2424,'ninzio_page_subtitle_background_color_opacity','1'),
(20166,2424,'ninzio_page_subtitle_text_color','#444444'),
(20167,2424,'ninzio_page_title_section_background_color','#f6f6f6'),
(20168,2424,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/02/Beachwithwine.png'),
(20169,2424,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(20170,2424,'ninzio_page_title_section_background_image_position','center_center'),
(20171,2424,'ninzio_page_title_section_background_image_attachment','scroll'),
(20172,2424,'ninzio_page_title_section_background_image_size','auto'),
(20173,2424,'ninzio_one_page','no'),
(20174,2424,'ninzio_slider','no'),
(20175,2424,'ninzio_page_layout','yes'),
(20176,2424,'ninzio_page_twitter','no'),
(20177,2424,'ninzio_page_padding_top','yes'),
(20178,2424,'ninzio_rich_header','no'),
(20179,2424,'ninzio_page_title_section_background_image_parallax','no'),
(20180,2424,'_yoast_wpseo_content_score','30'),
(20181,2424,'_edit_lock','1651755995:2'),
(20182,2424,'_jetpack_dont_email_post_to_subs','1'),
(20378,2450,'_edit_last','2'),
(20379,2450,'_wp_page_template','default'),
(20380,2450,'_publicize_pending','1'),
(20381,2450,'ninzio_page_subtitle',''),
(20382,2450,'ninzio_page_sidebar','none'),
(20383,2450,'ninzio_page_title_background_color',''),
(20384,2450,'ninzio_page_title_background_color_opacity','1'),
(20385,2450,'ninzio_page_title_text_color','#444444'),
(20386,2450,'ninzio_page_subtitle_background_color',''),
(20387,2450,'ninzio_page_subtitle_background_color_opacity','1'),
(20388,2450,'ninzio_page_subtitle_text_color','#444444'),
(20389,2450,'ninzio_page_title_section_background_color','#f6f6f6'),
(20390,2450,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/news3.jpg'),
(20391,2450,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(20392,2450,'ninzio_page_title_section_background_image_position','center_center'),
(20393,2450,'ninzio_page_title_section_background_image_attachment','scroll'),
(20394,2450,'ninzio_page_title_section_background_image_size','auto'),
(20395,2450,'ninzio_one_page','no'),
(20396,2450,'ninzio_slider','no'),
(20397,2450,'ninzio_page_layout','yes'),
(20398,2450,'ninzio_page_twitter','no'),
(20399,2450,'ninzio_page_padding_top','yes'),
(20400,2450,'ninzio_rich_header','no'),
(20401,2450,'ninzio_page_title_section_background_image_parallax','no'),
(20402,2450,'_yoast_wpseo_content_score','90'),
(20403,2450,'_edit_lock','1651592443:2'),
(20404,2450,'_jetpack_dont_email_post_to_subs','1'),
(20418,2454,'_edit_last','2'),
(20419,2454,'_wp_page_template','default'),
(20420,2454,'_publicize_pending','1'),
(20421,2454,'ninzio_page_subtitle',''),
(20422,2454,'ninzio_page_sidebar','none'),
(20423,2454,'ninzio_page_title_background_color',''),
(20424,2454,'ninzio_page_title_background_color_opacity','1'),
(20425,2454,'ninzio_page_title_text_color','#cccccc'),
(20426,2454,'ninzio_page_subtitle_background_color',''),
(20427,2454,'ninzio_page_subtitle_background_color_opacity','1'),
(20428,2454,'ninzio_page_subtitle_text_color','#444444'),
(20429,2454,'ninzio_page_title_section_background_color','#f6f6f6'),
(20430,2454,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/news8.jpg'),
(20431,2454,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(20432,2454,'ninzio_page_title_section_background_image_position','center_center'),
(20433,2454,'ninzio_page_title_section_background_image_attachment','scroll'),
(20434,2454,'ninzio_page_title_section_background_image_size','auto'),
(20435,2454,'ninzio_one_page','no'),
(20436,2454,'ninzio_slider','no'),
(20437,2454,'ninzio_page_layout','yes'),
(20438,2454,'ninzio_page_twitter','no'),
(20439,2454,'ninzio_page_padding_top','yes'),
(20440,2454,'ninzio_rich_header','no'),
(20441,2454,'ninzio_page_title_section_background_image_parallax','no'),
(20442,2454,'_yoast_wpseo_content_score','90'),
(20443,2454,'_edit_lock','1651592416:2'),
(20445,2454,'_jetpack_dont_email_post_to_subs','1'),
(20546,2463,'_wp_attached_file','2017/03/facebookbackground.png'),
(20547,2463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:855;s:6:\"height\";i:322;s:4:\"file\";s:30:\"2017/03/facebookbackground.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"facebookbackground-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"facebookbackground-300x113.png\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"facebookbackground-768x289.png\";s:5:\"width\";i:768;s:6:\"height\";i:289;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"facebookbackground-600x322.png\";s:5:\"width\";i:600;s:6:\"height\";i:322;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"facebookbackground-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20548,2462,'_edit_last','2'),
(20549,2462,'background_image','https://activeclubsolutions.net/wp-content/uploads/2017/03/facebookbackground.png'),
(20550,2462,'background_color',''),
(20551,2462,'background_video_mp4',''),
(20552,2462,'background_video_ogv',''),
(20553,2462,'background_video_webm',''),
(20554,2462,'background_image_parallax','no'),
(20555,2462,'layer_1','<div style=\"margin: auto; padding: 0; width: auto;\">\r\n<img src=\"/wp-content/uploads/2017/03/FacebookSignup.png\" alt=\"Club Facebook Signup\" width=\"375\" height=\"500\" class=\"alignleft\" />\r\n</div>'),
(20556,2462,'layer_index_1','active'),
(20557,2462,'layer_delay_1','1500'),
(20558,2462,'layer_duration_1','500'),
(20559,2462,'layer_opacity_1','1'),
(20560,2462,'layer_zindex_1','1'),
(20561,2462,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(20562,2462,'layer_direction_1','left'),
(20563,2462,'layer_posx_1','50'),
(20564,2462,'layer_posy_1','50'),
(20565,2462,'layer_2','<div style=\"margin: auto; padding: 100px 0 0 700px; width: auto;\">\r\n<span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 45px; font-weight: 600;\">Tools for Facebook</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 20px 0 0 700px; width: auto;\">\r\n<span style=\"color: #fff; font-size: 36px; font-style: italic;\">Provide your customers with:</span>\r\n</div>\r\n<div style=\"margin: auto; padding: 20px 0 0 700px; width: auto;\">\r\n<span style=\"color: #fff; font-size: 30px; font-style: none;\">&#10003; club signup</span>\r\n</div>\r\n<div style=\"margin: auto; padding: 20px 0 0 700px; width: auto;\">\r\n<span style=\"color: #fff; font-size: 30px; font-style: none;\">&#10003; login</span>\r\n</div>\r\n<div style=\"margin: auto; padding: 20px 0 0 700px; width: auto;\">\r\n<span style=\"color: #fff; font-size: 30px; font-style: none;\">&#10003; account management</span>\r\n</div>\r\n<div style=\"margin: auto; padding: 20px 0 0 700px; width: auto;\">\r\n<span style=\"color: #fff; font-size: 30px; font-style: none;\">&#10003; order history and review</span>\r\n</div>\r\n<div style=\"margin: auto; padding: 20px 0 0 700px; width: auto;\">\r\n<span style=\"color: #fff; font-size: 30px; font-style: none;\">&#10003; member choice / allocation</span>\r\n</div>\r\n'),
(20566,2462,'layer_index_2','active'),
(20567,2462,'layer_delay_2','500'),
(20568,2462,'layer_duration_2','500'),
(20569,2462,'layer_opacity_2','1'),
(20570,2462,'layer_zindex_2','1'),
(20571,2462,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(20572,2462,'layer_direction_2','right'),
(20573,2462,'layer_posx_2','50'),
(20574,2462,'layer_posy_2','0'),
(20575,2462,'layer_3','<div style=\"margin: auto; padding: 0; width: auto;\">\r\n<img src=\"/wp-content/uploads/2017/03/FacebookLogin.png\" alt=\"Club Facebook Login\" width=\"375\" height=\"500\" class=\"alignleft\" />\r\n</div>'),
(20576,2462,'layer_index_3','active'),
(20577,2462,'layer_delay_3','3000'),
(20578,2462,'layer_duration_3','500'),
(20579,2462,'layer_opacity_3','1'),
(20580,2462,'layer_zindex_3','1'),
(20581,2462,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(20582,2462,'layer_direction_3','left'),
(20583,2462,'layer_posx_3','50'),
(20584,2462,'layer_posy_3','50'),
(20585,2462,'layer_4','<div style=\"margin: auto; padding: 0; width: auto;\">\r\n<img src=\"/wp-content/uploads/2017/03/FacebookAccount.png\" alt=\"Club Facebook Account\" width=\"375\" height=\"500\" class=\"alignleft\" />\r\n</div>'),
(20586,2462,'layer_index_4','active'),
(20587,2462,'layer_delay_4','4500'),
(20588,2462,'layer_duration_4','500'),
(20589,2462,'layer_opacity_4','1'),
(20590,2462,'layer_zindex_4','1'),
(20591,2462,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(20592,2462,'layer_direction_4','left'),
(20593,2462,'layer_posx_4','50'),
(20594,2462,'layer_posy_4','50'),
(20595,2462,'layer_5','<div style=\"margin: auto; padding: 0; width: auto;\">\r\n<img src=\"/wp-content/uploads/2017/03/FacebookOrderReview.png\" alt=\"Club Facebook Login\" width=\"375\" height=\"500\" class=\"alignleft\" />\r\n</div>'),
(20596,2462,'layer_index_5','active'),
(20597,2462,'layer_delay_5','6000'),
(20598,2462,'layer_duration_5','500'),
(20599,2462,'layer_opacity_5','1'),
(20600,2462,'layer_zindex_5','1'),
(20601,2462,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(20602,2462,'layer_direction_5','left'),
(20603,2462,'layer_posx_5','50'),
(20604,2462,'layer_posy_5','50'),
(20605,2462,'layer_6','<div style=\"margin: auto; padding: 0; width: auto;\">\r\n<img src=\"/wp-content/uploads/2017/03/FacebookCard.png\" alt=\"Club Facebook Credit Card\" width=\"375\" height=\"500\" class=\"alignleft\" />\r\n</div>'),
(20606,2462,'layer_index_6','active'),
(20607,2462,'layer_delay_6','7500'),
(20608,2462,'layer_duration_6','500'),
(20609,2462,'layer_opacity_6','1'),
(20610,2462,'layer_zindex_6','1'),
(20611,2462,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(20612,2462,'layer_direction_6','left'),
(20613,2462,'layer_posx_6','50'),
(20614,2462,'layer_posy_6','50'),
(20615,2462,'layer_7','<div style=\"margin: auto; padding: 0; width: auto;\">\r\n<img src=\"/wp-content/uploads/2017/03/FacebookCatalog.png\" alt=\"Club Facebook Login\" width=\"375\" height=\"500\" class=\"alignleft\" />\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 394px 0 0 700px; width: auto;\">\r\n<span style=\"color: #fff; font-size: 30px; font-style: none;\">&#10003; </span><span style=\"color: #fff; font-size: 30px; font-style: none;\"><strong>EVEN shopping!</strong></span>\r\n</div>'),
(20616,2462,'layer_index_7','active'),
(20617,2462,'layer_delay_7','9000'),
(20618,2462,'layer_duration_7','500'),
(20619,2462,'layer_opacity_7','1'),
(20620,2462,'layer_zindex_7','1'),
(20621,2462,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(20622,2462,'layer_direction_7','bottom'),
(20623,2462,'layer_posx_7','50'),
(20624,2462,'layer_posy_7','50'),
(20625,2462,'_yoast_wpseo_content_score','30'),
(20626,2462,'_edit_lock','1541045071:2'),
(20627,2464,'_wp_attached_file','2017/03/FacebookSignup.png'),
(20628,2464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:716;s:6:\"height\";i:955;s:4:\"file\";s:26:\"2017/03/FacebookSignup.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"FacebookSignup-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"FacebookSignup-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"FacebookSignup-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"FacebookSignup-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"FacebookSignup-716x588.png\";s:5:\"width\";i:716;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:26:\"FacebookSignup-716x588.png\";s:5:\"width\";i:716;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20629,2465,'_wp_attached_file','2017/03/FacebookOrderReview.png'),
(20630,2465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:985;s:4:\"file\";s:31:\"2017/03/FacebookOrderReview.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"FacebookOrderReview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"FacebookOrderReview-219x300.png\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:31:\"FacebookOrderReview-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:31:\"FacebookOrderReview-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:31:\"FacebookOrderReview-720x588.png\";s:5:\"width\";i:720;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"FacebookOrderReview-720x588.png\";s:5:\"width\";i:720;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20631,2462,'_publicize_pending','1'),
(20632,2462,'_jetpack_dont_email_post_to_subs','1'),
(20636,2467,'_wp_attached_file','2017/03/FacebookLogin.png'),
(20637,2467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:731;s:6:\"height\";i:988;s:4:\"file\";s:25:\"2017/03/FacebookLogin.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"FacebookLogin-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"FacebookLogin-222x300.png\";s:5:\"width\";i:222;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"FacebookLogin-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"FacebookLogin-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:25:\"FacebookLogin-731x588.png\";s:5:\"width\";i:731;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"FacebookLogin-731x588.png\";s:5:\"width\";i:731;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20638,2468,'_wp_attached_file','2017/03/FacebookAccount.png'),
(20639,2468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:739;s:6:\"height\";i:983;s:4:\"file\";s:27:\"2017/03/FacebookAccount.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FacebookAccount-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FacebookAccount-226x300.png\";s:5:\"width\";i:226;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"FacebookAccount-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"FacebookAccount-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"FacebookAccount-739x588.png\";s:5:\"width\";i:739;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"FacebookAccount-739x588.png\";s:5:\"width\";i:739;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20640,2469,'_wp_attached_file','2017/03/FacebookOrderReview-1.png'),
(20641,2469,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:985;s:4:\"file\";s:33:\"2017/03/FacebookOrderReview-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"FacebookOrderReview-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"FacebookOrderReview-1-219x300.png\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:33:\"FacebookOrderReview-1-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"FacebookOrderReview-1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:33:\"FacebookOrderReview-1-720x588.png\";s:5:\"width\";i:720;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:33:\"FacebookOrderReview-1-720x588.png\";s:5:\"width\";i:720;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20642,2470,'_wp_attached_file','2017/03/FacebookCard.png'),
(20643,2470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:719;s:6:\"height\";i:986;s:4:\"file\";s:24:\"2017/03/FacebookCard.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"FacebookCard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"FacebookCard-219x300.png\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"FacebookCard-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"FacebookCard-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"FacebookCard-719x588.png\";s:5:\"width\";i:719;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"FacebookCard-719x588.png\";s:5:\"width\";i:719;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20644,2471,'_wp_attached_file','2017/03/FacebookElement.png'),
(20645,2471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:731;s:6:\"height\";i:992;s:4:\"file\";s:27:\"2017/03/FacebookElement.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FacebookElement-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FacebookElement-221x300.png\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"FacebookElement-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"FacebookElement-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"FacebookElement-731x588.png\";s:5:\"width\";i:731;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"FacebookElement-731x588.png\";s:5:\"width\";i:731;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20646,2472,'_wp_attached_file','2017/03/FacebookCatalog.png'),
(20647,2472,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:723;s:6:\"height\";i:985;s:4:\"file\";s:27:\"2017/03/FacebookCatalog.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FacebookCatalog-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FacebookCatalog-220x300.png\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"FacebookCatalog-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"FacebookCatalog-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"FacebookCatalog-723x588.png\";s:5:\"width\";i:723;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"FacebookCatalog-723x588.png\";s:5:\"width\";i:723;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20654,2475,'_wp_attached_file','2017/03/integrations_8.png'),
(20655,2475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:498;s:4:\"file\";s:26:\"2017/03/integrations_8.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"integrations_8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"integrations_8-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"integrations_8-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"integrations_8-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"integrations_8-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"integrations_8-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"integrations_8-894x498.png\";s:5:\"width\";i:894;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20659,2479,'_wp_attached_file','2017/03/gatewaygraphic_2.png'),
(20660,2479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:260;s:4:\"file\";s:28:\"2017/03/gatewaygraphic_2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"gatewaygraphic_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"gatewaygraphic_2-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"gatewaygraphic_2-768x166.png\";s:5:\"width\";i:768;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"gatewaygraphic_2-1024x222.png\";s:5:\"width\";i:1024;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"gatewaygraphic_2-600x260.png\";s:5:\"width\";i:600;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"gatewaygraphic_2-384x260.png\";s:5:\"width\";i:384;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"gatewaygraphic_2-894x260.png\";s:5:\"width\";i:894;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"gatewaygraphic_2-1200x260.png\";s:5:\"width\";i:1200;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(20853,2485,'_edit_last','2'),
(20854,2485,'_wp_page_template','default'),
(20855,2485,'ninzio_page_subtitle',''),
(20856,2485,'ninzio_page_sidebar','none'),
(20857,2485,'ninzio_page_title_background_color',''),
(20858,2485,'ninzio_page_title_background_color_opacity','1'),
(20859,2485,'ninzio_page_title_text_color','#ffffff'),
(20860,2485,'ninzio_page_subtitle_background_color',''),
(20861,2485,'ninzio_page_subtitle_background_color_opacity','1'),
(20862,2485,'ninzio_page_subtitle_text_color','#ffffff'),
(20863,2485,'ninzio_page_title_section_background_color','#f6f6f6'),
(20864,2485,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/08/marketing_2.png'),
(20865,2485,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(20866,2485,'ninzio_page_title_section_background_image_position','center_center'),
(20867,2485,'ninzio_page_title_section_background_image_attachment','scroll'),
(20868,2485,'ninzio_page_title_section_background_image_size','auto'),
(20869,2485,'ninzio_one_page','no'),
(20870,2485,'ninzio_slider','no'),
(20871,2485,'ninzio_page_layout','yes'),
(20872,2485,'ninzio_page_twitter','no'),
(20873,2485,'ninzio_page_padding_top','yes'),
(20874,2485,'ninzio_rich_header','no'),
(20875,2485,'ninzio_page_title_section_background_image_parallax','no'),
(20876,2485,'_yoast_wpseo_content_score','30'),
(20877,2485,'_edit_lock','1649028449:2'),
(20890,2485,'_publicize_pending','1'),
(20914,2485,'_jetpack_dont_email_post_to_subs','1'),
(20961,2499,'_edit_last','2'),
(20962,2499,'_wp_page_template','default'),
(20963,2499,'_publicize_pending','1'),
(20964,2499,'ninzio_page_subtitle',''),
(20965,2499,'ninzio_page_sidebar','none'),
(20966,2499,'ninzio_page_title_background_color',''),
(20967,2499,'ninzio_page_title_background_color_opacity','1'),
(20968,2499,'ninzio_page_title_text_color','#ffffff'),
(20969,2499,'ninzio_page_subtitle_background_color',''),
(20970,2499,'ninzio_page_subtitle_background_color_opacity','1'),
(20971,2499,'ninzio_page_subtitle_text_color',''),
(20972,2499,'ninzio_page_title_section_background_color','#f6f6f6'),
(20973,2499,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/02/wallofcorks_2.jpg'),
(20974,2499,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(20975,2499,'ninzio_page_title_section_background_image_position','center_center'),
(20976,2499,'ninzio_page_title_section_background_image_attachment','scroll'),
(20977,2499,'ninzio_page_title_section_background_image_size','auto'),
(20978,2499,'ninzio_one_page','no'),
(20979,2499,'ninzio_slider','no'),
(20980,2499,'ninzio_page_layout','no'),
(20981,2499,'ninzio_page_twitter','no'),
(20982,2499,'ninzio_page_padding_top','yes'),
(20983,2499,'ninzio_rich_header','yes'),
(20984,2499,'ninzio_page_title_section_background_image_parallax','no'),
(20985,2499,'_yoast_wpseo_content_score','30'),
(20986,2499,'_edit_lock','1545089793:2'),
(20987,2499,'_jetpack_dont_email_post_to_subs','1'),
(20988,2501,'_edit_last','2'),
(20989,2501,'_wp_page_template','default'),
(20990,2501,'_publicize_pending','1'),
(20991,2501,'ninzio_page_subtitle',''),
(20992,2501,'ninzio_page_sidebar','none'),
(20993,2501,'ninzio_page_title_background_color',''),
(20994,2501,'ninzio_page_title_background_color_opacity','1'),
(20995,2501,'ninzio_page_title_text_color','#ffffff'),
(20996,2501,'ninzio_page_subtitle_background_color',''),
(20997,2501,'ninzio_page_subtitle_background_color_opacity','1'),
(20998,2501,'ninzio_page_subtitle_text_color','#444444'),
(20999,2501,'ninzio_page_title_section_background_color','#f6f6f6'),
(21000,2501,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/01/ChangeLogBackground_3.png'),
(21001,2501,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(21002,2501,'ninzio_page_title_section_background_image_position','center_center'),
(21003,2501,'ninzio_page_title_section_background_image_attachment','scroll'),
(21004,2501,'ninzio_page_title_section_background_image_size','auto'),
(21005,2501,'ninzio_one_page','no'),
(21006,2501,'ninzio_slider','no'),
(21007,2501,'ninzio_page_layout','no'),
(21008,2501,'ninzio_page_twitter','no'),
(21009,2501,'ninzio_page_padding_top','yes'),
(21010,2501,'ninzio_rich_header','yes'),
(21011,2501,'ninzio_page_title_section_background_image_parallax','no'),
(21012,2501,'_yoast_wpseo_content_score','30'),
(21013,2501,'_edit_lock','1519621608:2'),
(21014,2501,'_jetpack_dont_email_post_to_subs','1'),
(21090,1895,'_edit_lock','1490389105:2'),
(21116,2509,'_wp_attached_file','2017/03/EVO_Logo.png'),
(21117,2509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:265;s:6:\"height\";i:80;s:4:\"file\";s:20:\"2017/03/EVO_Logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"EVO_Logo-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21120,2510,'_wp_attached_file','2017/03/glassintastingroom.png'),
(21121,2510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2017/03/glassintastingroom.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"glassintastingroom-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"glassintastingroom-300x113.png\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"glassintastingroom-768x288.png\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"glassintastingroom-1024x384.png\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"glassintastingroom-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"glassintastingroom-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"glassintastingroom-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"glassintastingroom-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21307,2526,'_wp_attached_file','2017/04/dandilion_5.png'),
(21308,2526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1106;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2017/04/dandilion_5.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"dandilion_5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"dandilion_5-300x136.png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"dandilion_5-768x347.png\";s:5:\"width\";i:768;s:6:\"height\";i:347;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"dandilion_5-1024x463.png\";s:5:\"width\";i:1024;s:6:\"height\";i:463;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"dandilion_5-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"dandilion_5-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"dandilion_5-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21337,2537,'_wp_attached_file','2017/04/inventorymgmt.png'),
(21338,2537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:579;s:4:\"file\";s:25:\"2017/04/inventorymgmt.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"inventorymgmt-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"inventorymgmt-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"inventorymgmt-768x434.png\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"inventorymgmt-1024x579.png\";s:5:\"width\";i:1024;s:6:\"height\";i:579;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"inventorymgmt-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"inventorymgmt-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:25:\"inventorymgmt-894x579.png\";s:5:\"width\";i:894;s:6:\"height\";i:579;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21339,2538,'_edit_last','2'),
(21340,2538,'_publicize_pending','1'),
(21341,2538,'background_image','https://activeclubsolutions.net/wp-content/uploads/2014/05/header51.jpg'),
(21342,2538,'background_color',''),
(21343,2538,'background_video_mp4',''),
(21344,2538,'background_video_ogv',''),
(21345,2538,'background_video_webm',''),
(21346,2538,'background_image_parallax','no'),
(21347,2538,'layer_1','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 43px; font-style: italic; line-height: 45px;\">Multi-Location Inventory Management</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 25px; font-weight: 600; line-height: 30px;\">stock by location</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 10px 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 25px; line-height: 30px;\">unlimited number of locations, virtual locations, GPS coordinates</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 25px; line-height: 30px;\">on-hand, allocated, available, defective, and returned</span>\r\n</div>\r\n\r\n\r\n\r\n\r\n'),
(21348,2538,'layer_index_1','active'),
(21349,2538,'layer_delay_1','0'),
(21350,2538,'layer_duration_1','600'),
(21351,2538,'layer_opacity_1','1'),
(21352,2538,'layer_zindex_1','1'),
(21353,2538,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(21354,2538,'layer_direction_1','none'),
(21355,2538,'layer_posx_1','0'),
(21356,2538,'layer_posy_1','50'),
(21357,2538,'layer_2','<div style=\"margin: auto; padding: 0 0 0 0; margin-left: 850px; width: auto;\">\r\n<span style=\"color: #fff;  text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 30px; line-height: 30px;\">Full function on iPad</span>\r\n</div>\r\n\r\n<div style=\"margin: auto; padding: 20px 0 0 0; width: 1250px;\">\r\n<img src=\"/wp-content/uploads/2017/04/iPadLocation.png\" alt=\"Inventory Location\" width=\"524\" height=\"401\" class=\"alignright size-full\" />\r\n</div>\r\n'),
(21358,2538,'layer_index_2','active'),
(21359,2538,'layer_delay_2','3000'),
(21360,2538,'layer_duration_2','600'),
(21361,2538,'layer_opacity_2','1'),
(21362,2538,'layer_zindex_2','1'),
(21363,2538,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(21364,2538,'layer_direction_2','right'),
(21365,2538,'layer_posx_2','0'),
(21366,2538,'layer_posy_2','100'),
(21367,2538,'layer_3','<div style=\"margin: auto; padding: 0 0 0 0; width: 1250px;\">\r\n<img src=\"/wp-content/uploads/2017/01/iPadNewOrder.png\" alt=\"Inventory Location\" width=\"524\" height=\"401\" class=\"alignright size-full\" />\r\n</div>'),
(21368,2538,'layer_index_3','active'),
(21369,2538,'layer_delay_3','5000'),
(21370,2538,'layer_duration_3','600'),
(21371,2538,'layer_opacity_3','1'),
(21372,2538,'layer_zindex_3','1'),
(21373,2538,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(21374,2538,'layer_direction_3','right'),
(21375,2538,'layer_posx_3','0'),
(21376,2538,'layer_posy_3','150'),
(21377,2538,'layer_4','<div style=\"margin: auto; padding: 0 0 0 0; width: 1250px;\">\r\n<img src=\"/wp-content/uploads/2017/04/iPadAddInventory.png\" alt=\"Inventory Location\" width=\"524\" height=\"401\" class=\"alignright size-full\" />\r\n</div>'),
(21378,2538,'layer_index_4','active'),
(21379,2538,'layer_delay_4','7000'),
(21380,2538,'layer_duration_4','600'),
(21381,2538,'layer_opacity_4','1'),
(21382,2538,'layer_zindex_4','1'),
(21383,2538,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(21384,2538,'layer_direction_4','right'),
(21385,2538,'layer_posx_4','0'),
(21386,2538,'layer_posy_4','150'),
(21387,2538,'layer_5','<div style=\"margin: auto; padding: 0 0 0 0; width: 1250px;\">\r\n<img src=\"/wp-content/uploads/2017/04/iPadTransfer.png\" alt=\"Inventory Location\" width=\"524\" height=\"401\" class=\"alignright size-full\" />\r\n</div>'),
(21388,2538,'layer_index_5','active'),
(21389,2538,'layer_delay_5','9000'),
(21390,2538,'layer_duration_5','600'),
(21391,2538,'layer_opacity_5','1'),
(21392,2538,'layer_zindex_5','1'),
(21393,2538,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(21394,2538,'layer_direction_5','right'),
(21395,2538,'layer_posx_5','0'),
(21396,2538,'layer_posy_5','150'),
(21397,2538,'layer_6','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 18px; line-height: 18px; font-style: none;\">\r\ntransactions\r\n<ul>\r\n<li>daily movement detail</li>\r\n</ul>\r\ninventory transactions\r\n<ul>\r\n<li>daily movement detail</li>\r\n</ul>\r\ninventory\r\n<ul>\r\n<li>daily stock levels</li>\r\n<li>value by location</li>\r\n<li>value summary</li>\r\n<li>movement detail</li>\r\n<li>summary movement by type</li>\r\n</ul>\r\ninventory stock\r\n<ul>\r\n<li>daily levels</li>\r\n<li>daily movement history</li>\r\n</ul>\r\n</span>\r\n</div>\r\n'),
(21398,2538,'layer_index_6','active'),
(21399,2538,'layer_delay_6','1500'),
(21400,2538,'layer_duration_6','600'),
(21401,2538,'layer_opacity_6','1'),
(21402,2538,'layer_zindex_6','1'),
(21403,2538,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(21404,2538,'layer_direction_6','left'),
(21405,2538,'layer_posx_6','0'),
(21406,2538,'layer_posy_6','200'),
(21407,2538,'layer_7','<div style=\"margin: auto; padding: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 18px; line-height: 18px; font-style: none;\">\r\nautomated reporting\r\n<ul>\r\n<li>email alerts</li>\r\n<li>daily reports</li>\r\n<li>monthly reports</li>\r\n<li>quarterly reports</li>\r\n<li>yearly reports</li>\r\n<li>and more...</li>\r\n</ul>\r\n</span>\r\n</div>'),
(21408,2538,'layer_index_7','active'),
(21409,2538,'layer_delay_7','7000'),
(21410,2538,'layer_duration_7','600'),
(21411,2538,'layer_opacity_7','1'),
(21412,2538,'layer_zindex_7','1'),
(21413,2538,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(21414,2538,'layer_direction_7','bottom'),
(21415,2538,'layer_posx_7','400'),
(21416,2538,'layer_posy_7','320'),
(21417,2538,'_yoast_wpseo_content_score','30'),
(21418,2538,'_edit_lock','1541045141:2'),
(21422,2538,'_wp_old_slug','inventory-management__trashed'),
(21423,2538,'_jetpack_dont_email_post_to_subs','1'),
(21443,2539,'_wp_attached_file','2017/04/InventoryTransaction.png'),
(21444,2539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:628;s:6:\"height\";i:660;s:4:\"file\";s:32:\"2017/04/InventoryTransaction.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"InventoryTransaction-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"InventoryTransaction-285x300.png\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:32:\"InventoryTransaction-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:32:\"InventoryTransaction-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:32:\"InventoryTransaction-628x588.png\";s:5:\"width\";i:628;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:32:\"InventoryTransaction-628x588.png\";s:5:\"width\";i:628;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21445,2540,'_wp_attached_file','2017/04/iPadLocation.png'),
(21446,2540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1235;s:6:\"height\";i:874;s:4:\"file\";s:24:\"2017/04/iPadLocation.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"iPadLocation-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"iPadLocation-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"iPadLocation-768x544.png\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"iPadLocation-1024x725.png\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"iPadLocation-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"iPadLocation-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"iPadLocation-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"iPadLocation-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21447,2541,'_wp_attached_file','2017/04/iPadAddInventory.png'),
(21448,2541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1235;s:6:\"height\";i:874;s:4:\"file\";s:28:\"2017/04/iPadAddInventory.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"iPadAddInventory-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"iPadAddInventory-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"iPadAddInventory-768x544.png\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"iPadAddInventory-1024x725.png\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"iPadAddInventory-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"iPadAddInventory-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"iPadAddInventory-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"iPadAddInventory-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21449,2542,'_wp_attached_file','2017/04/iPadTransfer.png'),
(21450,2542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1235;s:6:\"height\";i:874;s:4:\"file\";s:24:\"2017/04/iPadTransfer.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"iPadTransfer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"iPadTransfer-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"iPadTransfer-768x544.png\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"iPadTransfer-1024x725.png\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"iPadTransfer-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"iPadTransfer-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"iPadTransfer-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"iPadTransfer-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21735,2551,'_wp_attached_file','2017/03/Grapes-CC.jpg'),
(21736,2551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:21:\"2017/03/Grapes-CC.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Grapes-CC-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Grapes-CC-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Grapes-CC-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Grapes-CC-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"Grapes-CC-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"Grapes-CC-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"Grapes-CC-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"Grapes-CC-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21793,2554,'_wp_attached_file','2017/04/POSTransfer.png'),
(21794,2554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2017/04/POSTransfer.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"POSTransfer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"POSTransfer-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"POSTransfer-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"POSTransfer-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"POSTransfer-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"POSTransfer-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"POSTransfer-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"POSTransfer-1024x588.png\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21796,2555,'_wp_attached_file','2017/04/ACSvsVinSuite-POS.png'),
(21797,2555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:323;s:4:\"file\";s:29:\"2017/04/ACSvsVinSuite-POS.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"ACSvsVinSuite-POS-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"ACSvsVinSuite-POS-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"ACSvsVinSuite-POS-768x248.png\";s:5:\"width\";i:768;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"ACSvsVinSuite-POS-600x323.png\";s:5:\"width\";i:600;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"ACSvsVinSuite-POS-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"ACSvsVinSuite-POS-894x323.png\";s:5:\"width\";i:894;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21799,2556,'_wp_attached_file','2017/04/ACSvsOrderPort-POS.png'),
(21800,2556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:323;s:4:\"file\";s:30:\"2017/04/ACSvsOrderPort-POS.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"ACSvsOrderPort-POS-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"ACSvsOrderPort-POS-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"ACSvsOrderPort-POS-768x248.png\";s:5:\"width\";i:768;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"ACSvsOrderPort-POS-600x323.png\";s:5:\"width\";i:600;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"ACSvsOrderPort-POS-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"ACSvsOrderPort-POS-894x323.png\";s:5:\"width\";i:894;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21801,2557,'_wp_attached_file','2017/04/ACSvsVin65-POS_2.png'),
(21802,2557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:637;s:4:\"file\";s:28:\"2017/04/ACSvsVin65-POS_2.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ACSvsVin65-POS_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"ACSvsVin65-POS_2-300x191.png\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"ACSvsVin65-POS_2-768x489.png\";s:5:\"width\";i:768;s:6:\"height\";i:489;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"ACSvsVin65-POS_2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"ACSvsVin65-POS_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"ACSvsVin65-POS_2-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"ACSvsVin65-POS_2-1000x588.png\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21803,2558,'_wp_attached_file','2017/04/POSAddInventory.png'),
(21804,2558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:27:\"2017/04/POSAddInventory.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"POSAddInventory-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"POSAddInventory-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"POSAddInventory-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"POSAddInventory-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"POSAddInventory-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"POSAddInventory-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"POSAddInventory-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"POSAddInventory-1024x588.png\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21806,2559,'_wp_attached_file','2017/04/ACSvsRevel-POS.png'),
(21807,2559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:323;s:4:\"file\";s:26:\"2017/04/ACSvsRevel-POS.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"ACSvsRevel-POS-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"ACSvsRevel-POS-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"ACSvsRevel-POS-768x248.png\";s:5:\"width\";i:768;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"ACSvsRevel-POS-600x323.png\";s:5:\"width\";i:600;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"ACSvsRevel-POS-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"ACSvsRevel-POS-894x323.png\";s:5:\"width\";i:894;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21808,2560,'_wp_attached_file','2017/04/POSLocation.png'),
(21809,2560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2017/04/POSLocation.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"POSLocation-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"POSLocation-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"POSLocation-768x576.png\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"POSLocation-1024x768.png\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"POSLocation-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"POSLocation-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"POSLocation-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"POSLocation-1024x588.png\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21830,2568,'_wp_attached_file','2017/04/WineDirect_2.png'),
(21831,2568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:410;s:6:\"height\";i:168;s:4:\"file\";s:24:\"2017/04/WineDirect_2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"WineDirect_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"WineDirect_2-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"WineDirect_2-384x168.png\";s:5:\"width\";i:384;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21863,2574,'_wp_attached_file','2017/04/webdesignagency_3.png'),
(21864,2574,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1227;s:6:\"height\";i:450;s:4:\"file\";s:29:\"2017/04/webdesignagency_3.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"webdesignagency_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"webdesignagency_3-300x110.png\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"webdesignagency_3-768x282.png\";s:5:\"width\";i:768;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"webdesignagency_3-1024x376.png\";s:5:\"width\";i:1024;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"webdesignagency_3-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"webdesignagency_3-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"webdesignagency_3-894x450.png\";s:5:\"width\";i:894;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"webdesignagency_3-1200x450.png\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21867,2576,'_wp_attached_file','2017/04/Sky1Logo.png'),
(21868,2576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:217;s:6:\"height\";i:161;s:4:\"file\";s:20:\"2017/04/Sky1Logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Sky1Logo-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:{}}}'),
(21876,2580,'_wp_attached_file','2017/04/SiteCraftLogo.png'),
(21877,2580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:237;s:6:\"height\";i:56;s:4:\"file\";s:25:\"2017/04/SiteCraftLogo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"SiteCraftLogo-150x56.png\";s:5:\"width\";i:150;s:6:\"height\";i:56;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21878,2581,'_wp_attached_file','2017/04/NLHSolutionsLogo.png'),
(21879,2581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:244;s:6:\"height\";i:61;s:4:\"file\";s:28:\"2017/04/NLHSolutionsLogo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"NLHSolutionsLogo-150x61.png\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21880,2582,'_wp_attached_file','2017/04/KreckLogo.png'),
(21881,2582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:159;s:6:\"height\";i:108;s:4:\"file\";s:21:\"2017/04/KreckLogo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"KreckLogo-150x108.png\";s:5:\"width\";i:150;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21882,2583,'_wp_attached_file','2017/04/4PartsLogo.png'),
(21883,2583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:239;s:6:\"height\";i:80;s:4:\"file\";s:22:\"2017/04/4PartsLogo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"4PartsLogo-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21885,2584,'_wp_attached_file','2017/04/RisinglineLogo.png'),
(21886,2584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:188;s:6:\"height\";i:81;s:4:\"file\";s:26:\"2017/04/RisinglineLogo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"RisinglineLogo-150x81.png\";s:5:\"width\";i:150;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21887,2585,'_wp_attached_file','2017/04/WebDesignerAvatar.png'),
(21888,2585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:150;s:4:\"file\";s:29:\"2017/04/WebDesignerAvatar.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"WebDesignerAvatar-140x150.png\";s:5:\"width\";i:140;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:{}}}'),
(21889,2587,'_wp_attached_file','2017/04/keventhompson.png'),
(21890,2587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:238;s:6:\"height\";i:220;s:4:\"file\";s:25:\"2017/04/keventhompson.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"keventhompson-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:{}}}'),
(21922,2598,'_wp_attached_file','2017/04/vineyardinfog-wide.png'),
(21923,2598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2017/04/vineyardinfog-wide.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"vineyardinfog-wide-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"vineyardinfog-wide-300x107.png\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"vineyardinfog-wide-768x274.png\";s:5:\"width\";i:768;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"vineyardinfog-wide-1024x366.png\";s:5:\"width\";i:1024;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"vineyardinfog-wide-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"vineyardinfog-wide-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"vineyardinfog-wide-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"vineyardinfog-wide-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(21948,2604,'_wp_attached_file','2017/04/golfcourse_1.png'),
(21949,2604,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:855;s:6:\"height\";i:322;s:4:\"file\";s:24:\"2017/04/golfcourse_1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"golfcourse_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"golfcourse_1-300x113.png\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"golfcourse_1-768x289.png\";s:5:\"width\";i:768;s:6:\"height\";i:289;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"golfcourse_1-600x322.png\";s:5:\"width\";i:600;s:6:\"height\";i:322;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"golfcourse_1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22002,2616,'_wp_attached_file','2017/04/processworkflow.png'),
(22003,2616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:365;s:4:\"file\";s:27:\"2017/04/processworkflow.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"processworkflow-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"processworkflow-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"processworkflow-768x330.png\";s:5:\"width\";i:768;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"processworkflow-600x365.png\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"processworkflow-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22004,2617,'_wp_attached_file','2017/04/processworkflow_2.png'),
(22005,2617,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:365;s:4:\"file\";s:29:\"2017/04/processworkflow_2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"processworkflow_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"processworkflow_2-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"processworkflow_2-768x330.png\";s:5:\"width\";i:768;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"processworkflow_2-600x365.png\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"processworkflow_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22007,2618,'_wp_attached_file','2017/04/PrettyBlueToBlack.png'),
(22008,2618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:365;s:4:\"file\";s:29:\"2017/04/PrettyBlueToBlack.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"PrettyBlueToBlack-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"PrettyBlueToBlack-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"PrettyBlueToBlack-768x330.png\";s:5:\"width\";i:768;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"PrettyBlueToBlack-600x365.png\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"PrettyBlueToBlack-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22034,2636,'_wp_attached_file','2017/04/phoneandemail.png'),
(22035,2636,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:365;s:6:\"height\";i:365;s:4:\"file\";s:25:\"2017/04/phoneandemail.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"phoneandemail-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"phoneandemail-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"phoneandemail-365x300.png\";s:5:\"width\";i:365;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22037,2639,'_wp_attached_file','2017/04/softwaretechnology.png'),
(22038,2639,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:365;s:4:\"file\";s:30:\"2017/04/softwaretechnology.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"softwaretechnology-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"softwaretechnology-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"softwaretechnology-768x330.png\";s:5:\"width\";i:768;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"softwaretechnology-600x365.png\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"softwaretechnology-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22041,2641,'_wp_attached_file','2017/04/softwaretechnology_3.png'),
(22042,2641,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:365;s:4:\"file\";s:32:\"2017/04/softwaretechnology_3.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"softwaretechnology_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"softwaretechnology_3-300x57.png\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"softwaretechnology_3-768x146.png\";s:5:\"width\";i:768;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"softwaretechnology_3-1024x195.png\";s:5:\"width\";i:1024;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:32:\"softwaretechnology_3-600x365.png\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:32:\"softwaretechnology_3-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:32:\"softwaretechnology_3-894x365.png\";s:5:\"width\";i:894;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:33:\"softwaretechnology_3-1200x365.png\";s:5:\"width\";i:1200;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22057,2645,'_wp_attached_file','2017/04/QuickbooksPage_2.png'),
(22058,2645,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:365;s:4:\"file\";s:28:\"2017/04/QuickbooksPage_2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"QuickbooksPage_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"QuickbooksPage_2-300x57.png\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"QuickbooksPage_2-768x146.png\";s:5:\"width\";i:768;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"QuickbooksPage_2-1024x195.png\";s:5:\"width\";i:1024;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"QuickbooksPage_2-600x365.png\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"QuickbooksPage_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"QuickbooksPage_2-894x365.png\";s:5:\"width\";i:894;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"QuickbooksPage_2-1200x365.png\";s:5:\"width\";i:1200;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22063,2651,'_wp_attached_file','2017/04/QuickbooksPage_3.png'),
(22064,2651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:365;s:4:\"file\";s:28:\"2017/04/QuickbooksPage_3.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"QuickbooksPage_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"QuickbooksPage_3-300x57.png\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"QuickbooksPage_3-768x146.png\";s:5:\"width\";i:768;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"QuickbooksPage_3-1024x195.png\";s:5:\"width\";i:1024;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"QuickbooksPage_3-600x365.png\";s:5:\"width\";i:600;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"QuickbooksPage_3-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"QuickbooksPage_3-894x365.png\";s:5:\"width\";i:894;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"QuickbooksPage_3-1200x365.png\";s:5:\"width\";i:1200;s:6:\"height\";i:365;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22067,2652,'_wp_attached_file','2017/04/PricingChart_2.png'),
(22068,2652,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:933;s:6:\"height\";i:1044;s:4:\"file\";s:26:\"2017/04/PricingChart_2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"PricingChart_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"PricingChart_2-268x300.png\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"PricingChart_2-768x859.png\";s:5:\"width\";i:768;s:6:\"height\";i:859;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"PricingChart_2-915x1024.png\";s:5:\"width\";i:915;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"PricingChart_2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"PricingChart_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"PricingChart_2-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:26:\"PricingChart_2-933x588.png\";s:5:\"width\";i:933;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22088,2656,'_wp_attached_file','2017/04/careersheader.png'),
(22089,2656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1540;s:6:\"height\";i:385;s:4:\"file\";s:25:\"2017/04/careersheader.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"careersheader-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"careersheader-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"careersheader-768x192.png\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"careersheader-1024x256.png\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"careersheader-600x385.png\";s:5:\"width\";i:600;s:6:\"height\";i:385;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"careersheader-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:25:\"careersheader-894x385.png\";s:5:\"width\";i:894;s:6:\"height\";i:385;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:26:\"careersheader-1200x385.png\";s:5:\"width\";i:1200;s:6:\"height\";i:385;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22126,992,'_publicize_pending','1'),
(22127,992,'_jetpack_dont_email_post_to_subs','1'),
(22128,2660,'_wp_attached_file','2017/04/aboutus_1.png'),
(22129,2660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2017/04/aboutus_1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"aboutus_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"aboutus_1-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"aboutus_1-768x230.png\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"aboutus_1-1024x307.png\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"aboutus_1-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"aboutus_1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"aboutus_1-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"aboutus_1-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22130,2661,'_wp_attached_file','2017/04/aboutus_2.png'),
(22131,2661,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1333;s:6:\"height\";i:400;s:4:\"file\";s:21:\"2017/04/aboutus_2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"aboutus_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"aboutus_2-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"aboutus_2-768x230.png\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"aboutus_2-1024x307.png\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"aboutus_2-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"aboutus_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"aboutus_2-894x400.png\";s:5:\"width\";i:894;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"aboutus_2-1200x400.png\";s:5:\"width\";i:1200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22132,2662,'_edit_last','2'),
(22133,2662,'_wp_page_template','default'),
(22134,2662,'ninzio_page_subtitle',''),
(22135,2662,'ninzio_page_sidebar','none'),
(22136,2662,'ninzio_page_title_background_color',''),
(22137,2662,'ninzio_page_title_background_color_opacity','1'),
(22138,2662,'ninzio_page_title_text_color','#444444'),
(22139,2662,'ninzio_page_subtitle_background_color',''),
(22140,2662,'ninzio_page_subtitle_background_color_opacity','1'),
(22141,2662,'ninzio_page_subtitle_text_color','#444444'),
(22142,2662,'ninzio_page_title_section_background_color','#f6f6f6'),
(22143,2662,'ninzio_page_title_section_background_image',''),
(22144,2662,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(22145,2662,'ninzio_page_title_section_background_image_position','left_top'),
(22146,2662,'ninzio_page_title_section_background_image_attachment','scroll'),
(22147,2662,'ninzio_page_title_section_background_image_size','auto'),
(22148,2662,'ninzio_one_page','no'),
(22149,2662,'ninzio_slider','no'),
(22150,2662,'ninzio_page_layout','no'),
(22151,2662,'ninzio_page_twitter','no'),
(22152,2662,'ninzio_page_padding_top','yes'),
(22153,2662,'ninzio_rich_header','yes'),
(22154,2662,'ninzio_page_title_section_background_image_parallax','no'),
(22155,2662,'_yoast_wpseo_content_score','60'),
(22156,2662,'_edit_lock','1507006445:2'),
(22158,2664,'_menu_item_type','post_type'),
(22159,2664,'_menu_item_menu_item_parent','0'),
(22160,2664,'_menu_item_object_id','992'),
(22161,2664,'_menu_item_object','page'),
(22162,2664,'_menu_item_target',''),
(22163,2664,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(22164,2664,'_menu_item_xfn',''),
(22165,2664,'_menu_item_url',''),
(22167,2664,'_publicize_pending','1'),
(22169,2664,'_jetpack_dont_email_post_to_subs','1'),
(22170,2665,'_wp_attached_file','2017/04/mpopandipad-blue.png'),
(22171,2665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1117;s:4:\"file\";s:28:\"2017/04/mpopandipad-blue.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"mpopandipad-blue-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"mpopandipad-blue-300x186.png\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"mpopandipad-blue-768x477.png\";s:5:\"width\";i:768;s:6:\"height\";i:477;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"mpopandipad-blue-1024x635.png\";s:5:\"width\";i:1024;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"mpopandipad-blue-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"mpopandipad-blue-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"mpopandipad-blue-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"mpopandipad-blue-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22190,2666,'_wp_attached_file','2017/04/seedmedia.png'),
(22191,2666,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:247;s:6:\"height\";i:61;s:4:\"file\";s:21:\"2017/04/seedmedia.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"seedmedia-150x61.png\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22258,2667,'_wp_attached_file','2017/05/seed-media-logo.png'),
(22259,2667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:189;s:4:\"file\";s:27:\"2017/05/seed-media-logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"seed-media-logo-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:{}}}'),
(22316,2670,'_edit_last','2'),
(22317,2670,'_wp_page_template','default'),
(22318,2670,'ninzio_page_subtitle',''),
(22319,2670,'ninzio_page_sidebar','none'),
(22320,2670,'ninzio_page_title_background_color',''),
(22321,2670,'ninzio_page_title_background_color_opacity','1'),
(22322,2670,'ninzio_page_title_text_color','#ffffff'),
(22323,2670,'ninzio_page_subtitle_background_color',''),
(22324,2670,'ninzio_page_subtitle_background_color_opacity','1'),
(22325,2670,'ninzio_page_subtitle_text_color','#444444'),
(22326,2670,'ninzio_page_title_section_background_color','#f6f6f6'),
(22327,2670,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/05/Loginbackground-castle-3.png'),
(22328,2670,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(22329,2670,'ninzio_page_title_section_background_image_position','center_center'),
(22330,2670,'ninzio_page_title_section_background_image_attachment','scroll'),
(22331,2670,'ninzio_page_title_section_background_image_size','auto'),
(22332,2670,'ninzio_one_page','no'),
(22333,2670,'ninzio_slider','no'),
(22334,2670,'ninzio_page_layout','no'),
(22335,2670,'ninzio_page_twitter','no'),
(22336,2670,'ninzio_page_padding_top','yes'),
(22337,2670,'ninzio_rich_header','yes'),
(22338,2670,'ninzio_page_title_section_background_image_parallax','no'),
(22339,2670,'_yoast_wpseo_content_score','30'),
(22340,2670,'_edit_lock','1635463351:2'),
(22341,2670,'_publicize_pending','1'),
(22343,2670,'_jetpack_dont_email_post_to_subs','1'),
(22363,2677,'_menu_item_type','post_type'),
(22364,2677,'_menu_item_menu_item_parent','0'),
(22365,2677,'_menu_item_object_id','2670'),
(22366,2677,'_menu_item_object','page'),
(22367,2677,'_menu_item_target',''),
(22368,2677,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(22369,2677,'_menu_item_xfn',''),
(22370,2677,'_menu_item_url',''),
(22372,2677,'_publicize_pending','1'),
(22383,2679,'_wp_attached_file','2017/05/Loginbackground_1.png'),
(22384,2679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:437;s:4:\"file\";s:29:\"2017/05/Loginbackground_1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Loginbackground_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Loginbackground_1-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Loginbackground_1-768x175.png\";s:5:\"width\";i:768;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Loginbackground_1-1024x233.png\";s:5:\"width\";i:1024;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"Loginbackground_1-600x437.png\";s:5:\"width\";i:600;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"Loginbackground_1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"Loginbackground_1-894x437.png\";s:5:\"width\";i:894;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"Loginbackground_1-1200x437.png\";s:5:\"width\";i:1200;s:6:\"height\";i:437;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22385,2680,'_wp_attached_file','2017/05/Loginbackground-castle.png'),
(22386,2680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2017/05/Loginbackground-castle.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Loginbackground-castle-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Loginbackground-castle-300x63.png\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Loginbackground-castle-768x160.png\";s:5:\"width\";i:768;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Loginbackground-castle-1024x213.png\";s:5:\"width\";i:1024;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:34:\"Loginbackground-castle-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:34:\"Loginbackground-castle-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:34:\"Loginbackground-castle-894x400.png\";s:5:\"width\";i:894;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:35:\"Loginbackground-castle-1200x400.png\";s:5:\"width\";i:1200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22388,2681,'_wp_attached_file','2017/05/Loginbackground-castle-2.png'),
(22389,2681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:400;s:4:\"file\";s:36:\"2017/05/Loginbackground-castle-2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Loginbackground-castle-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Loginbackground-castle-2-300x63.png\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Loginbackground-castle-2-768x160.png\";s:5:\"width\";i:768;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Loginbackground-castle-2-1024x213.png\";s:5:\"width\";i:1024;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:36:\"Loginbackground-castle-2-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:36:\"Loginbackground-castle-2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:36:\"Loginbackground-castle-2-894x400.png\";s:5:\"width\";i:894;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:37:\"Loginbackground-castle-2-1200x400.png\";s:5:\"width\";i:1200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22390,2682,'_wp_attached_file','2017/05/Loginbackground-castle-3.png'),
(22391,2682,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:400;s:4:\"file\";s:36:\"2017/05/Loginbackground-castle-3.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Loginbackground-castle-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Loginbackground-castle-3-300x63.png\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Loginbackground-castle-3-768x160.png\";s:5:\"width\";i:768;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Loginbackground-castle-3-1024x213.png\";s:5:\"width\";i:1024;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:36:\"Loginbackground-castle-3-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:36:\"Loginbackground-castle-3-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:36:\"Loginbackground-castle-3-894x400.png\";s:5:\"width\";i:894;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:37:\"Loginbackground-castle-3-1200x400.png\";s:5:\"width\";i:1200;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(22522,2684,'_publicize_pending','1'),
(22689,2677,'_jetpack_dont_email_post_to_subs','1'),
(23365,2691,'_edit_last','2'),
(23368,2691,'_yoast_wpseo_primary_category',''),
(23369,2691,'ninzio_post_audio_mp3',''),
(23370,2691,'ninzio_post_audio_ogg',''),
(23371,2691,'ninzio_post_audio_embed',''),
(23372,2691,'ninzio_post_video_mp4',''),
(23373,2691,'ninzio_post_video_ogv',''),
(23374,2691,'ninzio_post_video_webm',''),
(23375,2691,'ninzio_post_video_embed',''),
(23376,2691,'ninzio_post_video_poster',''),
(23377,2691,'ninzio_post_link_url',''),
(23378,2691,'ninzio_post_image_url',''),
(23379,2691,'ninzio_post_image_description',''),
(23380,2691,'ninzio_post_status_author',''),
(23381,2691,'ninzio_post_quote_author',''),
(23382,2691,'ninzio_post_featured_media','yes'),
(23383,2691,'_yoast_wpseo_focuskw_text_input','purchase history'),
(23384,2691,'_yoast_wpseo_focuskw','purchase history'),
(23385,2691,'_yoast_wpseo_linkdex','24'),
(23386,2691,'_yoast_wpseo_content_score','30'),
(23387,2691,'_wpas_done_all','1'),
(23388,2691,'_edit_lock','1502751907:2'),
(23630,2698,'_wp_attached_file','2017/07/integrations_9.png'),
(23631,2698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:498;s:4:\"file\";s:26:\"2017/07/integrations_9.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"integrations_9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"integrations_9-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"integrations_9-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"integrations_9-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"integrations_9-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"integrations_9-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"integrations_9-894x498.png\";s:5:\"width\";i:894;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23632,2700,'_wp_attached_file','2017/07/integrations_10.png'),
(23633,2700,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:498;s:4:\"file\";s:27:\"2017/07/integrations_10.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"integrations_10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"integrations_10-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"integrations_10-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"integrations_10-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"integrations_10-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"integrations_10-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"integrations_10-894x498.png\";s:5:\"width\";i:894;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23635,2701,'_wp_attached_file','2017/07/WorldPay_2.png'),
(23636,2701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:212;s:6:\"height\";i:45;s:4:\"file\";s:22:\"2017/07/WorldPay_2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"WorldPay_2-150x45.png\";s:5:\"width\";i:150;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23637,2703,'_wp_attached_file','2017/07/MailChimpNLogo.png'),
(23638,2703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:74;s:4:\"file\";s:26:\"2017/07/MailChimpNLogo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"MailChimpNLogo-150x74.png\";s:5:\"width\";i:150;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23639,2704,'_wp_attached_file','2017/07/WorldPayLarge.png'),
(23640,2704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:387;s:6:\"height\";i:75;s:4:\"file\";s:25:\"2017/07/WorldPayLarge.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"WorldPayLarge-150x75.png\";s:5:\"width\";i:150;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"WorldPayLarge-300x58.png\";s:5:\"width\";i:300;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"WorldPayLarge-384x75.png\";s:5:\"width\";i:384;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23657,1581,'_edit_lock','1500503630:2'),
(23658,2709,'_wp_attached_file','2017/07/constantcontact.png'),
(23659,2709,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:308;s:6:\"height\";i:109;s:4:\"file\";s:27:\"2017/07/constantcontact.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"constantcontact-150x109.png\";s:5:\"width\";i:150;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"constantcontact-300x106.png\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23666,2711,'_wp_attached_file','2017/07/goldengate.png'),
(23667,2711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:422;s:4:\"file\";s:22:\"2017/07/goldengate.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"goldengate-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"goldengate-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"goldengate-768x203.png\";s:5:\"width\";i:768;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"goldengate-1024x270.png\";s:5:\"width\";i:1024;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:22:\"goldengate-600x422.png\";s:5:\"width\";i:600;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"goldengate-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:22:\"goldengate-894x422.png\";s:5:\"width\";i:894;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:23:\"goldengate-1200x422.png\";s:5:\"width\";i:1200;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23668,2712,'_wp_attached_file','2017/07/iPhoneMembership-skewed-e1551931971131.png'),
(23669,2712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:222;s:6:\"height\";i:450;s:4:\"file\";s:50:\"2017/07/iPhoneMembership-skewed-e1551931971131.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"iPhoneMembership-skewed-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"iPhoneMembership-skewed-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:35:\"iPhoneMembership-skewed-444x480.png\";s:5:\"width\";i:444;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:35:\"iPhoneMembership-skewed-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:35:\"iPhoneMembership-skewed-444x588.png\";s:5:\"width\";i:444;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:35:\"iPhoneMembership-skewed-444x588.png\";s:5:\"width\";i:444;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23672,2713,'_wp_attached_file','2017/07/iPhoneCart-skewed.png'),
(23673,2713,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:444;s:6:\"height\";i:900;s:4:\"file\";s:29:\"2017/07/iPhoneCart-skewed.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"iPhoneCart-skewed-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"iPhoneCart-skewed-148x300.png\";s:5:\"width\";i:148;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"iPhoneCart-skewed-444x480.png\";s:5:\"width\";i:444;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"iPhoneCart-skewed-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"iPhoneCart-skewed-444x588.png\";s:5:\"width\";i:444;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"iPhoneCart-skewed-444x588.png\";s:5:\"width\";i:444;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23675,2714,'_wp_attached_file','2017/07/goldengate_2.png'),
(23676,2714,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:422;s:4:\"file\";s:24:\"2017/07/goldengate_2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"goldengate_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"goldengate_2-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"goldengate_2-768x203.png\";s:5:\"width\";i:768;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"goldengate_2-1024x270.png\";s:5:\"width\";i:1024;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"goldengate_2-600x422.png\";s:5:\"width\";i:600;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"goldengate_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"goldengate_2-894x422.png\";s:5:\"width\";i:894;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"goldengate_2-1200x422.png\";s:5:\"width\";i:1200;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23691,2716,'_wp_attached_file','2017/07/iPadWhiteSkewedPOS_2.png'),
(23692,2716,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:672;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2017/07/iPadWhiteSkewedPOS_2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"iPadWhiteSkewedPOS_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"iPadWhiteSkewedPOS_2-300x223.png\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:32:\"iPadWhiteSkewedPOS_2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:32:\"iPadWhiteSkewedPOS_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23693,2717,'_wp_attached_file','2017/07/iPadWhiteSkewedPOS_3.png'),
(23694,2717,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:672;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2017/07/iPadWhiteSkewedPOS_3.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"iPadWhiteSkewedPOS_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"iPadWhiteSkewedPOS_3-300x223.png\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:32:\"iPadWhiteSkewedPOS_3-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:32:\"iPadWhiteSkewedPOS_3-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23695,2718,'_wp_attached_file','2017/07/PCmonitorWithACM_3.png'),
(23696,2718,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:498;s:4:\"file\";s:30:\"2017/07/PCmonitorWithACM_3.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_3-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_3-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"PCmonitorWithACM_3-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_3-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_3-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_3-894x498.png\";s:5:\"width\";i:894;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23697,2719,'_wp_attached_file','2017/07/PCmonitorWithACM_4.png'),
(23698,2719,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:498;s:4:\"file\";s:30:\"2017/07/PCmonitorWithACM_4.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_4-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_4-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"PCmonitorWithACM_4-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_4-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_4-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"PCmonitorWithACM_4-894x498.png\";s:5:\"width\";i:894;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23771,2721,'_wp_attached_file','2017/08/emailtracking.png'),
(23772,2721,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:500;s:4:\"file\";s:25:\"2017/08/emailtracking.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"emailtracking-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"emailtracking-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"emailtracking-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"emailtracking-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:25:\"emailtracking-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"emailtracking-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:25:\"emailtracking-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:26:\"emailtracking-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23773,2722,'_edit_last','2'),
(23774,2722,'background_image','https://activeclubsolutions.net/wp-content/uploads/2018/10/flyingemail.png'),
(23775,2722,'background_color',''),
(23776,2722,'background_video_mp4',''),
(23777,2722,'background_video_ogv',''),
(23778,2722,'background_video_webm',''),
(23779,2722,'background_image_parallax','no'),
(23780,2722,'layer_1','<div style=\"margin: auto; padding: 25px 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; text-transform: uppercase; font-family: \'Cabin Condensed\'; font-size: 55px; font-weight: 700; line-height: 65px;\">E-mail Tracking and Analytics\r\n</span>\r\n\r\n<img src=\"/wp-content/uploads/2017/08/emailwheel_5.png\" alt=\"Email Tracking\" width=\"400\" height=\"310\" class=\"alignright size-full\" />\r\n</div>'),
(23781,2722,'layer_index_1','active'),
(23782,2722,'layer_delay_1','300'),
(23783,2722,'layer_duration_1','600'),
(23784,2722,'layer_opacity_1','1'),
(23785,2722,'layer_zindex_1','1'),
(23786,2722,'layer_easing_1','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(23787,2722,'layer_direction_1','top'),
(23788,2722,'layer_posx_1','0'),
(23789,2722,'layer_posy_1','20'),
(23790,2722,'layer_2','<div style=\"margin: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 24px; font-weight: 500; line-height: 26px;\">&#10003; dive into the details of all the outbound messages</span>\r\n</div>\r\n<div style=\"margin-left: 26px; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 24px; font-weight: 500; line-height: 26px;\">delivered, opened, clicked, and failed</span>\r\n</div>\r\n'),
(23791,2722,'layer_index_2','active'),
(23792,2722,'layer_delay_2','1000'),
(23793,2722,'layer_duration_2','600'),
(23794,2722,'layer_opacity_2','1'),
(23795,2722,'layer_zindex_2','1'),
(23796,2722,'layer_easing_2','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(23797,2722,'layer_direction_2','bottom'),
(23798,2722,'layer_posx_2','0'),
(23799,2722,'layer_posy_2','150'),
(23800,2722,'layer_3','<div style=\"margin: auto; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 24px; font-weight: 500; line-height: 26px;\">&#10003; up-to-the-minute updates in real-time built into the software</span>\r\n</div>\r\n'),
(23801,2722,'layer_index_3','active'),
(23802,2722,'layer_delay_3','3500'),
(23803,2722,'layer_duration_3','600'),
(23804,2722,'layer_opacity_3','1'),
(23805,2722,'layer_zindex_3','1'),
(23806,2722,'layer_easing_3','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(23807,2722,'layer_direction_3','bottom'),
(23808,2722,'layer_posx_3','0'),
(23809,2722,'layer_posy_3','220'),
(23810,2722,'layer_4','<div style=\"margin: 0 0 0 0; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 24px; font-weight: 500; line-height: 26px;\">&#10003; tracks complaints, unsubscribes, and critical bounce</span>\r\n</div>\r\n\r\n<div style=\"margin-left: 26px; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 24px; font-weight: 500; line-height: 26px;\">processing information</span>\r\n</div>'),
(23811,2722,'layer_index_4','active'),
(23812,2722,'layer_delay_4','5000'),
(23813,2722,'layer_duration_4','600'),
(23814,2722,'layer_opacity_4','1'),
(23815,2722,'layer_zindex_4','1'),
(23816,2722,'layer_easing_4','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(23817,2722,'layer_direction_4','bottom'),
(23818,2722,'layer_posx_4','0'),
(23819,2722,'layer_posy_4','265'),
(23820,2722,'layer_5','<div style=\"margin: auto; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 24px; font-weight: 500; line-height: 26px;\">&#10003; tracks revenue generation resulting from e-mail marketing campaigns</span>\r\n\r\n<div style=\"margin-top: 26px; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 24px; font-weight: 500; line-height: 26px;\">&#10003; schedule e-mail campaigns</span><\r\n\r\n<div style=\"margin-top: 26px; width: 1200px;\">\r\n<span style=\"color: #fff; font-size: 24px; font-weight: 500; line-height: 26px;\">&#10003; search based delivery</span></div>\r\n\r\n'),
(23821,2722,'layer_index_5','active'),
(23822,2722,'layer_delay_5','6500'),
(23823,2722,'layer_duration_5','600'),
(23824,2722,'layer_opacity_5','1'),
(23825,2722,'layer_zindex_5','1'),
(23826,2722,'layer_easing_5','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(23827,2722,'layer_direction_5','bottom'),
(23828,2722,'layer_posx_5','0'),
(23829,2722,'layer_posy_5','340'),
(23830,2722,'layer_6',''),
(23831,2722,'layer_index_6','active'),
(23832,2722,'layer_delay_6','500'),
(23833,2722,'layer_duration_6','800'),
(23834,2722,'layer_opacity_6','1'),
(23835,2722,'layer_zindex_6','1'),
(23836,2722,'layer_easing_6','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(23837,2722,'layer_direction_6','right'),
(23838,2722,'layer_posx_6','0'),
(23839,2722,'layer_posy_6','0'),
(23840,2722,'layer_7','<div style=\"margin: auto; width: 1200px;\">\r\n\r\n<a class=\"button large button-icon\" style=\"border: none;\" href=\"/winery-pos-features/marketing-crm-customer-service/\" target=\"_self\">Learn More</a><a class=\"button large button-icon\" style=\"border: none;\" href=\"/winery-pos-features/\" target=\"_self\">All Features</a>\r\n\r\n</div>'),
(23841,2722,'layer_index_7',''),
(23842,2722,'layer_delay_7','5500'),
(23843,2722,'layer_duration_7','600'),
(23844,2722,'layer_opacity_7','1'),
(23845,2722,'layer_zindex_7','1'),
(23846,2722,'layer_easing_7','cubic-bezier(0.250, 0.250, 0.750, 0.750)'),
(23847,2722,'layer_direction_7','bottom'),
(23848,2722,'layer_posx_7','300'),
(23849,2722,'layer_posy_7','150'),
(23850,2722,'_yoast_wpseo_content_score','30'),
(23851,2722,'_edit_lock','1567493367:2'),
(23852,2722,'_publicize_pending','1'),
(23855,2725,'_wp_attached_file','2017/08/emailtracking_3.png'),
(23856,2725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2017/08/emailtracking_3.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"emailtracking_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"emailtracking_3-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"emailtracking_3-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"emailtracking_3-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"emailtracking_3-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"emailtracking_3-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"emailtracking_3-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"emailtracking_3-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23875,2727,'_wp_attached_file','2017/08/emailtracking_5.png'),
(23876,2727,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2017/08/emailtracking_5.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"emailtracking_5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"emailtracking_5-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"emailtracking_5-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"emailtracking_5-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"emailtracking_5-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"emailtracking_5-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"emailtracking_5-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"emailtracking_5-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23883,2729,'_wp_attached_file','2017/08/emaileventwindow.png'),
(23884,2729,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1267;s:6:\"height\";i:778;s:4:\"file\";s:28:\"2017/08/emaileventwindow.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"emaileventwindow-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"emaileventwindow-300x184.png\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"emaileventwindow-768x472.png\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"emaileventwindow-1024x629.png\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"emaileventwindow-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"emaileventwindow-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"emaileventwindow-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"emaileventwindow-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23888,2731,'_wp_attached_file','2017/08/marketing.png'),
(23889,2731,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2017/08/marketing.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"marketing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"marketing-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"marketing-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"marketing-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"marketing-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"marketing-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"marketing-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"marketing-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23890,2732,'_wp_attached_file','2017/08/marketing_2.png'),
(23891,2732,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2017/08/marketing_2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"marketing_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"marketing_2-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"marketing_2-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"marketing_2-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"marketing_2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"marketing_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"marketing_2-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"marketing_2-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(23958,2733,'_edit_last','2'),
(23959,2733,'_yoast_wpseo_primary_category',''),
(23960,2733,'ninzio_post_audio_mp3',''),
(23961,2733,'ninzio_post_audio_ogg',''),
(23962,2733,'ninzio_post_audio_embed',''),
(23963,2733,'ninzio_post_video_mp4',''),
(23964,2733,'ninzio_post_video_ogv',''),
(23965,2733,'ninzio_post_video_webm',''),
(23966,2733,'ninzio_post_video_embed',''),
(23967,2733,'ninzio_post_video_poster',''),
(23968,2733,'ninzio_post_link_url',''),
(23969,2733,'ninzio_post_image_url',''),
(23970,2733,'ninzio_post_image_description',''),
(23971,2733,'ninzio_post_status_author',''),
(23972,2733,'ninzio_post_quote_author',''),
(23973,2733,'ninzio_post_featured_media','yes'),
(23974,2733,'_yoast_wpseo_content_score','60'),
(23975,2733,'_edit_lock','1507760649:2'),
(23978,2733,'_wpas_done_all','1'),
(24078,2738,'_edit_last','2'),
(24079,2738,'_wp_page_template','default'),
(24080,2738,'ninzio_page_subtitle',''),
(24081,2738,'ninzio_page_sidebar','none'),
(24082,2738,'ninzio_page_title_background_color','#ffffff'),
(24083,2738,'ninzio_page_title_background_color_opacity','0.25'),
(24084,2738,'ninzio_page_title_text_color','#000000'),
(24085,2738,'ninzio_page_subtitle_background_color',''),
(24086,2738,'ninzio_page_subtitle_background_color_opacity','1'),
(24087,2738,'ninzio_page_subtitle_text_color','#444444'),
(24088,2738,'ninzio_page_title_section_background_color','#f6f6f6'),
(24089,2738,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/03/gatewaygraphic_2.png'),
(24090,2738,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(24091,2738,'ninzio_page_title_section_background_image_position','center_center'),
(24092,2738,'ninzio_page_title_section_background_image_attachment','scroll'),
(24093,2738,'ninzio_page_title_section_background_image_size','auto'),
(24094,2738,'ninzio_one_page','no'),
(24095,2738,'ninzio_slider','no'),
(24096,2738,'ninzio_page_layout','no'),
(24097,2738,'ninzio_page_twitter','no'),
(24098,2738,'ninzio_page_padding_top','yes'),
(24099,2738,'ninzio_rich_header','yes'),
(24100,2738,'ninzio_page_title_section_background_image_parallax','no'),
(24101,2738,'_yoast_wpseo_content_score','90'),
(24102,2738,'_edit_lock','1567488521:2'),
(24105,2738,'_publicize_pending','1'),
(24228,2762,'_wp_attached_file','2017/08/emailwheel_4.png'),
(24229,2762,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:452;s:6:\"height\";i:411;s:4:\"file\";s:24:\"2017/08/emailwheel_4.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"emailwheel_4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"emailwheel_4-300x273.png\";s:5:\"width\";i:300;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"emailwheel_4-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(24231,2763,'_wp_attached_file','2017/08/emailwheel_5.png'),
(24232,2763,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:452;s:6:\"height\";i:411;s:4:\"file\";s:24:\"2017/08/emailwheel_5.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"emailwheel_5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"emailwheel_5-300x273.png\";s:5:\"width\";i:300;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"emailwheel_5-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(24274,2766,'_edit_last','21'),
(24275,2766,'_wp_page_template','default'),
(24276,2766,'_publicize_pending','1'),
(24277,2766,'ninzio_page_subtitle',''),
(24278,2766,'ninzio_page_sidebar','none'),
(24279,2766,'ninzio_page_title_background_color',''),
(24280,2766,'ninzio_page_title_background_color_opacity','1'),
(24281,2766,'ninzio_page_title_text_color','#ffffff'),
(24282,2766,'ninzio_page_subtitle_background_color',''),
(24283,2766,'ninzio_page_subtitle_background_color_opacity','1'),
(24284,2766,'ninzio_page_subtitle_text_color','#444444'),
(24285,2766,'ninzio_page_title_section_background_color','#f6f6f6'),
(24286,2766,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/02/Beachwithwine.png'),
(24287,2766,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(24288,2766,'ninzio_page_title_section_background_image_position','center_center'),
(24289,2766,'ninzio_page_title_section_background_image_attachment','scroll'),
(24290,2766,'ninzio_page_title_section_background_image_size','auto'),
(24291,2766,'ninzio_one_page','no'),
(24292,2766,'ninzio_slider','no'),
(24293,2766,'ninzio_page_layout','no'),
(24294,2766,'ninzio_page_twitter','no'),
(24295,2766,'ninzio_page_padding_top','yes'),
(24296,2766,'ninzio_rich_header','yes'),
(24297,2766,'ninzio_page_title_section_background_image_parallax','no'),
(24298,2766,'_yoast_wpseo_content_score','30'),
(24299,2766,'_edit_lock','1718224074:21'),
(24301,2772,'_edit_last','2'),
(24302,2772,'_wp_page_template','default'),
(24303,2772,'_publicize_pending','1'),
(24304,2772,'ninzio_page_subtitle',''),
(24305,2772,'ninzio_page_sidebar','none'),
(24306,2772,'ninzio_page_title_background_color',''),
(24307,2772,'ninzio_page_title_background_color_opacity','1'),
(24308,2772,'ninzio_page_title_text_color','#ffffff'),
(24309,2772,'ninzio_page_subtitle_background_color',''),
(24310,2772,'ninzio_page_subtitle_background_color_opacity','1'),
(24311,2772,'ninzio_page_subtitle_text_color','#444444'),
(24312,2772,'ninzio_page_title_section_background_color','#f6f6f6'),
(24313,2772,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/05/header71.jpg'),
(24314,2772,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(24315,2772,'ninzio_page_title_section_background_image_position','left_top'),
(24316,2772,'ninzio_page_title_section_background_image_attachment','scroll'),
(24317,2772,'ninzio_page_title_section_background_image_size','auto'),
(24318,2772,'ninzio_one_page','no'),
(24319,2772,'ninzio_slider','no'),
(24320,2772,'ninzio_page_layout','yes'),
(24321,2772,'ninzio_page_twitter','no'),
(24322,2772,'ninzio_page_padding_top','yes'),
(24323,2772,'ninzio_rich_header','no'),
(24324,2772,'ninzio_page_title_section_background_image_parallax','no'),
(24325,2772,'_yoast_wpseo_content_score','30'),
(24326,2772,'_edit_lock','1639496557:2'),
(24328,2774,'_edit_last','2'),
(24329,2774,'_wp_page_template','default'),
(24330,2774,'_publicize_pending','1'),
(24331,2774,'ninzio_page_subtitle',''),
(24332,2774,'ninzio_page_sidebar','none'),
(24333,2774,'ninzio_page_title_background_color',''),
(24334,2774,'ninzio_page_title_background_color_opacity','1'),
(24335,2774,'ninzio_page_title_text_color','#ffffff'),
(24336,2774,'ninzio_page_subtitle_background_color',''),
(24337,2774,'ninzio_page_subtitle_background_color_opacity','1'),
(24338,2774,'ninzio_page_subtitle_text_color','#444444'),
(24339,2774,'ninzio_page_title_section_background_color','#f6f6f6'),
(24340,2774,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/header13.jpg'),
(24341,2774,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(24342,2774,'ninzio_page_title_section_background_image_position','center_center'),
(24343,2774,'ninzio_page_title_section_background_image_attachment','scroll'),
(24344,2774,'ninzio_page_title_section_background_image_size','auto'),
(24345,2774,'ninzio_one_page','no'),
(24346,2774,'ninzio_slider','no'),
(24347,2774,'ninzio_page_layout','yes'),
(24348,2774,'ninzio_page_twitter','no'),
(24349,2774,'ninzio_page_padding_top','yes'),
(24350,2774,'ninzio_rich_header','no'),
(24351,2774,'ninzio_page_title_section_background_image_parallax','no'),
(24352,2774,'_yoast_wpseo_content_score','30'),
(24353,2774,'_edit_lock','1634668252:2'),
(24355,2776,'_edit_last','2'),
(24356,2776,'_wp_page_template','default'),
(24357,2776,'_publicize_pending','1'),
(24358,2776,'ninzio_page_subtitle',''),
(24359,2776,'ninzio_page_sidebar','none'),
(24360,2776,'ninzio_page_title_background_color',''),
(24361,2776,'ninzio_page_title_background_color_opacity','1'),
(24362,2776,'ninzio_page_title_text_color','#ffffff'),
(24363,2776,'ninzio_page_subtitle_background_color',''),
(24364,2776,'ninzio_page_subtitle_background_color_opacity','1'),
(24365,2776,'ninzio_page_subtitle_text_color','#444444'),
(24366,2776,'ninzio_page_title_section_background_color','#f6f6f6'),
(24367,2776,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/05/Loginbackground_1.png'),
(24368,2776,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(24369,2776,'ninzio_page_title_section_background_image_position','center_center'),
(24370,2776,'ninzio_page_title_section_background_image_attachment','scroll'),
(24371,2776,'ninzio_page_title_section_background_image_size','auto'),
(24372,2776,'ninzio_one_page','no'),
(24373,2776,'ninzio_slider','no'),
(24374,2776,'ninzio_page_layout','yes'),
(24375,2776,'ninzio_page_twitter','no'),
(24376,2776,'ninzio_page_padding_top','yes'),
(24377,2776,'ninzio_rich_header','no'),
(24378,2776,'ninzio_page_title_section_background_image_parallax','no'),
(24379,2776,'_yoast_wpseo_content_score','30'),
(24380,2776,'_edit_lock','1634665412:2'),
(24504,2782,'_edit_last','2'),
(24505,2782,'_wp_page_template','default'),
(24506,2782,'_publicize_pending','1'),
(24507,2782,'ninzio_page_subtitle',''),
(24508,2782,'ninzio_page_sidebar','none'),
(24509,2782,'ninzio_page_title_background_color',''),
(24510,2782,'ninzio_page_title_background_color_opacity','1'),
(24511,2782,'ninzio_page_title_text_color','#cccccc'),
(24512,2782,'ninzio_page_subtitle_background_color',''),
(24513,2782,'ninzio_page_subtitle_background_color_opacity','1'),
(24514,2782,'ninzio_page_subtitle_text_color','#444444'),
(24515,2782,'ninzio_page_title_section_background_color','#f6f6f6'),
(24516,2782,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/08/2-bg.jpg'),
(24517,2782,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(24518,2782,'ninzio_page_title_section_background_image_position','center_center'),
(24519,2782,'ninzio_page_title_section_background_image_attachment','scroll'),
(24520,2782,'ninzio_page_title_section_background_image_size','auto'),
(24521,2782,'ninzio_one_page','no'),
(24522,2782,'ninzio_slider','yes'),
(24523,2782,'ninzio_page_layout','no'),
(24524,2782,'ninzio_page_twitter','no'),
(24525,2782,'ninzio_page_padding_top','yes'),
(24526,2782,'ninzio_rich_header','yes'),
(24527,2782,'ninzio_page_title_section_background_image_parallax','no'),
(24528,2782,'_yoast_wpseo_content_score','30'),
(24529,2782,'_edit_lock','1522297718:2'),
(24594,2787,'_wp_attached_file','2017/09/integrations_11.png'),
(24595,2787,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:498;s:4:\"file\";s:27:\"2017/09/integrations_11.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"integrations_11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"integrations_11-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"integrations_11-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"integrations_11-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"integrations_11-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"integrations_11-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"integrations_11-894x498.png\";s:5:\"width\";i:894;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(24816,2795,'_edit_lock','1545012204:2'),
(24818,2795,'_edit_last','2'),
(24819,2795,'_wp_page_template','default'),
(24820,2795,'ninzio_page_subtitle',''),
(24821,2795,'ninzio_page_sidebar','none'),
(24822,2795,'ninzio_page_title_background_color','#ffffff'),
(24823,2795,'ninzio_page_title_background_color_opacity','0.1'),
(24824,2795,'ninzio_page_title_text_color','#ffffff'),
(24825,2795,'ninzio_page_subtitle_background_color','#ffffff'),
(24826,2795,'ninzio_page_subtitle_background_color_opacity','1'),
(24827,2795,'ninzio_page_subtitle_text_color','#444444'),
(24828,2795,'ninzio_page_title_section_background_color','#ffffff'),
(24829,2795,'ninzio_page_title_section_background_image',''),
(24830,2795,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(24831,2795,'ninzio_page_title_section_background_image_position','center_center'),
(24832,2795,'ninzio_page_title_section_background_image_attachment','scroll'),
(24833,2795,'ninzio_page_title_section_background_image_size','cover'),
(24834,2795,'ninzio_one_page','no'),
(24835,2795,'ninzio_slider','no'),
(24836,2795,'ninzio_page_layout','yes'),
(24837,2795,'ninzio_page_twitter','no'),
(24838,2795,'ninzio_page_padding_top','yes'),
(24839,2795,'ninzio_rich_header','no'),
(24840,2795,'ninzio_page_title_section_background_image_parallax','no'),
(24841,2795,'_yoast_wpseo_content_score','30'),
(24851,2795,'_publicize_pending','1'),
(24877,2806,'_wp_attached_file','2017/09/running-man_1.png'),
(24878,2806,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:365;s:4:\"file\";s:25:\"2017/09/running-man_1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"running-man_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"running-man_1-271x300.png\";s:5:\"width\";i:271;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:25:\"running-man_1-330x300.png\";s:5:\"width\";i:330;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(24998,2813,'_wp_attached_file','2017/09/iPadProductDetail.png'),
(24999,2813,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1235;s:6:\"height\";i:874;s:4:\"file\";s:29:\"2017/09/iPadProductDetail.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"iPadProductDetail-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"iPadProductDetail-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"iPadProductDetail-768x544.png\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"iPadProductDetail-1024x725.png\";s:5:\"width\";i:1024;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"iPadProductDetail-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"iPadProductDetail-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"iPadProductDetail-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"iPadProductDetail-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25021,2816,'_edit_lock','1718223800:21'),
(25022,2816,'_edit_last','2'),
(25024,2816,'_wp_page_template','default'),
(25025,2816,'_publicize_pending','1'),
(25026,2816,'ninzio_page_subtitle',''),
(25027,2816,'ninzio_page_sidebar','none'),
(25028,2816,'ninzio_page_title_background_color',''),
(25029,2816,'ninzio_page_title_background_color_opacity','1'),
(25030,2816,'ninzio_page_title_text_color','#444444'),
(25031,2816,'ninzio_page_subtitle_background_color',''),
(25032,2816,'ninzio_page_subtitle_background_color_opacity','1'),
(25033,2816,'ninzio_page_subtitle_text_color','#444444'),
(25034,2816,'ninzio_page_title_section_background_color','#f6f6f6'),
(25035,2816,'ninzio_page_title_section_background_image',''),
(25036,2816,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(25037,2816,'ninzio_page_title_section_background_image_position','left_top'),
(25038,2816,'ninzio_page_title_section_background_image_attachment','scroll'),
(25039,2816,'ninzio_page_title_section_background_image_size','auto'),
(25040,2816,'ninzio_one_page','no'),
(25041,2816,'ninzio_slider','no'),
(25042,2816,'ninzio_page_layout','yes'),
(25043,2816,'ninzio_page_twitter','no'),
(25044,2816,'ninzio_page_padding_top','yes'),
(25045,2816,'ninzio_rich_header','no'),
(25046,2816,'ninzio_page_title_section_background_image_parallax','no'),
(25047,2816,'_yoast_wpseo_content_score','30'),
(25057,2819,'_menu_item_type','post_type'),
(25058,2819,'_menu_item_menu_item_parent','1444'),
(25059,2819,'_menu_item_object_id','2816'),
(25060,2819,'_menu_item_object','page'),
(25061,2819,'_menu_item_target',''),
(25062,2819,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(25063,2819,'_menu_item_xfn',''),
(25064,2819,'_menu_item_url',''),
(25066,2819,'_publicize_pending','1'),
(25073,2820,'_wp_attached_file','2017/09/handholdingglobe.png'),
(25074,2820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:322;s:4:\"file\";s:28:\"2017/09/handholdingglobe.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"handholdingglobe-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"handholdingglobe-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"handholdingglobe-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25082,2824,'_wp_attached_file','2017/09/handholdingglobe_3.png'),
(25083,2824,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:322;s:4:\"file\";s:30:\"2017/09/handholdingglobe_3.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"handholdingglobe_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"handholdingglobe_3-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"handholdingglobe_3-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25271,2852,'_wp_attached_file','2017/10/goldengatenocars.png'),
(25272,2852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:422;s:4:\"file\";s:28:\"2017/10/goldengatenocars.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"goldengatenocars-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"goldengatenocars-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"goldengatenocars-768x203.png\";s:5:\"width\";i:768;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"goldengatenocars-1024x270.png\";s:5:\"width\";i:1024;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"goldengatenocars-600x422.png\";s:5:\"width\";i:600;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"goldengatenocars-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"goldengatenocars-894x422.png\";s:5:\"width\";i:894;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"goldengatenocars-1200x422.png\";s:5:\"width\";i:1200;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25459,2856,'_publicize_pending','1'),
(25460,2856,'_form','<p>Name (required)<br>\n    [text* your-name] </p>\n\n<p>Email (required)<br>\n    [email* your-email] </p>\n\n<p>Phone (required)<br>\n    [text* phone]</p>\n\n<p>Subject<br>\n    [text subject]</p>\n\n<p>Message (required)<br>\n    [textarea* message] </p>\n\n<p>Enter the characters below (required)<br>\n    [captchac captcha-32 size:s]<br>\n    [captchar captcha-32]</p>\n\n<p>[submit \"Send\"]</p>'),
(25461,2856,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:49:\"[_site_title] <wordpress@activeclubsolutions.net>\";s:9:\"recipient\";s:28:\"info@activeclubsolutions.net\";s:4:\"body\";s:313:\"<span style=\"font-family: Calibri; font-size: 18px;\">\n\nFrom: [your-name] <[your-email]>\n\nPhone: [phone]\n\nSubject: [subject]\n\nMessage:\n\n[message]\n\n<hr>\n\nThis e-mail was sent from the ActiveClubSolutions.com \"Contact Us\" form\n\n<img src=\"http://secureclub.net/images/activeclubmgmt/Signupinwinery150.png\" />\n\n</span>\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:1;s:13:\"exclude_blank\";b:0;}'),
(25462,2856,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:64:\"A message from Active Club Solutions regarding your demo request\";s:6:\"sender\";s:28:\"Info@activeclubsolutions.net\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:223:\"Message Body:\nThank you, we will contact you shortly.\n--\nThis e-mail was sent from a contact form on Active Club Solutions Wine Club Management Software Winery Vineyard Online Shopping Cart (https://activeclubsolutions.net)\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(25463,2856,'_messages','a:23:{s:12:\"mail_sent_ok\";s:39:\"Thank you! We will contact you shortly.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:31:\"Please fill the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(25464,2856,'_additional_settings',''),
(25465,2856,'_locale','en_US'),
(25469,2857,'_edit_lock','1513382898:2'),
(25470,2857,'_edit_last','2'),
(25471,2857,'_yoast_wpseo_primary_category','1'),
(25472,2857,'ninzio_post_audio_mp3',''),
(25473,2857,'ninzio_post_audio_ogg',''),
(25474,2857,'ninzio_post_audio_embed',''),
(25475,2857,'ninzio_post_video_mp4',''),
(25476,2857,'ninzio_post_video_ogv',''),
(25477,2857,'ninzio_post_video_webm',''),
(25478,2857,'ninzio_post_video_embed',''),
(25479,2857,'ninzio_post_video_poster',''),
(25480,2857,'ninzio_post_link_url',''),
(25481,2857,'ninzio_post_image_url',''),
(25482,2857,'ninzio_post_image_description',''),
(25483,2857,'ninzio_post_status_author',''),
(25484,2857,'ninzio_post_quote_author',''),
(25485,2857,'ninzio_post_featured_media','yes'),
(25486,2857,'_yoast_wpseo_content_score','30'),
(25489,2857,'_wpas_done_all','1'),
(25546,2860,'_edit_lock','1718223957:21'),
(25547,2860,'_edit_last','2'),
(25548,2860,'_wp_page_template','default'),
(25549,2860,'_publicize_pending','1'),
(25550,2860,'ninzio_page_subtitle',''),
(25551,2860,'ninzio_page_sidebar','none'),
(25552,2860,'ninzio_page_title_background_color',''),
(25553,2860,'ninzio_page_title_background_color_opacity','1'),
(25554,2860,'ninzio_page_title_text_color','#ffffff'),
(25555,2860,'ninzio_page_subtitle_background_color',''),
(25556,2860,'ninzio_page_subtitle_background_color_opacity','1'),
(25557,2860,'ninzio_page_subtitle_text_color','#ffffff'),
(25558,2860,'ninzio_page_title_section_background_color','#f6f6f6'),
(25559,2860,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/10/Tutorial_5.png'),
(25560,2860,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(25561,2860,'ninzio_page_title_section_background_image_position','center_center'),
(25562,2860,'ninzio_page_title_section_background_image_attachment','scroll'),
(25563,2860,'ninzio_page_title_section_background_image_size','auto'),
(25564,2860,'ninzio_one_page','no'),
(25565,2860,'ninzio_slider','no'),
(25566,2860,'ninzio_page_layout','yes'),
(25567,2860,'ninzio_page_twitter','no'),
(25568,2860,'ninzio_page_padding_top','yes'),
(25569,2860,'ninzio_rich_header','yes'),
(25570,2860,'ninzio_page_title_section_background_image_parallax','no'),
(25571,2860,'_yoast_wpseo_content_score','30'),
(25581,2865,'_menu_item_type','post_type'),
(25582,2865,'_menu_item_menu_item_parent','1935'),
(25583,2865,'_menu_item_object_id','2860'),
(25584,2865,'_menu_item_object','page'),
(25585,2865,'_menu_item_target',''),
(25586,2865,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(25587,2865,'_menu_item_xfn',''),
(25588,2865,'_menu_item_url',''),
(25590,2865,'_publicize_pending','1'),
(25612,2867,'_wp_attached_file','2017/10/Tutorial_4.png'),
(25613,2867,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1620;s:6:\"height\";i:550;s:4:\"file\";s:22:\"2017/10/Tutorial_4.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Tutorial_4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Tutorial_4-300x102.png\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Tutorial_4-768x261.png\";s:5:\"width\";i:768;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Tutorial_4-1024x348.png\";s:5:\"width\";i:1024;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:22:\"Tutorial_4-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"Tutorial_4-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:22:\"Tutorial_4-894x550.png\";s:5:\"width\";i:894;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:23:\"Tutorial_4-1200x550.png\";s:5:\"width\";i:1200;s:6:\"height\";i:550;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25614,2868,'_wp_attached_file','2017/10/Tutorial_5.png'),
(25615,2868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2017/10/Tutorial_5.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Tutorial_5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Tutorial_5-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Tutorial_5-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Tutorial_5-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:22:\"Tutorial_5-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"Tutorial_5-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:22:\"Tutorial_5-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:23:\"Tutorial_5-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25619,2870,'_wp_attached_file','2017/10/emailtracking_7.png'),
(25620,2870,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2017/10/emailtracking_7.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"emailtracking_7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"emailtracking_7-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"emailtracking_7-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"emailtracking_7-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"emailtracking_7-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"emailtracking_7-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"emailtracking_7-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"emailtracking_7-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25621,2871,'_wp_attached_file','2017/10/golfcourselarge.png'),
(25622,2871,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:527;s:4:\"file\";s:27:\"2017/10/golfcourselarge.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"golfcourselarge-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"golfcourselarge-300x113.png\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"golfcourselarge-768x289.png\";s:5:\"width\";i:768;s:6:\"height\";i:289;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"golfcourselarge-1024x385.png\";s:5:\"width\";i:1024;s:6:\"height\";i:385;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"golfcourselarge-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"golfcourselarge-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"golfcourselarge-894x527.png\";s:5:\"width\";i:894;s:6:\"height\";i:527;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"golfcourselarge-1200x527.png\";s:5:\"width\";i:1200;s:6:\"height\";i:527;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25624,2872,'_wp_attached_file','2017/10/integrations_12.png'),
(25625,2872,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:498;s:4:\"file\";s:27:\"2017/10/integrations_12.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"integrations_12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"integrations_12-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"integrations_12-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"integrations_12-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"integrations_12-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"integrations_12-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"integrations_12-894x498.png\";s:5:\"width\";i:894;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25626,2874,'_wp_attached_file','2017/10/verticalresponse.png'),
(25627,2874,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:74;s:4:\"file\";s:28:\"2017/10/verticalresponse.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"verticalresponse-150x74.png\";s:5:\"width\";i:150;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25628,2875,'_wp_attached_file','2017/10/socketlabs-medium.png'),
(25629,2875,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:20;s:4:\"file\";s:29:\"2017/10/socketlabs-medium.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"socketlabs-medium-150x20.png\";s:5:\"width\";i:150;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25637,2880,'_wp_attached_file','2017/10/compliancebackground_1.png'),
(25638,2880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:500;s:4:\"file\";s:34:\"2017/10/compliancebackground_1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"compliancebackground_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"compliancebackground_1-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"compliancebackground_1-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"compliancebackground_1-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:34:\"compliancebackground_1-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:34:\"compliancebackground_1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:34:\"compliancebackground_1-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:35:\"compliancebackground_1-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25639,2881,'_wp_attached_file','2017/10/compliancebackground_2.png'),
(25640,2881,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:500;s:4:\"file\";s:34:\"2017/10/compliancebackground_2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"compliancebackground_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"compliancebackground_2-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"compliancebackground_2-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"compliancebackground_2-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:34:\"compliancebackground_2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:34:\"compliancebackground_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:34:\"compliancebackground_2-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:35:\"compliancebackground_2-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25643,2885,'_wp_attached_file','2017/10/pricing.png'),
(25644,2885,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1225;s:6:\"height\";i:272;s:4:\"file\";s:19:\"2017/10/pricing.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"pricing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"pricing-300x67.png\";s:5:\"width\";i:300;s:6:\"height\";i:67;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"pricing-768x171.png\";s:5:\"width\";i:768;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"pricing-1024x227.png\";s:5:\"width\";i:1024;s:6:\"height\";i:227;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:19:\"pricing-600x272.png\";s:5:\"width\";i:600;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:19:\"pricing-384x272.png\";s:5:\"width\";i:384;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:19:\"pricing-894x272.png\";s:5:\"width\";i:894;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:20:\"pricing-1200x272.png\";s:5:\"width\";i:1200;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25645,2887,'_wp_attached_file','2017/10/picewithmagnifyingglass.png'),
(25646,2887,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:35:\"2017/10/picewithmagnifyingglass.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"picewithmagnifyingglass-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"picewithmagnifyingglass-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:35:\"picewithmagnifyingglass-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(25690,2892,'_edit_lock','1510808829:2'),
(25691,2892,'_edit_last','2'),
(25694,2892,'_yoast_wpseo_primary_category',''),
(25695,2892,'ninzio_post_audio_mp3',''),
(25696,2892,'ninzio_post_audio_ogg',''),
(25697,2892,'ninzio_post_audio_embed',''),
(25698,2892,'ninzio_post_video_mp4',''),
(25699,2892,'ninzio_post_video_ogv',''),
(25700,2892,'ninzio_post_video_webm',''),
(25701,2892,'ninzio_post_video_embed',''),
(25702,2892,'ninzio_post_video_poster',''),
(25703,2892,'ninzio_post_link_url',''),
(25704,2892,'ninzio_post_image_url',''),
(25705,2892,'ninzio_post_image_description',''),
(25706,2892,'ninzio_post_status_author',''),
(25707,2892,'ninzio_post_quote_author',''),
(25708,2892,'ninzio_post_featured_media','yes'),
(25709,2892,'_yoast_wpseo_content_score','30'),
(25710,2892,'_wpas_done_all','1'),
(26246,2901,'_edit_lock','1510812898:2'),
(26247,2901,'_edit_last','2'),
(26248,2901,'_yoast_wpseo_primary_category',''),
(26249,2901,'ninzio_post_audio_mp3',''),
(26250,2901,'ninzio_post_audio_ogg',''),
(26251,2901,'ninzio_post_audio_embed',''),
(26252,2901,'ninzio_post_video_mp4',''),
(26253,2901,'ninzio_post_video_ogv',''),
(26254,2901,'ninzio_post_video_webm',''),
(26255,2901,'ninzio_post_video_embed',''),
(26256,2901,'ninzio_post_video_poster',''),
(26257,2901,'ninzio_post_link_url',''),
(26258,2901,'ninzio_post_image_url',''),
(26259,2901,'ninzio_post_image_description',''),
(26260,2901,'ninzio_post_status_author',''),
(26261,2901,'ninzio_post_quote_author',''),
(26262,2901,'ninzio_post_featured_media','yes'),
(26263,2901,'_yoast_wpseo_content_score','90'),
(26266,2901,'_wpas_done_all','1'),
(26475,2906,'_edit_lock','1512540625:2'),
(26476,2906,'_edit_last','2'),
(26479,2906,'_yoast_wpseo_primary_category','3'),
(26480,2906,'ninzio_post_audio_mp3',''),
(26481,2906,'ninzio_post_audio_ogg',''),
(26482,2906,'ninzio_post_audio_embed',''),
(26483,2906,'ninzio_post_video_mp4',''),
(26484,2906,'ninzio_post_video_ogv',''),
(26485,2906,'ninzio_post_video_webm',''),
(26486,2906,'ninzio_post_video_embed',''),
(26487,2906,'ninzio_post_video_poster',''),
(26488,2906,'ninzio_post_link_url',''),
(26489,2906,'ninzio_post_image_url',''),
(26490,2906,'ninzio_post_image_description',''),
(26491,2906,'ninzio_post_status_author',''),
(26492,2906,'ninzio_post_quote_author',''),
(26493,2906,'ninzio_post_featured_media','yes'),
(26494,2906,'_yoast_wpseo_content_score','60'),
(26495,2906,'_wpas_done_all','1'),
(26905,2910,'_wp_attached_file','2017/12/limecuda.png'),
(26906,2910,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:190;s:6:\"height\";i:84;s:4:\"file\";s:20:\"2017/12/limecuda.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"limecuda-150x84.png\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(26982,2913,'_edit_lock','1513382831:2'),
(26983,2913,'_edit_last','2'),
(26984,2913,'_yoast_wpseo_primary_category',''),
(26985,2913,'ninzio_post_audio_mp3',''),
(26986,2913,'ninzio_post_audio_ogg',''),
(26987,2913,'ninzio_post_audio_embed',''),
(26988,2913,'ninzio_post_video_mp4',''),
(26989,2913,'ninzio_post_video_ogv',''),
(26990,2913,'ninzio_post_video_webm',''),
(26991,2913,'ninzio_post_video_embed',''),
(26992,2913,'ninzio_post_video_poster',''),
(26993,2913,'ninzio_post_link_url',''),
(26994,2913,'ninzio_post_image_url',''),
(26995,2913,'ninzio_post_image_description',''),
(26996,2913,'ninzio_post_status_author',''),
(26997,2913,'ninzio_post_quote_author',''),
(26998,2913,'ninzio_post_featured_media','yes'),
(26999,2913,'_yoast_wpseo_content_score','60'),
(27002,2913,'_wpas_done_all','1'),
(27218,508,'_yoast_wpseo_focuskw_text_input','winery pos'),
(27219,508,'_yoast_wpseo_content_score','60'),
(27386,2922,'_wp_attached_file','2017/12/JoltStudios.png'),
(27387,2922,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:110;s:4:\"file\";s:23:\"2017/12/JoltStudios.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"JoltStudios-150x110.png\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(27682,2929,'_edit_lock','1546642615:10'),
(27683,2929,'_edit_last','2'),
(27684,2929,'_yoast_wpseo_primary_category','1'),
(27685,2929,'ninzio_post_audio_mp3',''),
(27686,2929,'ninzio_post_audio_ogg',''),
(27687,2929,'ninzio_post_audio_embed',''),
(27688,2929,'ninzio_post_video_mp4',''),
(27689,2929,'ninzio_post_video_ogv',''),
(27690,2929,'ninzio_post_video_webm',''),
(27691,2929,'ninzio_post_video_embed',''),
(27692,2929,'ninzio_post_video_poster',''),
(27693,2929,'ninzio_post_link_url',''),
(27694,2929,'ninzio_post_image_url',''),
(27695,2929,'ninzio_post_image_description',''),
(27696,2929,'ninzio_post_status_author',''),
(27697,2929,'ninzio_post_quote_author',''),
(27698,2929,'ninzio_post_featured_media','yes'),
(27699,2929,'_yoast_wpseo_content_score','30'),
(27702,2929,'_wpas_done_all','1'),
(27705,2933,'_wp_attached_file','2018/01/Debbie-Klimeck.jpg'),
(27706,2933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:26:\"2018/01/Debbie-Klimeck.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Debbie-Klimeck-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Debbie-Klimeck-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Debbie-Klimeck-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"Debbie-Klimeck-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"Debbie-Klimeck-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"Debbie-Klimeck-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:26:\"Debbie-Klimeck-960x588.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(27719,2938,'_wp_attached_file','2018/01/integrations_13.png'),
(27720,2938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:498;s:4:\"file\";s:27:\"2018/01/integrations_13.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"integrations_13-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"integrations_13-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"integrations_13-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"integrations_13-1024x498.png\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"integrations_13-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"integrations_13-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"integrations_13-894x498.png\";s:5:\"width\";i:894;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(27805,2940,'_wp_attached_file','2018/01/goldengatesunrise_1.png'),
(27806,2940,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:422;s:4:\"file\";s:31:\"2018/01/goldengatesunrise_1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"goldengatesunrise_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"goldengatesunrise_1-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"goldengatesunrise_1-768x203.png\";s:5:\"width\";i:768;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"goldengatesunrise_1-1024x270.png\";s:5:\"width\";i:1024;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:31:\"goldengatesunrise_1-600x422.png\";s:5:\"width\";i:600;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:31:\"goldengatesunrise_1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:31:\"goldengatesunrise_1-894x422.png\";s:5:\"width\";i:894;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:32:\"goldengatesunrise_1-1200x422.png\";s:5:\"width\";i:1200;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(27807,2942,'_wp_attached_file','2018/01/goldengatesunrise_2.png'),
(27808,2942,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:422;s:4:\"file\";s:31:\"2018/01/goldengatesunrise_2.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"goldengatesunrise_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"goldengatesunrise_2-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"goldengatesunrise_2-768x203.png\";s:5:\"width\";i:768;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"goldengatesunrise_2-1024x270.png\";s:5:\"width\";i:1024;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:31:\"goldengatesunrise_2-600x422.png\";s:5:\"width\";i:600;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:31:\"goldengatesunrise_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:31:\"goldengatesunrise_2-894x422.png\";s:5:\"width\";i:894;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:32:\"goldengatesunrise_2-1200x422.png\";s:5:\"width\";i:1200;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(27955,2945,'_edit_lock','1518576190:2'),
(27956,2945,'_edit_last','2'),
(27957,2945,'_wp_page_template','default'),
(27958,2945,'_publicize_pending','1'),
(27959,2945,'ninzio_page_subtitle',''),
(27960,2945,'ninzio_page_sidebar','none'),
(27961,2945,'ninzio_page_title_background_color',''),
(27962,2945,'ninzio_page_title_background_color_opacity','1'),
(27963,2945,'ninzio_page_title_text_color','#cccccc'),
(27964,2945,'ninzio_page_subtitle_background_color',''),
(27965,2945,'ninzio_page_subtitle_background_color_opacity','1'),
(27966,2945,'ninzio_page_subtitle_text_color','#444444'),
(27967,2945,'ninzio_page_title_section_background_color','#f6f6f6'),
(27968,2945,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/05/header31.jpg'),
(27969,2945,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(27970,2945,'ninzio_page_title_section_background_image_position','center_center'),
(27971,2945,'ninzio_page_title_section_background_image_attachment','scroll'),
(27972,2945,'ninzio_page_title_section_background_image_size','auto'),
(27973,2945,'ninzio_one_page','no'),
(27974,2945,'ninzio_slider','no'),
(27975,2945,'ninzio_page_layout','no'),
(27976,2945,'ninzio_page_twitter','no'),
(27977,2945,'ninzio_page_padding_top','yes'),
(27978,2945,'ninzio_rich_header','yes'),
(27979,2945,'ninzio_page_title_section_background_image_parallax','no'),
(27980,2945,'_yoast_wpseo_content_score','30'),
(28000,2948,'_edit_lock','1533344412:2'),
(28001,2948,'_edit_last','2'),
(28002,2948,'_wp_page_template','default'),
(28003,2948,'_publicize_pending','1'),
(28004,2948,'ninzio_page_subtitle',''),
(28005,2948,'ninzio_page_sidebar','none'),
(28006,2948,'ninzio_page_title_background_color',''),
(28007,2948,'ninzio_page_title_background_color_opacity','1'),
(28008,2948,'ninzio_page_title_text_color','#444444'),
(28009,2948,'ninzio_page_subtitle_background_color',''),
(28010,2948,'ninzio_page_subtitle_background_color_opacity','1'),
(28011,2948,'ninzio_page_subtitle_text_color','#444444'),
(28012,2948,'ninzio_page_title_section_background_color','#f6f6f6'),
(28013,2948,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/10/goldengatenocars.png'),
(28014,2948,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(28015,2948,'ninzio_page_title_section_background_image_position','center_center'),
(28016,2948,'ninzio_page_title_section_background_image_attachment','scroll'),
(28017,2948,'ninzio_page_title_section_background_image_size','auto'),
(28018,2948,'ninzio_one_page','no'),
(28019,2948,'ninzio_slider','no'),
(28020,2948,'ninzio_page_layout','yes'),
(28021,2948,'ninzio_page_twitter','no'),
(28022,2948,'ninzio_page_padding_top','yes'),
(28023,2948,'ninzio_rich_header','yes'),
(28024,2948,'ninzio_page_title_section_background_image_parallax','no'),
(28025,2948,'_yoast_wpseo_content_score','30'),
(28027,2950,'_edit_lock','1551155142:2'),
(28028,2950,'_edit_last','2'),
(28029,2950,'_wp_page_template','default'),
(28030,2950,'_publicize_pending','1'),
(28031,2950,'ninzio_page_subtitle',''),
(28032,2950,'ninzio_page_sidebar','none'),
(28033,2950,'ninzio_page_title_background_color',''),
(28034,2950,'ninzio_page_title_background_color_opacity','1'),
(28035,2950,'ninzio_page_title_text_color','#cccccc'),
(28036,2950,'ninzio_page_subtitle_background_color',''),
(28037,2950,'ninzio_page_subtitle_background_color_opacity','1'),
(28038,2950,'ninzio_page_subtitle_text_color','#444444'),
(28039,2950,'ninzio_page_title_section_background_color','#f6f6f6'),
(28040,2950,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/01/goldengatesunrise_2.png'),
(28041,2950,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(28042,2950,'ninzio_page_title_section_background_image_position','left_top'),
(28043,2950,'ninzio_page_title_section_background_image_attachment','scroll'),
(28044,2950,'ninzio_page_title_section_background_image_size','auto'),
(28045,2950,'ninzio_one_page','no'),
(28046,2950,'ninzio_slider','no'),
(28047,2950,'ninzio_page_layout','yes'),
(28048,2950,'ninzio_page_twitter','no'),
(28049,2950,'ninzio_page_padding_top','yes'),
(28050,2950,'ninzio_rich_header','no'),
(28051,2950,'ninzio_page_title_section_background_image_parallax','no'),
(28052,2950,'_yoast_wpseo_content_score','30'),
(28200,2957,'_edit_lock','1553143239:2'),
(28201,2957,'_edit_last','2'),
(28202,2957,'_wp_page_template','default'),
(28203,2957,'_publicize_pending','1'),
(28204,2957,'ninzio_page_subtitle',''),
(28205,2957,'ninzio_page_sidebar','none'),
(28206,2957,'ninzio_page_title_background_color',''),
(28207,2957,'ninzio_page_title_background_color_opacity','1'),
(28208,2957,'ninzio_page_title_text_color','#444444'),
(28209,2957,'ninzio_page_subtitle_background_color',''),
(28210,2957,'ninzio_page_subtitle_background_color_opacity','1'),
(28211,2957,'ninzio_page_subtitle_text_color','#444444'),
(28212,2957,'ninzio_page_title_section_background_color','#f6f6f6'),
(28213,2957,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/02/Beachwithwine.png'),
(28214,2957,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(28215,2957,'ninzio_page_title_section_background_image_position','center_center'),
(28216,2957,'ninzio_page_title_section_background_image_attachment','scroll'),
(28217,2957,'ninzio_page_title_section_background_image_size','auto'),
(28218,2957,'ninzio_one_page','no'),
(28219,2957,'ninzio_slider','no'),
(28220,2957,'ninzio_page_layout','no'),
(28221,2957,'ninzio_page_twitter','no'),
(28222,2957,'ninzio_page_padding_top','yes'),
(28223,2957,'ninzio_rich_header','yes'),
(28224,2957,'ninzio_page_title_section_background_image_parallax','no'),
(28225,2957,'_yoast_wpseo_content_score','60'),
(28247,2959,'_edit_lock','1553143195:2'),
(28248,2959,'_edit_last','2'),
(28249,2959,'_wp_page_template','default'),
(28250,2959,'_publicize_pending','1'),
(28251,2959,'ninzio_page_subtitle','Fully integrated with your Active Club Solutions\' Tasting Room POS , and Wine Club Software'),
(28252,2959,'ninzio_page_sidebar','none'),
(28253,2959,'ninzio_page_title_background_color',''),
(28254,2959,'ninzio_page_title_background_color_opacity','1'),
(28255,2959,'ninzio_page_title_text_color','#ffffff'),
(28256,2959,'ninzio_page_subtitle_background_color',''),
(28257,2959,'ninzio_page_subtitle_background_color_opacity','1'),
(28258,2959,'ninzio_page_subtitle_text_color','#ffffff'),
(28259,2959,'ninzio_page_title_section_background_color','#f6f6f6'),
(28260,2959,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/01/bottlesonthewall.png'),
(28261,2959,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(28262,2959,'ninzio_page_title_section_background_image_position','center_top'),
(28263,2959,'ninzio_page_title_section_background_image_attachment','scroll'),
(28264,2959,'ninzio_page_title_section_background_image_size','auto'),
(28265,2959,'ninzio_one_page','no'),
(28266,2959,'ninzio_slider','no'),
(28267,2959,'ninzio_page_layout','no'),
(28268,2959,'ninzio_page_twitter','no'),
(28269,2959,'ninzio_page_padding_top','yes'),
(28270,2959,'ninzio_rich_header','yes'),
(28271,2959,'ninzio_page_title_section_background_image_parallax','no'),
(28272,2959,'_yoast_wpseo_content_score','30'),
(28274,2964,'_edit_lock','1558066439:2'),
(28275,2964,'_edit_last','2'),
(28276,2964,'_wp_page_template','default'),
(28277,2964,'_publicize_pending','1'),
(28278,2964,'ninzio_page_subtitle',''),
(28279,2964,'ninzio_page_sidebar','none'),
(28280,2964,'ninzio_page_title_background_color',''),
(28281,2964,'ninzio_page_title_background_color_opacity','1'),
(28282,2964,'ninzio_page_title_text_color','#ffffff'),
(28283,2964,'ninzio_page_subtitle_background_color',''),
(28284,2964,'ninzio_page_subtitle_background_color_opacity','1'),
(28285,2964,'ninzio_page_subtitle_text_color','#ffffff'),
(28286,2964,'ninzio_page_title_section_background_color','#f6f6f6'),
(28287,2964,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/02/WinterVineyard.png'),
(28288,2964,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(28289,2964,'ninzio_page_title_section_background_image_position','center_center'),
(28290,2964,'ninzio_page_title_section_background_image_attachment','scroll'),
(28291,2964,'ninzio_page_title_section_background_image_size','auto'),
(28292,2964,'ninzio_one_page','no'),
(28293,2964,'ninzio_slider','no'),
(28294,2964,'ninzio_page_layout','no'),
(28295,2964,'ninzio_page_twitter','no'),
(28296,2964,'ninzio_page_padding_top','yes'),
(28297,2964,'ninzio_rich_header','yes'),
(28298,2964,'ninzio_page_title_section_background_image_parallax','no'),
(28299,2964,'_yoast_wpseo_content_score','60'),
(28300,2966,'_wp_attached_file','2018/02/WinterVineyard.png'),
(28301,2966,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:480;s:4:\"file\";s:26:\"2018/02/WinterVineyard.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"WinterVineyard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"WinterVineyard-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"WinterVineyard-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"WinterVineyard-1024x410.png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"WinterVineyard-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"WinterVineyard-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"WinterVineyard-894x480.png\";s:5:\"width\";i:894;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"WinterVineyard-1200x480.png\";s:5:\"width\";i:1200;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(28304,2967,'_wp_attached_file','2018/02/SpringVineyard.png'),
(28305,2967,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:486;s:4:\"file\";s:26:\"2018/02/SpringVineyard.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"SpringVineyard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"SpringVineyard-300x114.png\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"SpringVineyard-768x292.png\";s:5:\"width\";i:768;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"SpringVineyard-1024x389.png\";s:5:\"width\";i:1024;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"SpringVineyard-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"SpringVineyard-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"SpringVineyard-894x486.png\";s:5:\"width\";i:894;s:6:\"height\";i:486;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"SpringVineyard-1200x486.png\";s:5:\"width\";i:1200;s:6:\"height\";i:486;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(28306,2968,'_wp_attached_file','2018/02/SummerVineyard.png'),
(28307,2968,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1177;s:6:\"height\";i:480;s:4:\"file\";s:26:\"2018/02/SummerVineyard.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"SummerVineyard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"SummerVineyard-300x122.png\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"SummerVineyard-768x313.png\";s:5:\"width\";i:768;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"SummerVineyard-1024x418.png\";s:5:\"width\";i:1024;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"SummerVineyard-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"SummerVineyard-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"SummerVineyard-894x480.png\";s:5:\"width\";i:894;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(28308,2969,'_wp_attached_file','2018/02/AutumnVineyard.png'),
(28309,2969,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:477;s:4:\"file\";s:26:\"2018/02/AutumnVineyard.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"AutumnVineyard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"AutumnVineyard-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"AutumnVineyard-768x305.png\";s:5:\"width\";i:768;s:6:\"height\";i:305;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"AutumnVineyard-1024x407.png\";s:5:\"width\";i:1024;s:6:\"height\";i:407;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"AutumnVineyard-600x477.png\";s:5:\"width\";i:600;s:6:\"height\";i:477;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"AutumnVineyard-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"AutumnVineyard-894x477.png\";s:5:\"width\";i:894;s:6:\"height\";i:477;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"AutumnVineyard-1200x477.png\";s:5:\"width\";i:1200;s:6:\"height\";i:477;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(28311,2971,'_edit_lock','1534223010:2'),
(28312,2971,'_edit_last','2'),
(28313,2971,'_wp_page_template','default'),
(28314,2971,'_publicize_pending','1'),
(28315,2971,'ninzio_page_subtitle',''),
(28316,2971,'ninzio_page_sidebar','none'),
(28317,2971,'ninzio_page_title_background_color',''),
(28318,2971,'ninzio_page_title_background_color_opacity','1'),
(28319,2971,'ninzio_page_title_text_color','#ffffff'),
(28320,2971,'ninzio_page_subtitle_background_color',''),
(28321,2971,'ninzio_page_subtitle_background_color_opacity','1'),
(28322,2971,'ninzio_page_subtitle_text_color','#444444'),
(28323,2971,'ninzio_page_title_section_background_color','#f6f6f6'),
(28324,2971,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/02/SpringVineyard.png'),
(28325,2971,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(28326,2971,'ninzio_page_title_section_background_image_position','center_center'),
(28327,2971,'ninzio_page_title_section_background_image_attachment','scroll'),
(28328,2971,'ninzio_page_title_section_background_image_size','auto'),
(28329,2971,'ninzio_one_page','no'),
(28330,2971,'ninzio_slider','no'),
(28331,2971,'ninzio_page_layout','no'),
(28332,2971,'ninzio_page_twitter','no'),
(28333,2971,'ninzio_page_padding_top','yes'),
(28334,2971,'ninzio_rich_header','yes'),
(28335,2971,'ninzio_page_title_section_background_image_parallax','no'),
(28336,2971,'_yoast_wpseo_content_score','60'),
(28337,2974,'_edit_lock','1519105849:2'),
(28338,2974,'_edit_last','2'),
(28339,2974,'_wp_page_template','default'),
(28340,2974,'_publicize_pending','1'),
(28341,2974,'ninzio_page_subtitle',''),
(28342,2974,'ninzio_page_sidebar','none'),
(28343,2974,'ninzio_page_title_background_color',''),
(28344,2974,'ninzio_page_title_background_color_opacity','1'),
(28345,2974,'ninzio_page_title_text_color','#cccccc'),
(28346,2974,'ninzio_page_subtitle_background_color',''),
(28347,2974,'ninzio_page_subtitle_background_color_opacity','1'),
(28348,2974,'ninzio_page_subtitle_text_color','#444444'),
(28349,2974,'ninzio_page_title_section_background_color','#f6f6f6'),
(28350,2974,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/02/SummerVineyard.png'),
(28351,2974,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(28352,2974,'ninzio_page_title_section_background_image_position','center_center'),
(28353,2974,'ninzio_page_title_section_background_image_attachment','scroll'),
(28354,2974,'ninzio_page_title_section_background_image_size','auto'),
(28355,2974,'ninzio_one_page','no'),
(28356,2974,'ninzio_slider','no'),
(28357,2974,'ninzio_page_layout','no'),
(28358,2974,'ninzio_page_twitter','no'),
(28359,2974,'ninzio_page_padding_top','yes'),
(28360,2974,'ninzio_rich_header','yes'),
(28361,2974,'ninzio_page_title_section_background_image_parallax','no'),
(28362,2974,'_yoast_wpseo_content_score','60'),
(28363,2976,'_edit_lock','1553143317:2'),
(28364,2976,'_edit_last','2'),
(28365,2976,'_wp_page_template','default'),
(28366,2976,'_publicize_pending','1'),
(28367,2976,'ninzio_page_subtitle',''),
(28368,2976,'ninzio_page_sidebar','none'),
(28369,2976,'ninzio_page_title_background_color',''),
(28370,2976,'ninzio_page_title_background_color_opacity','1'),
(28371,2976,'ninzio_page_title_text_color','#ffffff'),
(28372,2976,'ninzio_page_subtitle_background_color',''),
(28373,2976,'ninzio_page_subtitle_background_color_opacity','1'),
(28374,2976,'ninzio_page_subtitle_text_color','#444444'),
(28375,2976,'ninzio_page_title_section_background_color','#f6f6f6'),
(28376,2976,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/02/AutumnVineyard.png'),
(28377,2976,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(28378,2976,'ninzio_page_title_section_background_image_position','center_center'),
(28379,2976,'ninzio_page_title_section_background_image_attachment','scroll'),
(28380,2976,'ninzio_page_title_section_background_image_size','auto'),
(28381,2976,'ninzio_one_page','no'),
(28382,2976,'ninzio_slider','no'),
(28383,2976,'ninzio_page_layout','no'),
(28384,2976,'ninzio_page_twitter','no'),
(28385,2976,'ninzio_page_padding_top','yes'),
(28386,2976,'ninzio_rich_header','yes'),
(28387,2976,'ninzio_page_title_section_background_image_parallax','no'),
(28388,2976,'_yoast_wpseo_content_score','60'),
(28505,2980,'_publicize_pending','1'),
(28506,2980,'_form','<p>Name (required)<br/>\n    [text* your-name] </p>\n\n<p>Your Email (required)<br/>\n    [email* your-email] </p>\n\n<p>Phone (required)<br/>\n    [text* phone] </p>\n\n<p>Company (required)<br/>\n    [text* company] </p>\n\n<p>Where did you find us<br/>\n    [select* source \"Advertisement\" \"Google\" \"Mailing\" \"Referral\" \"Social Media\"]\n</p>\n\n<p>[submit \"Send\"]</p>'),
(28507,2980,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:35:\"Active Club Solutions: DEMO REQUEST\";s:6:\"sender\";s:49:\"[_site_title] <wordpress@activeclubsolutions.net>\";s:9:\"recipient\";s:28:\"info@activeclubsolutions.net\";s:4:\"body\";s:373:\"<span style=\"font-family: Calibri; font-size: 18px;\">\n\nSubject: Demo Request\n\nFrom: [your-name] <[your-email]>\n\nEmail: [your-email]\n\nCompany: [company]\n\nPhone: [phone]\n\nThe above person requests a demo.\n\n<hr>\n\nThis e-mail was sent from the ActiveClubSolutions.com \"Demo Request\" form\n\n<img src=\"http://secureclub.net/images/activeclubmgmt/Signupinwinery150.png\" />\n\n</span>\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:1;s:13:\"exclude_blank\";b:0;}'),
(28508,2980,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:199:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Active Club Solutions Wine Club Management Software Winery Vineyard Online Shopping Cart (https://activeclubsolutions.net)\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(28509,2980,'_messages','a:23:{s:12:\"mail_sent_ok\";s:39:\"Thank you! We will contact you shortly.\";s:12:\"mail_sent_ng\";s:80:\"Message Failed. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:86:\"Validation errors occurred. Please confirm all fields are correct and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:31:\"Please fill the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),
(28510,2980,'_additional_settings',''),
(28511,2980,'_locale','en_US'),
(28923,2991,'_edit_lock','1588879179:2'),
(28924,2991,'_edit_last','2'),
(28925,2991,'_wp_page_template','default'),
(28926,2991,'_publicize_pending','1'),
(28927,2991,'ninzio_page_subtitle',''),
(28928,2991,'ninzio_page_sidebar','none'),
(28929,2991,'ninzio_page_title_background_color',''),
(28930,2991,'ninzio_page_title_background_color_opacity','1'),
(28931,2991,'ninzio_page_title_text_color','#444444'),
(28932,2991,'ninzio_page_subtitle_background_color',''),
(28933,2991,'ninzio_page_subtitle_background_color_opacity','1'),
(28934,2991,'ninzio_page_subtitle_text_color','#444444'),
(28935,2991,'ninzio_page_title_section_background_color','#f6f6f6'),
(28936,2991,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/header19.jpg'),
(28937,2991,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(28938,2991,'ninzio_page_title_section_background_image_position','left_top'),
(28939,2991,'ninzio_page_title_section_background_image_attachment','scroll'),
(28940,2991,'ninzio_page_title_section_background_image_size','auto'),
(28941,2991,'ninzio_one_page','no'),
(28942,2991,'ninzio_slider','no'),
(28943,2991,'ninzio_page_layout','no'),
(28944,2991,'ninzio_page_twitter','no'),
(28945,2991,'ninzio_page_padding_top','yes'),
(28946,2991,'ninzio_rich_header','yes'),
(28947,2991,'ninzio_page_title_section_background_image_parallax','no'),
(28948,2991,'_yoast_wpseo_content_score','30'),
(29002,3005,'_wp_attached_file','2018/03/examplecarts.png'),
(29003,3005,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2018/03/examplecarts.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"examplecarts-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"examplecarts-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"examplecarts-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"examplecarts-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"examplecarts-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"examplecarts-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"examplecarts-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"examplecarts-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(29004,3006,'_edit_lock','1521344008:2'),
(29005,3006,'_edit_last','2'),
(29006,3006,'_wp_page_template','default'),
(29007,3006,'_publicize_pending','1'),
(29008,3006,'ninzio_page_subtitle',''),
(29009,3006,'ninzio_page_sidebar','none'),
(29010,3006,'ninzio_page_title_background_color','#a8a8a8'),
(29011,3006,'ninzio_page_title_background_color_opacity','1'),
(29012,3006,'ninzio_page_title_text_color','#ffffff'),
(29013,3006,'ninzio_page_subtitle_background_color','#cccccc'),
(29014,3006,'ninzio_page_subtitle_background_color_opacity','1'),
(29015,3006,'ninzio_page_subtitle_text_color','#444444'),
(29016,3006,'ninzio_page_title_section_background_color','#f6f6f6'),
(29017,3006,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/03/examplecarts.png'),
(29018,3006,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(29019,3006,'ninzio_page_title_section_background_image_position','center_center'),
(29020,3006,'ninzio_page_title_section_background_image_attachment','scroll'),
(29021,3006,'ninzio_page_title_section_background_image_size','auto'),
(29022,3006,'ninzio_one_page','no'),
(29023,3006,'ninzio_slider','no'),
(29024,3006,'ninzio_page_layout','no'),
(29025,3006,'ninzio_page_twitter','no'),
(29026,3006,'ninzio_page_padding_top','yes'),
(29027,3006,'ninzio_rich_header','yes'),
(29028,3006,'ninzio_page_title_section_background_image_parallax','no'),
(29029,3006,'_yoast_wpseo_content_score','60'),
(29046,3006,'_oembed_f8bc37817664e784984d99cac0a5b6ad','{{unknown}}'),
(29048,3006,'_oembed_28f3e22ff89a2637a4bd4e007e8beba4','{{unknown}}'),
(29125,3013,'_edit_lock','1565902530:2'),
(29126,3013,'_edit_last','2'),
(29127,3013,'_wp_page_template','default'),
(29128,3013,'_publicize_pending','1'),
(29129,3013,'ninzio_page_subtitle',''),
(29130,3013,'ninzio_page_sidebar','none'),
(29131,3013,'ninzio_page_title_background_color',''),
(29132,3013,'ninzio_page_title_background_color_opacity','1'),
(29133,3013,'ninzio_page_title_text_color','#ffffff'),
(29134,3013,'ninzio_page_subtitle_background_color',''),
(29135,3013,'ninzio_page_subtitle_background_color_opacity','1'),
(29136,3013,'ninzio_page_subtitle_text_color','#444444'),
(29137,3013,'ninzio_page_title_section_background_color','#f6f6f6'),
(29138,3013,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/header22.jpg'),
(29139,3013,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(29140,3013,'ninzio_page_title_section_background_image_position','center_center'),
(29141,3013,'ninzio_page_title_section_background_image_attachment','scroll'),
(29142,3013,'ninzio_page_title_section_background_image_size','auto'),
(29143,3013,'ninzio_one_page','no'),
(29144,3013,'ninzio_slider','no'),
(29145,3013,'ninzio_page_layout','no'),
(29146,3013,'ninzio_page_twitter','no'),
(29147,3013,'ninzio_page_padding_top','yes'),
(29148,3013,'ninzio_rich_header','yes'),
(29149,3013,'ninzio_page_title_section_background_image_parallax','no'),
(29150,3013,'_yoast_wpseo_content_score','30'),
(29225,3024,'_edit_lock','1649022814:2'),
(29226,3024,'_edit_last','2'),
(29227,3024,'_wp_page_template','default'),
(29228,3024,'_publicize_pending','1'),
(29229,3024,'ninzio_page_subtitle',''),
(29230,3024,'ninzio_page_sidebar','none'),
(29231,3024,'ninzio_page_title_background_color',''),
(29232,3024,'ninzio_page_title_background_color_opacity','1'),
(29233,3024,'ninzio_page_title_text_color','#ffffff'),
(29234,3024,'ninzio_page_subtitle_background_color',''),
(29235,3024,'ninzio_page_subtitle_background_color_opacity','1'),
(29236,3024,'ninzio_page_subtitle_text_color','#444444'),
(29237,3024,'ninzio_page_title_section_background_color','#f6f6f6'),
(29238,3024,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/02/SummerVineyard.png'),
(29239,3024,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(29240,3024,'ninzio_page_title_section_background_image_position','center_center'),
(29241,3024,'ninzio_page_title_section_background_image_attachment','scroll'),
(29242,3024,'ninzio_page_title_section_background_image_size','auto'),
(29243,3024,'ninzio_one_page','no'),
(29244,3024,'ninzio_slider','no'),
(29245,3024,'ninzio_page_layout','yes'),
(29246,3024,'ninzio_page_twitter','no'),
(29247,3024,'ninzio_page_padding_top','yes'),
(29248,3024,'ninzio_rich_header','no'),
(29249,3024,'ninzio_page_title_section_background_image_parallax','no'),
(29250,3024,'_yoast_wpseo_content_score','90'),
(29478,3034,'_wp_attached_file','2018/04/goldengatenightfall_1.png'),
(29479,3034,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:442;s:4:\"file\";s:33:\"2018/04/goldengatenightfall_1.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"goldengatenightfall_1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"goldengatenightfall_1-300x83.png\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"goldengatenightfall_1-768x212.png\";s:5:\"width\";i:768;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"goldengatenightfall_1-1024x283.png\";s:5:\"width\";i:1024;s:6:\"height\";i:283;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:33:\"goldengatenightfall_1-600x442.png\";s:5:\"width\";i:600;s:6:\"height\";i:442;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"goldengatenightfall_1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:33:\"goldengatenightfall_1-894x442.png\";s:5:\"width\";i:894;s:6:\"height\";i:442;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:34:\"goldengatenightfall_1-1200x442.png\";s:5:\"width\";i:1200;s:6:\"height\";i:442;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(29501,3037,'_wp_attached_file','2018/04/Active_logo_190.png'),
(29502,3037,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:190;s:6:\"height\";i:59;s:4:\"file\";s:27:\"2018/04/Active_logo_190.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Active_logo_190-150x59.png\";s:5:\"width\";i:150;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(29503,3038,'_wp_attached_file','2018/04/Active_logo_400@2x.png'),
(29504,3038,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:124;s:4:\"file\";s:30:\"2018/04/Active_logo_400@2x.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Active_logo_400@2x-150x124.png\";s:5:\"width\";i:150;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Active_logo_400@2x-300x93.png\";s:5:\"width\";i:300;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"Active_logo_400@2x-384x124.png\";s:5:\"width\";i:384;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(29819,3042,'_edit_lock','1524541274:2'),
(29820,3042,'_edit_last','2'),
(29821,3042,'_wp_page_template','default'),
(29822,3042,'_publicize_pending','1'),
(29823,3042,'ninzio_page_subtitle',''),
(29824,3042,'ninzio_page_sidebar','none'),
(29825,3042,'ninzio_page_title_background_color',''),
(29826,3042,'ninzio_page_title_background_color_opacity','1'),
(29827,3042,'ninzio_page_title_text_color','#444444'),
(29828,3042,'ninzio_page_subtitle_background_color',''),
(29829,3042,'ninzio_page_subtitle_background_color_opacity','1'),
(29830,3042,'ninzio_page_subtitle_text_color','#444444'),
(29831,3042,'ninzio_page_title_section_background_color','#f6f6f6'),
(29832,3042,'ninzio_page_title_section_background_image',''),
(29833,3042,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(29834,3042,'ninzio_page_title_section_background_image_position','left_top'),
(29835,3042,'ninzio_page_title_section_background_image_attachment','scroll'),
(29836,3042,'ninzio_page_title_section_background_image_size','auto'),
(29837,3042,'ninzio_one_page','no'),
(29838,3042,'ninzio_slider','no'),
(29839,3042,'ninzio_page_layout','no'),
(29840,3042,'ninzio_page_twitter','no'),
(29841,3042,'ninzio_page_padding_top','yes'),
(29842,3042,'ninzio_rich_header','yes'),
(29843,3042,'ninzio_page_title_section_background_image_parallax','no'),
(29844,3042,'_yoast_wpseo_content_score','30'),
(30260,3054,'_wp_attached_file','2018/05/PricingChart_6.png'),
(30261,3054,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:933;s:6:\"height\";i:1044;s:4:\"file\";s:26:\"2018/05/PricingChart_6.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"PricingChart_6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"PricingChart_6-268x300.png\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"PricingChart_6-768x859.png\";s:5:\"width\";i:768;s:6:\"height\";i:859;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"PricingChart_6-915x1024.png\";s:5:\"width\";i:915;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"PricingChart_6-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"PricingChart_6-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"PricingChart_6-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:26:\"PricingChart_6-933x588.png\";s:5:\"width\";i:933;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30310,3056,'_edit_lock','1649023711:2'),
(30311,3056,'_edit_last','2'),
(30312,3056,'_wp_page_template','default'),
(30313,3056,'_publicize_pending','1'),
(30314,3056,'ninzio_page_subtitle',''),
(30315,3056,'ninzio_page_sidebar','none'),
(30316,3056,'ninzio_page_title_background_color',''),
(30317,3056,'ninzio_page_title_background_color_opacity','1'),
(30318,3056,'ninzio_page_title_text_color','#444444'),
(30319,3056,'ninzio_page_subtitle_background_color',''),
(30320,3056,'ninzio_page_subtitle_background_color_opacity','1'),
(30321,3056,'ninzio_page_subtitle_text_color','#444444'),
(30322,3056,'ninzio_page_title_section_background_color','#f6f6f6'),
(30323,3056,'ninzio_page_title_section_background_image',''),
(30324,3056,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(30325,3056,'ninzio_page_title_section_background_image_position','left_top'),
(30326,3056,'ninzio_page_title_section_background_image_attachment','scroll'),
(30327,3056,'ninzio_page_title_section_background_image_size','auto'),
(30328,3056,'ninzio_one_page','no'),
(30329,3056,'ninzio_slider','no'),
(30330,3056,'ninzio_page_layout','yes'),
(30331,3056,'ninzio_page_twitter','no'),
(30332,3056,'ninzio_page_padding_top','no'),
(30333,3056,'ninzio_rich_header','no'),
(30334,3056,'ninzio_page_title_section_background_image_parallax','no'),
(30335,3056,'_yoast_wpseo_content_score','30'),
(30397,3069,'_edit_lock','1526336590:10'),
(30398,3069,'_edit_last','2'),
(30399,3069,'_yoast_wpseo_primary_category',''),
(30400,3069,'ninzio_post_audio_mp3',''),
(30401,3069,'ninzio_post_audio_ogg',''),
(30402,3069,'ninzio_post_audio_embed',''),
(30403,3069,'ninzio_post_video_mp4',''),
(30404,3069,'ninzio_post_video_ogv',''),
(30405,3069,'ninzio_post_video_webm',''),
(30406,3069,'ninzio_post_video_embed',''),
(30407,3069,'ninzio_post_video_poster',''),
(30408,3069,'ninzio_post_link_url',''),
(30409,3069,'ninzio_post_image_url',''),
(30410,3069,'ninzio_post_image_description',''),
(30411,3069,'ninzio_post_status_author',''),
(30412,3069,'ninzio_post_quote_author',''),
(30413,3069,'ninzio_post_featured_media','yes'),
(30414,3069,'_yoast_wpseo_content_score','30'),
(30415,3069,'_yoast_wpseo_focuskw_text_input','software, POS, tasting room POS, Ecommerce,'),
(30416,3069,'_yoast_wpseo_focuskw','software, POS, tasting room POS, Ecommerce,'),
(30417,3069,'_yoast_wpseo_linkdex','53'),
(30420,3069,'_wpas_done_all','1'),
(30421,3070,'_edit_lock','1526336655:10'),
(30422,3070,'_edit_last','2'),
(30423,3070,'_yoast_wpseo_primary_category',''),
(30424,3070,'ninzio_post_audio_mp3',''),
(30425,3070,'ninzio_post_audio_ogg',''),
(30426,3070,'ninzio_post_audio_embed',''),
(30427,3070,'ninzio_post_video_mp4',''),
(30428,3070,'ninzio_post_video_ogv',''),
(30429,3070,'ninzio_post_video_webm',''),
(30430,3070,'ninzio_post_video_embed',''),
(30431,3070,'ninzio_post_video_poster',''),
(30432,3070,'ninzio_post_link_url',''),
(30433,3070,'ninzio_post_image_url',''),
(30434,3070,'ninzio_post_image_description',''),
(30435,3070,'ninzio_post_status_author',''),
(30436,3070,'ninzio_post_quote_author',''),
(30437,3070,'ninzio_post_featured_media','yes'),
(30438,3070,'_yoast_wpseo_content_score','30'),
(30439,3070,'_yoast_wpseo_focuskw_text_input','Mobile POS, all in one solution software, pos, clubs'),
(30440,3070,'_yoast_wpseo_focuskw','Mobile POS, all in one solution software, pos, clubs'),
(30441,3070,'_yoast_wpseo_linkdex','49'),
(30444,3070,'_wpas_done_all','1'),
(30449,3071,'_wp_attached_file','2018/05/shutterstock_486675022_People-wine-sunset.jpg'),
(30450,3071,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3897;s:6:\"height\";i:2591;s:4:\"file\";s:53:\"2018/05/shutterstock_486675022_People-wine-sunset.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"shutterstock_486675022_People-wine-sunset-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"shutterstock_486675022_People-wine-sunset-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"shutterstock_486675022_People-wine-sunset-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"shutterstock_486675022_People-wine-sunset-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:53:\"shutterstock_486675022_People-wine-sunset-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:53:\"shutterstock_486675022_People-wine-sunset-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:53:\"shutterstock_486675022_People-wine-sunset-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:54:\"shutterstock_486675022_People-wine-sunset-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30452,3073,'_edit_lock','1526336629:10'),
(30453,3073,'_edit_last','2'),
(30454,3073,'_yoast_wpseo_primary_category',''),
(30455,3073,'ninzio_post_audio_mp3',''),
(30456,3073,'ninzio_post_audio_ogg',''),
(30457,3073,'ninzio_post_audio_embed',''),
(30458,3073,'ninzio_post_video_mp4',''),
(30459,3073,'ninzio_post_video_ogv',''),
(30460,3073,'ninzio_post_video_webm',''),
(30461,3073,'ninzio_post_video_embed',''),
(30462,3073,'ninzio_post_video_poster',''),
(30463,3073,'ninzio_post_link_url',''),
(30464,3073,'ninzio_post_image_url',''),
(30465,3073,'ninzio_post_image_description',''),
(30466,3073,'ninzio_post_status_author',''),
(30467,3073,'ninzio_post_quote_author',''),
(30468,3073,'ninzio_post_featured_media','yes'),
(30469,3073,'_yoast_wpseo_content_score','30'),
(30470,3074,'_wp_attached_file','2018/05/Dan-at-Unified-2018.jpg'),
(30471,3074,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1224;s:6:\"height\";i:1632;s:4:\"file\";s:31:\"2018/05/Dan-at-Unified-2018.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Dan-at-Unified-2018-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Dan-at-Unified-2018-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Dan-at-Unified-2018-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Dan-at-Unified-2018-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:31:\"Dan-at-Unified-2018-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:31:\"Dan-at-Unified-2018-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:31:\"Dan-at-Unified-2018-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:32:\"Dan-at-Unified-2018-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5c\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1516874109\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30474,3073,'_wpas_done_all','1'),
(30476,3075,'_edit_lock','1526336556:10'),
(30477,3075,'_edit_last','2'),
(30478,3075,'_yoast_wpseo_primary_category',''),
(30479,3075,'ninzio_post_audio_mp3',''),
(30480,3075,'ninzio_post_audio_ogg',''),
(30481,3075,'ninzio_post_audio_embed',''),
(30482,3075,'ninzio_post_video_mp4',''),
(30483,3075,'ninzio_post_video_ogv',''),
(30484,3075,'ninzio_post_video_webm',''),
(30485,3075,'ninzio_post_video_embed',''),
(30486,3075,'ninzio_post_video_poster',''),
(30487,3075,'ninzio_post_link_url',''),
(30488,3075,'ninzio_post_image_url',''),
(30489,3075,'ninzio_post_image_description',''),
(30490,3075,'ninzio_post_status_author',''),
(30491,3075,'ninzio_post_quote_author',''),
(30492,3075,'ninzio_post_featured_media','yes'),
(30493,3075,'_yoast_wpseo_content_score','30'),
(30494,3076,'_wp_attached_file','2018/05/th_robot.jpg'),
(30495,3076,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:160;s:4:\"file\";s:20:\"2018/05/th_robot.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"th_robot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30499,3075,'_wpas_done_all','1'),
(30501,3077,'_edit_lock','1526336532:10'),
(30502,3077,'_edit_last','2'),
(30503,3077,'_yoast_wpseo_primary_category',''),
(30504,3077,'ninzio_post_audio_mp3',''),
(30505,3077,'ninzio_post_audio_ogg',''),
(30506,3077,'ninzio_post_audio_embed',''),
(30507,3077,'ninzio_post_video_mp4',''),
(30508,3077,'ninzio_post_video_ogv',''),
(30509,3077,'ninzio_post_video_webm',''),
(30510,3077,'ninzio_post_video_embed',''),
(30511,3077,'ninzio_post_video_poster',''),
(30512,3077,'ninzio_post_link_url',''),
(30513,3077,'ninzio_post_image_url',''),
(30514,3077,'ninzio_post_image_description',''),
(30515,3077,'ninzio_post_status_author',''),
(30516,3077,'ninzio_post_quote_author',''),
(30517,3077,'ninzio_post_featured_media','yes'),
(30518,3077,'_yoast_wpseo_content_score','30'),
(30519,3077,'_yoast_wpseo_focuskw_text_input','clubs, automated system, software POS,'),
(30520,3077,'_yoast_wpseo_focuskw','clubs, automated system, software POS,'),
(30521,3077,'_yoast_wpseo_linkdex','58'),
(30524,3077,'_wpas_done_all','1'),
(30526,3078,'_edit_lock','1526336489:10'),
(30527,3078,'_edit_last','2'),
(30528,3078,'_yoast_wpseo_primary_category',''),
(30529,3078,'ninzio_post_audio_mp3',''),
(30530,3078,'ninzio_post_audio_ogg',''),
(30531,3078,'ninzio_post_audio_embed',''),
(30532,3078,'ninzio_post_video_mp4',''),
(30533,3078,'ninzio_post_video_ogv',''),
(30534,3078,'ninzio_post_video_webm',''),
(30535,3078,'ninzio_post_video_embed',''),
(30536,3078,'ninzio_post_video_poster',''),
(30537,3078,'ninzio_post_link_url',''),
(30538,3078,'ninzio_post_image_url',''),
(30539,3078,'ninzio_post_image_description',''),
(30540,3078,'ninzio_post_status_author',''),
(30541,3078,'ninzio_post_quote_author',''),
(30542,3078,'ninzio_post_featured_media','yes'),
(30543,3078,'_yoast_wpseo_content_score','30'),
(30544,3079,'_wp_attached_file','2018/05/BIG-DATA-pic_ACS.png'),
(30545,3079,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:362;s:4:\"file\";s:28:\"2018/05/BIG-DATA-pic_ACS.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"BIG-DATA-pic_ACS-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"BIG-DATA-pic_ACS-300x136.png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"BIG-DATA-pic_ACS-768x348.png\";s:5:\"width\";i:768;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"BIG-DATA-pic_ACS-600x362.png\";s:5:\"width\";i:600;s:6:\"height\";i:362;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"BIG-DATA-pic_ACS-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30548,3078,'_wpas_done_all','1'),
(30550,3078,'_yoast_wpseo_focuskw_text_input','data mining, data capture, real time data'),
(30551,3078,'_yoast_wpseo_focuskw','data mining, data capture, real time data'),
(30552,3078,'_yoast_wpseo_linkdex','60'),
(30555,3080,'_edit_last','2'),
(30556,3080,'_yoast_wpseo_primary_category',''),
(30557,3080,'ninzio_post_audio_mp3',''),
(30558,3080,'ninzio_post_audio_ogg',''),
(30559,3080,'ninzio_post_audio_embed',''),
(30560,3080,'ninzio_post_video_mp4',''),
(30561,3080,'ninzio_post_video_ogv',''),
(30562,3080,'ninzio_post_video_webm',''),
(30563,3080,'ninzio_post_video_embed',''),
(30564,3080,'ninzio_post_video_poster',''),
(30565,3080,'ninzio_post_link_url',''),
(30566,3080,'ninzio_post_image_url',''),
(30567,3080,'ninzio_post_image_description',''),
(30568,3080,'ninzio_post_status_author',''),
(30569,3080,'ninzio_post_quote_author',''),
(30570,3080,'ninzio_post_featured_media','yes'),
(30571,3080,'_yoast_wpseo_content_score','30'),
(30572,3080,'_edit_lock','1526336447:10'),
(30573,3081,'_wp_attached_file','2018/05/ruby-hill-winery-outdoor.jpg'),
(30574,3081,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:364;s:4:\"file\";s:36:\"2018/05/ruby-hill-winery-outdoor.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"ruby-hill-winery-outdoor-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"ruby-hill-winery-outdoor-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:36:\"ruby-hill-winery-outdoor-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30577,3080,'_wpas_done_all','1'),
(30580,3082,'_edit_lock','1526336742:10'),
(30581,3082,'_edit_last','2'),
(30582,3082,'_yoast_wpseo_primary_category',''),
(30583,3082,'ninzio_post_audio_mp3',''),
(30584,3082,'ninzio_post_audio_ogg',''),
(30585,3082,'ninzio_post_audio_embed',''),
(30586,3082,'ninzio_post_video_mp4',''),
(30587,3082,'ninzio_post_video_ogv',''),
(30588,3082,'ninzio_post_video_webm',''),
(30589,3082,'ninzio_post_video_embed',''),
(30590,3082,'ninzio_post_video_poster',''),
(30591,3082,'ninzio_post_link_url',''),
(30592,3082,'ninzio_post_image_url',''),
(30593,3082,'ninzio_post_image_description',''),
(30594,3082,'ninzio_post_status_author',''),
(30595,3082,'ninzio_post_quote_author',''),
(30596,3082,'ninzio_post_featured_media','yes'),
(30597,3082,'_yoast_wpseo_content_score','60'),
(30598,3083,'_wp_attached_file','2018/05/tipping.jpg'),
(30599,3083,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:341;s:6:\"height\";i:227;s:4:\"file\";s:19:\"2018/05/tipping.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"tipping-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"tipping-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30602,3082,'_wpas_done_all','1'),
(30604,3082,'_wp_old_date','2018-05-14'),
(30606,3080,'_wp_old_date','2018-05-14'),
(30608,3078,'_wp_old_date','2018-05-14'),
(30610,3077,'_wp_old_date','2018-05-14'),
(30612,3075,'_wp_old_date','2018-05-14'),
(30614,3069,'_wp_old_date','2018-05-14'),
(30616,3073,'_wp_old_date','2018-05-14'),
(30618,3070,'_wp_old_date','2018-05-14'),
(30623,3084,'_edit_lock','1526337333:10'),
(30624,3084,'_edit_last','2'),
(30627,3086,'_wp_attached_file','2018/05/Cloud-computing.jpg'),
(30628,3086,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:552;s:6:\"height\";i:486;s:4:\"file\";s:27:\"2018/05/Cloud-computing.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Cloud-computing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Cloud-computing-300x264.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"Cloud-computing-552x480.jpg\";s:5:\"width\";i:552;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"Cloud-computing-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(30629,3084,'_yoast_wpseo_primary_category',''),
(30630,3084,'ninzio_post_audio_mp3',''),
(30631,3084,'ninzio_post_audio_ogg',''),
(30632,3084,'ninzio_post_audio_embed',''),
(30633,3084,'ninzio_post_video_mp4',''),
(30634,3084,'ninzio_post_video_ogv',''),
(30635,3084,'ninzio_post_video_webm',''),
(30636,3084,'ninzio_post_video_embed',''),
(30637,3084,'ninzio_post_video_poster',''),
(30638,3084,'ninzio_post_link_url',''),
(30639,3084,'ninzio_post_image_url',''),
(30640,3084,'ninzio_post_image_description',''),
(30641,3084,'ninzio_post_status_author',''),
(30642,3084,'ninzio_post_quote_author',''),
(30643,3084,'ninzio_post_featured_media','yes'),
(30644,3084,'_yoast_wpseo_content_score','30'),
(30647,3084,'_wpas_done_all','1'),
(30649,3084,'_wp_old_date','2018-05-14'),
(30652,3087,'_edit_lock','1526337825:10'),
(30653,3087,'_edit_last','2'),
(30654,3088,'_wp_attached_file','2018/05/duskhomepagex380.png'),
(30655,3088,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"height\";i:183;s:4:\"file\";s:28:\"2018/05/duskhomepagex380.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"duskhomepagex380-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"duskhomepagex380-300x144.png\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30656,3087,'_yoast_wpseo_primary_category',''),
(30657,3087,'ninzio_post_audio_mp3',''),
(30658,3087,'ninzio_post_audio_ogg',''),
(30659,3087,'ninzio_post_audio_embed',''),
(30660,3087,'ninzio_post_video_mp4',''),
(30661,3087,'ninzio_post_video_ogv',''),
(30662,3087,'ninzio_post_video_webm',''),
(30663,3087,'ninzio_post_video_embed',''),
(30664,3087,'ninzio_post_video_poster',''),
(30665,3087,'ninzio_post_link_url',''),
(30666,3087,'ninzio_post_image_url',''),
(30667,3087,'ninzio_post_image_description',''),
(30668,3087,'ninzio_post_status_author',''),
(30669,3087,'ninzio_post_quote_author',''),
(30670,3087,'ninzio_post_featured_media','yes'),
(30671,3087,'_yoast_wpseo_content_score','30'),
(30674,3087,'_wpas_done_all','1'),
(30676,3087,'_wp_old_date','2018-05-14'),
(30727,3089,'_edit_lock','1526516314:10'),
(30728,3089,'_edit_last','2'),
(30729,3089,'_yoast_wpseo_primary_category',''),
(30730,3089,'ninzio_post_audio_mp3',''),
(30731,3089,'ninzio_post_audio_ogg',''),
(30732,3089,'ninzio_post_audio_embed',''),
(30733,3089,'ninzio_post_video_mp4',''),
(30734,3089,'ninzio_post_video_ogv',''),
(30735,3089,'ninzio_post_video_webm',''),
(30736,3089,'ninzio_post_video_embed',''),
(30737,3089,'ninzio_post_video_poster',''),
(30738,3089,'ninzio_post_link_url',''),
(30739,3089,'ninzio_post_image_url',''),
(30740,3089,'ninzio_post_image_description',''),
(30741,3089,'ninzio_post_status_author',''),
(30742,3089,'ninzio_post_quote_author',''),
(30743,3089,'ninzio_post_featured_media','yes'),
(30744,3089,'_yoast_wpseo_content_score','30'),
(30745,3090,'_wp_attached_file','2018/05/is.jpg'),
(30746,3090,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:223;s:4:\"file\";s:14:\"2018/05/is.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"is-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(30749,3089,'_wpas_done_all','1'),
(31014,3099,'notification_id','733'),
(31015,3099,'type','success'),
(31016,3099,'dismissable','1'),
(31017,3099,'location','[\"everywhere\"]'),
(31018,3099,'version',''),
(31019,3099,'viewed','1'),
(31020,3099,'expiration','1527724800'),
(31021,3099,'plans','[]'),
(31318,3102,'_edit_lock','1528144306:10'),
(31319,3102,'_edit_last','2'),
(31322,3102,'_yoast_wpseo_primary_category',''),
(31323,3102,'ninzio_post_audio_mp3',''),
(31324,3102,'ninzio_post_audio_ogg',''),
(31325,3102,'ninzio_post_audio_embed',''),
(31326,3102,'ninzio_post_video_mp4',''),
(31327,3102,'ninzio_post_video_ogv',''),
(31328,3102,'ninzio_post_video_webm',''),
(31329,3102,'ninzio_post_video_embed',''),
(31330,3102,'ninzio_post_video_poster',''),
(31331,3102,'ninzio_post_link_url',''),
(31332,3102,'ninzio_post_image_url',''),
(31333,3102,'ninzio_post_image_description',''),
(31334,3102,'ninzio_post_status_author',''),
(31335,3102,'ninzio_post_quote_author',''),
(31336,3102,'ninzio_post_featured_media','yes'),
(31337,3102,'_yoast_wpseo_content_score','30'),
(31338,3102,'_wpas_done_all','1'),
(31341,3102,'_wp_old_date','2018-06-04'),
(31342,3104,'_wp_attached_file','2018/05/treasure-chest.jpg'),
(31343,3104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:360;s:4:\"file\";s:26:\"2018/05/treasure-chest.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"treasure-chest-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"treasure-chest-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"treasure-chest-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31623,3108,'_edit_lock','1532134841:10'),
(31624,3108,'_edit_last','2'),
(31625,3108,'_yoast_wpseo_primary_category',''),
(31626,3108,'ninzio_post_audio_mp3',''),
(31627,3108,'ninzio_post_audio_ogg',''),
(31628,3108,'ninzio_post_audio_embed',''),
(31629,3108,'ninzio_post_video_mp4',''),
(31630,3108,'ninzio_post_video_ogv',''),
(31631,3108,'ninzio_post_video_webm',''),
(31632,3108,'ninzio_post_video_embed',''),
(31633,3108,'ninzio_post_video_poster',''),
(31634,3108,'ninzio_post_link_url',''),
(31635,3108,'ninzio_post_image_url',''),
(31636,3108,'ninzio_post_image_description',''),
(31637,3108,'ninzio_post_status_author',''),
(31638,3108,'ninzio_post_quote_author',''),
(31639,3108,'ninzio_post_featured_media','yes'),
(31640,3108,'_yoast_wpseo_content_score','30'),
(31643,3109,'_wp_attached_file','2018/06/loyalty-card-pic.jpg'),
(31644,3109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:341;s:6:\"height\";i:128;s:4:\"file\";s:28:\"2018/06/loyalty-card-pic.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"loyalty-card-pic-150x128.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"loyalty-card-pic-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31648,3108,'_wpas_done_all','1'),
(31653,3108,'_yoast_wpseo_focuskw_text_input','Loyalty cards, gift cards, POS'),
(31654,3108,'_yoast_wpseo_focuskw','Loyalty cards, gift cards, POS'),
(31655,3108,'_yoast_wpseo_linkdex','61'),
(31856,3113,'_edit_lock','1532134766:10'),
(31857,3113,'_edit_last','2'),
(31858,3113,'_yoast_wpseo_primary_category',''),
(31859,3113,'ninzio_post_audio_mp3',''),
(31860,3113,'ninzio_post_audio_ogg',''),
(31861,3113,'ninzio_post_audio_embed',''),
(31862,3113,'ninzio_post_video_mp4',''),
(31863,3113,'ninzio_post_video_ogv',''),
(31864,3113,'ninzio_post_video_webm',''),
(31865,3113,'ninzio_post_video_embed',''),
(31866,3113,'ninzio_post_video_poster',''),
(31867,3113,'ninzio_post_link_url',''),
(31868,3113,'ninzio_post_image_url',''),
(31869,3113,'ninzio_post_image_description',''),
(31870,3113,'ninzio_post_status_author',''),
(31871,3113,'ninzio_post_quote_author',''),
(31872,3113,'ninzio_post_featured_media','yes'),
(31873,3113,'_yoast_wpseo_content_score','30'),
(31875,3114,'_wp_attached_file','2018/06/online-shopping-cart-software.jpg'),
(31876,3114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:41:\"2018/06/online-shopping-cart-software.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"online-shopping-cart-software-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"online-shopping-cart-software-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"online-shopping-cart-software-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:41:\"online-shopping-cart-software-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:41:\"online-shopping-cart-software-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:41:\"online-shopping-cart-software-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:42:\"online-shopping-cart-software-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(31880,3113,'_wpas_done_all','1'),
(31883,3113,'_wp_old_slug','why-to-consider-a-kiosk-in-your-tasting-room'),
(31886,3113,'_yoast_wpseo_focuskw_text_input','POS, Kiosk, wine club, tasting room'),
(31887,3113,'_yoast_wpseo_focuskw','POS, Kiosk, wine club, tasting room'),
(31888,3113,'_yoast_wpseo_linkdex','60'),
(32031,3117,'_edit_lock','1530219194:10'),
(32032,3117,'_edit_last','2'),
(32033,3117,'_yoast_wpseo_primary_category',''),
(32034,3117,'ninzio_post_audio_mp3',''),
(32035,3117,'ninzio_post_audio_ogg',''),
(32036,3117,'ninzio_post_audio_embed',''),
(32037,3117,'ninzio_post_video_mp4',''),
(32038,3117,'ninzio_post_video_ogv',''),
(32039,3117,'ninzio_post_video_webm',''),
(32040,3117,'ninzio_post_video_embed',''),
(32041,3117,'ninzio_post_video_poster',''),
(32042,3117,'ninzio_post_link_url',''),
(32043,3117,'ninzio_post_image_url',''),
(32044,3117,'ninzio_post_image_description',''),
(32045,3117,'ninzio_post_status_author',''),
(32046,3117,'ninzio_post_quote_author',''),
(32047,3117,'ninzio_post_featured_media','yes'),
(32048,3117,'_yoast_wpseo_content_score','30'),
(32052,3118,'_wp_attached_file','2018/06/Dusted-Valley-TR_woodinville.jpg'),
(32053,3118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:294;s:4:\"file\";s:40:\"2018/06/Dusted-Valley-TR_woodinville.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Dusted-Valley-TR_woodinville-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Dusted-Valley-TR_woodinville-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:40:\"Dusted-Valley-TR_woodinville-384x294.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32058,3117,'_wpas_done_all','1'),
(32471,3158,'_edit_lock','1633562029:2'),
(32472,3158,'_edit_last','2'),
(32473,3158,'_wp_page_template','default'),
(32474,3158,'ninzio_page_subtitle',''),
(32475,3158,'ninzio_page_sidebar','none'),
(32476,3158,'ninzio_page_title_background_color',''),
(32477,3158,'ninzio_page_title_background_color_opacity','1'),
(32478,3158,'ninzio_page_title_text_color','#444444'),
(32479,3158,'ninzio_page_subtitle_background_color',''),
(32480,3158,'ninzio_page_subtitle_background_color_opacity','1'),
(32481,3158,'ninzio_page_subtitle_text_color','#444444'),
(32482,3158,'ninzio_page_title_section_background_color','#f6f6f6'),
(32483,3158,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/02/AutumnVineyard.png'),
(32484,3158,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(32485,3158,'ninzio_page_title_section_background_image_position','center_center'),
(32486,3158,'ninzio_page_title_section_background_image_attachment','scroll'),
(32487,3158,'ninzio_page_title_section_background_image_size','auto'),
(32488,3158,'ninzio_one_page','no'),
(32489,3158,'ninzio_slider','no'),
(32490,3158,'ninzio_page_layout','yes'),
(32491,3158,'ninzio_page_twitter','no'),
(32492,3158,'ninzio_page_padding_top','yes'),
(32493,3158,'ninzio_rich_header','no'),
(32494,3158,'ninzio_page_title_section_background_image_parallax','no'),
(32495,3158,'_yoast_wpseo_content_score','30'),
(32503,3162,'_edit_lock','1562125679:2'),
(32504,3162,'_edit_last','2'),
(32505,3162,'_wp_page_template','default'),
(32506,3162,'ninzio_page_subtitle',''),
(32507,3162,'ninzio_page_sidebar','none'),
(32508,3162,'ninzio_page_title_background_color',''),
(32509,3162,'ninzio_page_title_background_color_opacity','1'),
(32510,3162,'ninzio_page_title_text_color','#ffffff'),
(32511,3162,'ninzio_page_subtitle_background_color',''),
(32512,3162,'ninzio_page_subtitle_background_color_opacity','1'),
(32513,3162,'ninzio_page_subtitle_text_color','#444444'),
(32514,3162,'ninzio_page_title_section_background_color','#f6f6f6'),
(32515,3162,'ninzio_page_title_section_background_image',''),
(32516,3162,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(32517,3162,'ninzio_page_title_section_background_image_position','center_center'),
(32518,3162,'ninzio_page_title_section_background_image_attachment','scroll'),
(32519,3162,'ninzio_page_title_section_background_image_size','auto'),
(32520,3162,'ninzio_one_page','no'),
(32521,3162,'ninzio_slider','no'),
(32522,3162,'ninzio_page_layout','yes'),
(32523,3162,'ninzio_page_twitter','no'),
(32524,3162,'ninzio_page_padding_top','no'),
(32525,3162,'ninzio_rich_header','no'),
(32526,3162,'ninzio_page_title_section_background_image_parallax','no'),
(32527,3162,'_yoast_wpseo_content_score','30'),
(32597,3188,'_edit_lock','1531353969:10'),
(32598,3188,'_edit_last','2'),
(32599,3188,'_yoast_wpseo_primary_category',''),
(32600,3188,'ninzio_post_audio_mp3',''),
(32601,3188,'ninzio_post_audio_ogg',''),
(32602,3188,'ninzio_post_audio_embed',''),
(32603,3188,'ninzio_post_video_mp4',''),
(32604,3188,'ninzio_post_video_ogv',''),
(32605,3188,'ninzio_post_video_webm',''),
(32606,3188,'ninzio_post_video_embed',''),
(32607,3188,'ninzio_post_video_poster',''),
(32608,3188,'ninzio_post_link_url',''),
(32609,3188,'ninzio_post_image_url',''),
(32610,3188,'ninzio_post_image_description',''),
(32611,3188,'ninzio_post_status_author',''),
(32612,3188,'ninzio_post_quote_author',''),
(32613,3188,'ninzio_post_featured_media','yes'),
(32614,3188,'_yoast_wpseo_content_score','30'),
(32616,3189,'_wp_attached_file','2018/07/RED-CAR-TR-600-x-400.jpg'),
(32617,3189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:32:\"2018/07/RED-CAR-TR-600-x-400.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"RED-CAR-TR-600-x-400-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"RED-CAR-TR-600-x-400-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:32:\"RED-CAR-TR-600-x-400-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:32:\"RED-CAR-TR-600-x-400-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32621,3188,'_wpas_done_all','1'),
(32711,3199,'_edit_lock','1649024163:2'),
(32712,3199,'_edit_last','2'),
(32713,3199,'_wp_page_template','default'),
(32714,3199,'ninzio_page_subtitle',''),
(32715,3199,'ninzio_page_sidebar','none'),
(32716,3199,'ninzio_page_title_background_color',''),
(32717,3199,'ninzio_page_title_background_color_opacity','1'),
(32718,3199,'ninzio_page_title_text_color','#444444'),
(32719,3199,'ninzio_page_subtitle_background_color',''),
(32720,3199,'ninzio_page_subtitle_background_color_opacity','1'),
(32721,3199,'ninzio_page_subtitle_text_color','#444444'),
(32722,3199,'ninzio_page_title_section_background_color','#f6f6f6'),
(32723,3199,'ninzio_page_title_section_background_image',''),
(32724,3199,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(32725,3199,'ninzio_page_title_section_background_image_position','left_top'),
(32726,3199,'ninzio_page_title_section_background_image_attachment','scroll'),
(32727,3199,'ninzio_page_title_section_background_image_size','auto'),
(32728,3199,'ninzio_one_page','no'),
(32729,3199,'ninzio_slider','no'),
(32730,3199,'ninzio_page_layout','yes'),
(32731,3199,'ninzio_page_twitter','no'),
(32732,3199,'ninzio_page_padding_top','yes'),
(32733,3199,'ninzio_rich_header','no'),
(32734,3199,'ninzio_page_title_section_background_image_parallax','no'),
(32735,3199,'_yoast_wpseo_content_score','30'),
(32784,3215,'_wp_attached_file','2018/07/DesignLivermore.png'),
(32785,3215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1898;s:6:\"height\";i:983;s:4:\"file\";s:27:\"2018/07/DesignLivermore.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"DesignLivermore-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"DesignLivermore-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"DesignLivermore-768x398.png\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"DesignLivermore-1024x530.png\";s:5:\"width\";i:1024;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"DesignLivermore-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"DesignLivermore-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"DesignLivermore-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"DesignLivermore-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32786,3216,'_wp_attached_file','2018/07/DesignElkgrove.png'),
(32787,3216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1895;s:6:\"height\";i:982;s:4:\"file\";s:26:\"2018/07/DesignElkgrove.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"DesignElkgrove-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"DesignElkgrove-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"DesignElkgrove-768x398.png\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"DesignElkgrove-1024x531.png\";s:5:\"width\";i:1024;s:6:\"height\";i:531;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"DesignElkgrove-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"DesignElkgrove-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"DesignElkgrove-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"DesignElkgrove-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32788,3217,'_wp_attached_file','2018/07/DesignStockton.png'),
(32789,3217,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1896;s:6:\"height\";i:983;s:4:\"file\";s:26:\"2018/07/DesignStockton.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"DesignStockton-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"DesignStockton-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"DesignStockton-768x398.png\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"DesignStockton-1024x531.png\";s:5:\"width\";i:1024;s:6:\"height\";i:531;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"DesignStockton-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"DesignStockton-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"DesignStockton-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"DesignStockton-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32790,3218,'_wp_attached_file','2018/07/DesignWallaWalla.png'),
(32791,3218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1898;s:6:\"height\";i:977;s:4:\"file\";s:28:\"2018/07/DesignWallaWalla.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"DesignWallaWalla-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"DesignWallaWalla-300x154.png\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"DesignWallaWalla-768x395.png\";s:5:\"width\";i:768;s:6:\"height\";i:395;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"DesignWallaWalla-1024x527.png\";s:5:\"width\";i:1024;s:6:\"height\";i:527;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"DesignWallaWalla-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"DesignWallaWalla-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"DesignWallaWalla-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"DesignWallaWalla-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32792,3219,'_wp_attached_file','2018/07/DesignDundee.png'),
(32793,3219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1901;s:6:\"height\";i:982;s:4:\"file\";s:24:\"2018/07/DesignDundee.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"DesignDundee-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"DesignDundee-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"DesignDundee-768x397.png\";s:5:\"width\";i:768;s:6:\"height\";i:397;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"DesignDundee-1024x529.png\";s:5:\"width\";i:1024;s:6:\"height\";i:529;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"DesignDundee-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"DesignDundee-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"DesignDundee-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"DesignDundee-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32794,3220,'_wp_attached_file','2018/07/DesignNapa.png'),
(32795,3220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1897;s:6:\"height\";i:984;s:4:\"file\";s:22:\"2018/07/DesignNapa.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"DesignNapa-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"DesignNapa-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"DesignNapa-768x398.png\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"DesignNapa-1024x531.png\";s:5:\"width\";i:1024;s:6:\"height\";i:531;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:22:\"DesignNapa-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"DesignNapa-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:22:\"DesignNapa-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:23:\"DesignNapa-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32796,3221,'_wp_attached_file','2018/07/DesignSonoma.png'),
(32797,3221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1902;s:6:\"height\";i:985;s:4:\"file\";s:24:\"2018/07/DesignSonoma.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"DesignSonoma-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"DesignSonoma-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"DesignSonoma-768x398.png\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"DesignSonoma-1024x530.png\";s:5:\"width\";i:1024;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"DesignSonoma-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"DesignSonoma-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"DesignSonoma-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"DesignSonoma-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32798,3222,'_wp_attached_file','2018/07/DesignPasoRobles.png'),
(32799,3222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1892;s:6:\"height\";i:980;s:4:\"file\";s:28:\"2018/07/DesignPasoRobles.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"DesignPasoRobles-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"DesignPasoRobles-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"DesignPasoRobles-768x398.png\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"DesignPasoRobles-1024x530.png\";s:5:\"width\";i:1024;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"DesignPasoRobles-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"DesignPasoRobles-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"DesignPasoRobles-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"DesignPasoRobles-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(32811,3225,'_wp_attached_file','2018/07/DesignCalistoga.png'),
(32812,3225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1899;s:6:\"height\";i:980;s:4:\"file\";s:27:\"2018/07/DesignCalistoga.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"DesignCalistoga-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"DesignCalistoga-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"DesignCalistoga-768x396.png\";s:5:\"width\";i:768;s:6:\"height\";i:396;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"DesignCalistoga-1024x528.png\";s:5:\"width\";i:1024;s:6:\"height\";i:528;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"DesignCalistoga-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"DesignCalistoga-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"DesignCalistoga-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"DesignCalistoga-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33074,3267,'_edit_lock','1538590959:10'),
(33075,3267,'_edit_last','2'),
(33076,3268,'_wp_attached_file','2018/07/MollyGregg-Apelgren1-368-x-358.jpg'),
(33077,3268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:368;s:6:\"height\";i:358;s:4:\"file\";s:42:\"2018/07/MollyGregg-Apelgren1-368-x-358.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"MollyGregg-Apelgren1-368-x-358-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"MollyGregg-Apelgren1-368-x-358-300x292.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:42:\"MollyGregg-Apelgren1-368-x-358-368x300.jpg\";s:5:\"width\";i:368;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33078,3267,'_yoast_wpseo_primary_category',''),
(33079,3267,'ninzio_post_audio_mp3',''),
(33080,3267,'ninzio_post_audio_ogg',''),
(33081,3267,'ninzio_post_audio_embed',''),
(33082,3267,'ninzio_post_video_mp4',''),
(33083,3267,'ninzio_post_video_ogv',''),
(33084,3267,'ninzio_post_video_webm',''),
(33085,3267,'ninzio_post_video_embed',''),
(33086,3267,'ninzio_post_video_poster',''),
(33087,3267,'ninzio_post_link_url',''),
(33088,3267,'ninzio_post_image_url',''),
(33089,3267,'ninzio_post_image_description',''),
(33090,3267,'ninzio_post_status_author',''),
(33091,3267,'ninzio_post_quote_author',''),
(33092,3267,'ninzio_post_featured_media','yes'),
(33093,3267,'_yoast_wpseo_content_score','30'),
(33102,3267,'_wpas_done_all','1'),
(33104,3267,'_yoast_wpseo_focuskw_text_input','Wed Design, Web Designer'),
(33105,3267,'_yoast_wpseo_focuskw','Wed Design, Web Designer'),
(33106,3267,'_yoast_wpseo_linkdex','61'),
(33207,3271,'_wp_attached_file','2018/07/PricingChart_7.png'),
(33208,3271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:933;s:6:\"height\";i:1044;s:4:\"file\";s:26:\"2018/07/PricingChart_7.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"PricingChart_7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"PricingChart_7-268x300.png\";s:5:\"width\";i:268;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"PricingChart_7-768x859.png\";s:5:\"width\";i:768;s:6:\"height\";i:859;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"PricingChart_7-915x1024.png\";s:5:\"width\";i:915;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"PricingChart_7-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"PricingChart_7-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"PricingChart_7-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:26:\"PricingChart_7-933x588.png\";s:5:\"width\";i:933;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33214,3275,'_edit_lock','1640998729:2'),
(33215,3275,'_edit_last','2'),
(33253,3275,'_wp_page_template','default'),
(33254,3275,'_yoast_wpseo_content_score','60'),
(33279,3281,'_wp_attached_file','2018/07/header-design-portfolio.jpg'),
(33280,3281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:35:\"2018/07/header-design-portfolio.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"header-design-portfolio-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"header-design-portfolio-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"header-design-portfolio-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:35:\"header-design-portfolio-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:35:\"header-design-portfolio-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:35:\"header-design-portfolio-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33281,3275,'ninzio_page_subtitle',''),
(33282,3275,'ninzio_page_sidebar','none'),
(33283,3275,'ninzio_page_title_background_color',''),
(33284,3275,'ninzio_page_title_background_color_opacity','1'),
(33285,3275,'ninzio_page_title_text_color','#ffffff'),
(33286,3275,'ninzio_page_subtitle_background_color',''),
(33287,3275,'ninzio_page_subtitle_background_color_opacity','1'),
(33288,3275,'ninzio_page_subtitle_text_color','#444444'),
(33289,3275,'ninzio_page_title_section_background_color','#f6f6f6'),
(33290,3275,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/08/header-design-portfolio6-4.jpg'),
(33291,3275,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(33292,3275,'ninzio_page_title_section_background_image_position','left_top'),
(33293,3275,'ninzio_page_title_section_background_image_attachment','scroll'),
(33294,3275,'ninzio_page_title_section_background_image_size','auto'),
(33295,3275,'ninzio_one_page','no'),
(33296,3275,'ninzio_slider','no'),
(33297,3275,'ninzio_page_layout','yes'),
(33298,3275,'ninzio_page_twitter','no'),
(33299,3275,'ninzio_page_padding_top','yes'),
(33300,3275,'ninzio_rich_header','yes'),
(33301,3275,'ninzio_page_title_section_background_image_parallax','no'),
(33329,3288,'_wp_attached_file','2018/07/showcase-5by10-wines-main.jpg'),
(33330,3288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:872;s:4:\"file\";s:37:\"2018/07/showcase-5by10-wines-main.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"showcase-5by10-wines-main-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"showcase-5by10-wines-main-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"showcase-5by10-wines-main-768x536.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"showcase-5by10-wines-main-1024x714.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:714;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:37:\"showcase-5by10-wines-main-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:37:\"showcase-5by10-wines-main-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:37:\"showcase-5by10-wines-main-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:38:\"showcase-5by10-wines-main-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33331,3289,'_wp_attached_file','2018/07/layout-5by10-wines.jpg'),
(33332,3289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1762;s:6:\"height\";i:6555;s:4:\"file\";s:30:\"2018/07/layout-5by10-wines.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"layout-5by10-wines-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"layout-5by10-wines-81x300.jpg\";s:5:\"width\";i:81;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"layout-5by10-wines-768x2857.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2857;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"layout-5by10-wines-275x1024.jpg\";s:5:\"width\";i:275;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"layout-5by10-wines-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"layout-5by10-wines-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"layout-5by10-wines-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"layout-5by10-wines-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33350,3290,'_wp_attached_file','2018/07/showcase-Q-spirits.jpg'),
(33351,3290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1250;s:6:\"height\";i:872;s:4:\"file\";s:30:\"2018/07/showcase-Q-spirits.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"showcase-Q-spirits-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"showcase-Q-spirits-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"showcase-Q-spirits-768x536.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"showcase-Q-spirits-1024x714.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:714;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"showcase-Q-spirits-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"showcase-Q-spirits-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"showcase-Q-spirits-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"showcase-Q-spirits-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33352,3291,'_wp_attached_file','2018/07/layout-Qspirits.jpg'),
(33353,3291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1762;s:6:\"height\";i:3409;s:4:\"file\";s:27:\"2018/07/layout-Qspirits.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"layout-Qspirits-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"layout-Qspirits-155x300.jpg\";s:5:\"width\";i:155;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"layout-Qspirits-768x1486.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1486;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"layout-Qspirits-529x1024.jpg\";s:5:\"width\";i:529;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"layout-Qspirits-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"layout-Qspirits-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"layout-Qspirits-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"layout-Qspirits-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33360,3292,'_edit_lock','1559800349:2'),
(33361,3292,'_edit_last','2'),
(33363,3292,'_wp_page_template','default'),
(33364,3292,'ninzio_page_subtitle',''),
(33365,3292,'ninzio_page_sidebar','none'),
(33366,3292,'ninzio_page_title_background_color',''),
(33367,3292,'ninzio_page_title_background_color_opacity','1'),
(33368,3292,'ninzio_page_title_text_color','#444444'),
(33369,3292,'ninzio_page_subtitle_background_color',''),
(33370,3292,'ninzio_page_subtitle_background_color_opacity','1'),
(33371,3292,'ninzio_page_subtitle_text_color','#444444'),
(33372,3292,'ninzio_page_title_section_background_color','#f6f6f6'),
(33373,3292,'ninzio_page_title_section_background_image',''),
(33374,3292,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(33375,3292,'ninzio_page_title_section_background_image_position','left_top'),
(33376,3292,'ninzio_page_title_section_background_image_attachment','scroll'),
(33377,3292,'ninzio_page_title_section_background_image_size','auto'),
(33378,3292,'ninzio_one_page','no'),
(33379,3292,'ninzio_slider','no'),
(33380,3292,'ninzio_page_layout','no'),
(33381,3292,'ninzio_page_twitter','no'),
(33382,3292,'ninzio_page_padding_top','yes'),
(33383,3292,'ninzio_rich_header','yes'),
(33384,3292,'ninzio_page_title_section_background_image_parallax','no'),
(33385,3292,'_yoast_wpseo_content_score','30'),
(33413,3296,'_wp_attached_file','2018/07/header-design-portfolio4.jpg'),
(33414,3296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:36:\"2018/07/header-design-portfolio4.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"header-design-portfolio4-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio4-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio4-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio4-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio4-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio4-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio4-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33416,3298,'_wp_attached_file','2018/07/header-design-portfolio4-1.jpg'),
(33417,3298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:38:\"2018/07/header-design-portfolio4-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio4-1-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio4-1-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio4-1-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio4-1-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio4-1-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio4-1-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio4-1-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33447,3302,'_edit_lock','1542169156:2'),
(33448,3302,'_edit_last','2'),
(33449,3302,'_wp_page_template','default'),
(33450,3302,'ninzio_page_subtitle',''),
(33451,3302,'ninzio_page_sidebar','none'),
(33452,3302,'ninzio_page_title_background_color',''),
(33453,3302,'ninzio_page_title_background_color_opacity','1'),
(33454,3302,'ninzio_page_title_text_color','#ffffff'),
(33455,3302,'ninzio_page_subtitle_background_color',''),
(33456,3302,'ninzio_page_subtitle_background_color_opacity','1'),
(33457,3302,'ninzio_page_subtitle_text_color','#444444'),
(33458,3302,'ninzio_page_title_section_background_color','#f6f6f6'),
(33459,3302,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/04/aboutus_2.png'),
(33460,3302,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(33461,3302,'ninzio_page_title_section_background_image_position','center_center'),
(33462,3302,'ninzio_page_title_section_background_image_attachment','scroll'),
(33463,3302,'ninzio_page_title_section_background_image_size','auto'),
(33464,3302,'ninzio_one_page','no'),
(33465,3302,'ninzio_slider','no'),
(33466,3302,'ninzio_page_layout','no'),
(33467,3302,'ninzio_page_twitter','no'),
(33468,3302,'ninzio_page_padding_top','yes'),
(33469,3302,'ninzio_rich_header','yes'),
(33470,3302,'ninzio_page_title_section_background_image_parallax','no'),
(33471,3302,'_yoast_wpseo_content_score','90'),
(33580,3321,'_edit_lock','1640912173:2'),
(33581,3321,'_edit_last','15'),
(33582,3322,'_wp_attached_file','2018/07/showcase-5by10-wines.jpg'),
(33583,3322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:1996;s:4:\"file\";s:32:\"2018/07/showcase-5by10-wines.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-768x613.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:613;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"showcase-5by10-wines-1024x818.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:818;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:33:\"showcase-5by10-wines-1700x860.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:32:\"showcase-5by10-wines-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:33:\"showcase-5by10-wines-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33585,3321,'_yoast_wpseo_primary_portfolio_type',''),
(33586,3321,'qc_portfolio_wysiwyg','[portfolio-x mode=\"portfolio\" portfolio=\"3338\" theme_style=\"template-01\" orderby=\"menu_order\" order=\"ASC\"]'),
(33588,3321,'_yoast_wpseo_content_score','30'),
(33589,3323,'_edit_lock','1533757178:15'),
(33590,3323,'_edit_last','15'),
(33591,3324,'_wp_attached_file','2018/07/showcase-Q-spirits-2.jpg'),
(33592,3324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2000;s:4:\"file\";s:32:\"2018/07/showcase-Q-spirits-2.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"showcase-Q-spirits-2-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:33:\"showcase-Q-spirits-2-1700x860.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:32:\"showcase-Q-spirits-2-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:33:\"showcase-Q-spirits-2-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33593,3323,'_thumbnail_id','3366'),
(33594,3323,'_yoast_wpseo_primary_portfolio_type',''),
(33595,3323,'qc_portfolio_wysiwyg','[portfolio-x mode=\"portfolio\" portfolio=\"3338\" theme_style=\"template-01\" orderby=\"menu_order\" order=\"ASC\"]\r\n\r\n&nbsp;'),
(33597,3323,'_yoast_wpseo_content_score','30'),
(33598,3325,'_edit_lock','1640897404:2'),
(33599,3325,'_edit_last','15'),
(33600,3326,'_wp_attached_file','2018/07/my-vine-2-1024x666.jpg'),
(33601,3326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:666;s:4:\"file\";s:30:\"2018/07/my-vine-2-1024x666.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-768x500.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"my-vine-2-1024x666-1024x666.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:666;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-666x666.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:666;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:30:\"my-vine-2-1024x666-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"my-vine-2-1024x666-1024x588.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33602,3327,'_wp_attached_file','2018/07/my-vine-feature-1024x569.jpg'),
(33603,3327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:569;s:4:\"file\";s:36:\"2018/07/my-vine-feature-1024x569.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"my-vine-feature-1024x569-1024x569.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-666x569.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-650x569.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:36:\"my-vine-feature-1024x569-894x569.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33604,3325,'_thumbnail_id','3380'),
(33605,3325,'_yoast_wpseo_primary_portfolio_type',''),
(33606,3325,'qc_portfolio_wysiwyg','[portfolio-x mode=\"portfolio\" portfolio=\"3338\" theme_style=\"template-01\" orderby=\"menu_order\" order=\"ASC\"]'),
(33607,3325,'qc_portfolio_gallery_images','a:3:{i:3381;s:84:\"https://activeclubsolutions.net/wp-content/uploads/2018/07/my-vine-travel-page-2.jpg\";i:3382;s:77:\"https://activeclubsolutions.net/wp-content/uploads/2018/07/my-vine-home-2.jpg\";i:3326;s:81:\"https://activeclubsolutions.net/wp-content/uploads/2018/07/my-vine-2-1024x666.jpg\";}'),
(33608,3325,'_yoast_wpseo_content_score','30'),
(33615,3329,'_edit_lock','1533758374:15'),
(33616,3329,'_edit_last','15'),
(33617,3330,'_wp_attached_file','2018/07/byron_l2_3_0.jpg'),
(33618,3330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:344;s:6:\"height\";i:429;s:4:\"file\";s:24:\"2018/07/byron_l2_3_0.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"byron_l2_3_0-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"byron_l2_3_0-241x300.jpg\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:24:\"byron_l2_3_0-344x400.jpg\";s:5:\"width\";i:344;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:24:\"byron_l2_3_0-344x333.jpg\";s:5:\"width\";i:344;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"byron_l2_3_0-344x300.jpg\";s:5:\"width\";i:344;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33619,3331,'_wp_attached_file','2018/07/port-thumb-7-1024x714.jpg'),
(33620,3331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:714;s:4:\"file\";s:33:\"2018/07/port-thumb-7-1024x714.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-768x536.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"port-thumb-7-1024x714-1024x714.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:714;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-666x714.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:714;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:33:\"port-thumb-7-1024x714-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:34:\"port-thumb-7-1024x714-1024x588.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33621,3329,'_thumbnail_id','3385'),
(33622,3329,'_yoast_wpseo_primary_portfolio_type',''),
(33623,3329,'qc_portfolio_wysiwyg','[portfolio-x mode=\"portfolio\" portfolio=\"3338\" theme_style=\"template-01\" orderby=\"menu_order\" order=\"ASC\"]\r\n\r\n&nbsp;'),
(33624,3329,'qc_portfolio_gallery_images','a:2:{i:3384;s:82:\"https://activeclubsolutions.net/wp-content/uploads/2018/07/feature-image-byron.jpg\";i:3330;s:75:\"https://activeclubsolutions.net/wp-content/uploads/2018/07/byron_l2_3_0.jpg\";}'),
(33625,3329,'_yoast_wpseo_content_score','60'),
(33633,3338,'_edit_lock','1640896306:2'),
(33634,3338,'_edit_last','2'),
(33635,3338,'qc_port_settings_template','template-02'),
(33636,3338,'qc_port_settings_orderby','date'),
(33637,3338,'qc_port_settings_order','ASC'),
(33639,3329,'qc_portfolio_portfolio_assigned','a:1:{i:0;s:4:\"3338\";}'),
(33670,3345,'_edit_lock','1558477505:2'),
(33671,3345,'_edit_last','15'),
(33672,3345,'_wp_page_template','default'),
(33673,3345,'ninzio_page_subtitle',''),
(33674,3345,'ninzio_page_sidebar','none'),
(33675,3345,'ninzio_page_title_background_color',''),
(33676,3345,'ninzio_page_title_background_color_opacity','1'),
(33677,3345,'ninzio_page_title_text_color','#444444'),
(33678,3345,'ninzio_page_subtitle_background_color',''),
(33679,3345,'ninzio_page_subtitle_background_color_opacity','1'),
(33680,3345,'ninzio_page_subtitle_text_color','#444444'),
(33681,3345,'ninzio_page_title_section_background_color','#f6f6f6'),
(33682,3345,'ninzio_page_title_section_background_image',''),
(33683,3345,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(33684,3345,'ninzio_page_title_section_background_image_position','left_top'),
(33685,3345,'ninzio_page_title_section_background_image_attachment','scroll'),
(33686,3345,'ninzio_page_title_section_background_image_size','auto'),
(33687,3345,'ninzio_one_page','no'),
(33688,3345,'ninzio_slider','no'),
(33689,3345,'ninzio_page_layout','no'),
(33690,3345,'ninzio_page_twitter','no'),
(33691,3345,'ninzio_page_padding_top','yes'),
(33692,3345,'ninzio_rich_header','yes'),
(33693,3345,'ninzio_page_title_section_background_image_parallax','no'),
(33694,3345,'_yoast_wpseo_content_score','30'),
(33859,3359,'_edit_lock','1533689139:15'),
(33860,3359,'_edit_last','15'),
(33871,3325,'qc_portfolio_portfolio_assigned','a:1:{i:0;s:4:\"3338\";}'),
(33873,3323,'qc_portfolio_portfolio_assigned','a:1:{i:0;s:4:\"3338\";}'),
(33874,3321,'qc_portfolio_portfolio_assigned','a:1:{i:0;s:4:\"3338\";}'),
(33877,3366,'_wp_attached_file','2018/07/feature-image-Q.jpg'),
(33878,3366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:975;s:6:\"height\";i:961;s:4:\"file\";s:27:\"2018/07/feature-image-Q.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-768x757.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-975x860.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"feature-image-Q-975x588.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33879,3323,'qc_portfolio_gallery_images','a:3:{i:3291;s:78:\"https://activeclubsolutions.net/wp-content/uploads/2018/07/layout-Qspirits.jpg\";i:3290;s:81:\"https://activeclubsolutions.net/wp-content/uploads/2018/07/showcase-Q-spirits.jpg\";i:3324;s:83:\"https://activeclubsolutions.net/wp-content/uploads/2018/07/showcase-Q-spirits-2.jpg\";}'),
(33883,3323,'_wp_old_date','2018-08-01'),
(33895,3321,'qc_portfolio_gallery_images','a:2:{i:3289;s:81:\"https://activeclubsolutions.net/wp-content/uploads/2018/07/layout-5by10-wines.jpg\";i:3322;s:83:\"https://activeclubsolutions.net/wp-content/uploads/2018/07/showcase-5by10-wines.jpg\";}'),
(33897,3374,'_wp_attached_file','2018/07/feature-image-5by10-4.jpg'),
(33898,3374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:975;s:6:\"height\";i:961;s:4:\"file\";s:33:\"2018/07/feature-image-5by10-4.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-768x757.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-975x860.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:33:\"feature-image-5by10-4-975x588.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33899,3321,'_thumbnail_id','3374'),
(33901,3375,'_wp_attached_file','2018/07/plus-icon.png'),
(33902,3375,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:18;s:6:\"height\";i:17;s:4:\"file\";s:21:\"2018/07/plus-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33909,3376,'_wp_attached_file','2018/07/plus-icon2.png'),
(33910,3376,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:18;s:6:\"height\";i:17;s:4:\"file\";s:22:\"2018/07/plus-icon2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33926,3378,'_wp_attached_file','2018/07/feature-image-my-vine.jpg'),
(33927,3378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:975;s:6:\"height\";i:961;s:4:\"file\";s:33:\"2018/07/feature-image-my-vine.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-768x757.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-975x860.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:33:\"feature-image-my-vine-975x588.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33931,3380,'_wp_attached_file','2018/07/feature-image-my-vine-1.jpg'),
(33932,3380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:975;s:6:\"height\";i:961;s:4:\"file\";s:35:\"2018/07/feature-image-my-vine-1.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-768x757.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-975x860.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:35:\"feature-image-my-vine-1-975x588.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33934,3381,'_wp_attached_file','2018/07/my-vine-travel-page-2.jpg'),
(33935,3381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:1578;s:4:\"file\";s:33:\"2018/07/my-vine-travel-page-2.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-153x300.jpg\";s:5:\"width\";i:153;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"my-vine-travel-page-2-768x1507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"my-vine-travel-page-2-522x1024.jpg\";s:5:\"width\";i:522;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-804x475.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-804x860.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-804x588.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:33:\"my-vine-travel-page-2-804x588.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33936,3382,'_wp_attached_file','2018/07/my-vine-home-2.jpg'),
(33937,3382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:804;s:6:\"height\";i:912;s:4:\"file\";s:26:\"2018/07/my-vine-home-2.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-264x300.jpg\";s:5:\"width\";i:264;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-768x871.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:871;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-804x475.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-804x860.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-804x588.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:26:\"my-vine-home-2-804x588.jpg\";s:5:\"width\";i:804;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33938,3384,'_wp_attached_file','2018/07/feature-image-byron.jpg'),
(33939,3384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:975;s:6:\"height\";i:961;s:4:\"file\";s:31:\"2018/07/feature-image-byron.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-768x757.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-975x860.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:31:\"feature-image-byron-975x588.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33940,3385,'_wp_attached_file','2018/07/feature-image-byron-1.jpg'),
(33941,3385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:975;s:6:\"height\";i:961;s:4:\"file\";s:33:\"2018/07/feature-image-byron-1.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-768x757.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-975x860.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:33:\"feature-image-byron-1-975x588.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33943,3386,'_edit_lock','1533758165:15'),
(33944,3386,'_edit_last','15'),
(33945,3387,'_wp_attached_file','2018/08/feature-image-the-bench.jpg'),
(33946,3387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:975;s:6:\"height\";i:961;s:4:\"file\";s:35:\"2018/08/feature-image-the-bench.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-768x757.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-975x860.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:35:\"feature-image-the-bench-975x588.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33947,3388,'_wp_attached_file','2018/08/bench-2-1024x777.jpg'),
(33948,3388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:777;s:4:\"file\";s:28:\"2018/08/bench-2-1024x777.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-300x228.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-768x583.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:583;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"bench-2-1024x777-1024x777.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:777;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-666x777.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:777;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"bench-2-1024x777-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"bench-2-1024x777-1024x588.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33949,3389,'_wp_attached_file','2018/08/bench-feature-1024x569.jpg'),
(33950,3389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:569;s:4:\"file\";s:34:\"2018/08/bench-feature-1024x569.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"bench-feature-1024x569-1024x569.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-666x569.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-650x569.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:34:\"bench-feature-1024x569-894x569.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33951,3386,'_thumbnail_id','3387'),
(33952,3386,'_yoast_wpseo_primary_portfolio_type',''),
(33953,3386,'qc_portfolio_gallery_images','a:2:{i:3388;s:79:\"https://activeclubsolutions.net/wp-content/uploads/2018/08/bench-2-1024x777.jpg\";i:3389;s:85:\"https://activeclubsolutions.net/wp-content/uploads/2018/08/bench-feature-1024x569.jpg\";}'),
(33954,3386,'qc_portfolio_portfolio_assigned','a:1:{i:0;s:4:\"3338\";}'),
(33955,3386,'_yoast_wpseo_content_score','30'),
(33957,3386,'qc_portfolio_wysiwyg','[portfolio-x mode=\"portfolio\" portfolio=\"3338\" theme_style=\"template-01\" orderby=\"menu_order\" order=\"ASC\"]\r\n'),
(33958,3386,'_wp_old_date','2018-08-08'),
(33961,3323,'_wp_old_date','2018-07-31'),
(33962,3321,'_wp_old_date','2018-07-31'),
(33963,3329,'_wp_old_date','2018-07-31'),
(33964,3325,'_wp_old_date','2018-07-31'),
(33965,3386,'_wp_old_date','2018-07-08'),
(33966,3391,'_edit_lock','1533762171:15'),
(33967,3391,'_edit_last','15'),
(33968,3392,'_wp_attached_file','2018/08/feature-image-cambria.jpg'),
(33969,3392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:975;s:6:\"height\";i:961;s:4:\"file\";s:33:\"2018/08/feature-image-cambria.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-768x757.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-975x860.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:33:\"feature-image-cambria-975x588.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33970,3391,'_thumbnail_id','3392'),
(33971,3391,'_yoast_wpseo_primary_portfolio_type',''),
(33972,3391,'qc_portfolio_wysiwyg','[portfolio-x mode=\"portfolio\" portfolio=\"3338\" theme_style=\"template-01\" orderby=\"menu_order\" order=\"ASC\"]\r\n\r\n&nbsp;'),
(33973,3391,'qc_portfolio_portfolio_assigned','a:1:{i:0;s:4:\"3338\";}'),
(33974,3391,'_yoast_wpseo_content_score','30'),
(33981,3394,'_wp_attached_file','2018/08/cambria-1-back-1024x698.jpg'),
(33982,3394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:698;s:4:\"file\";s:35:\"2018/08/cambria-1-back-1024x698.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-768x524.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:524;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"cambria-1-back-1024x698-1024x698.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:698;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-666x698.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:698;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:35:\"cambria-1-back-1024x698-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:36:\"cambria-1-back-1024x698-1024x588.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33983,3395,'_wp_attached_file','2018/08/cambria-2-new-1024x732.jpg'),
(33984,3395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:732;s:4:\"file\";s:34:\"2018/08/cambria-2-new-1024x732.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"cambria-2-new-1024x732-1024x732.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:732;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-666x732.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:732;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:34:\"cambria-2-new-1024x732-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:35:\"cambria-2-new-1024x732-1024x588.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33985,3391,'qc_portfolio_gallery_images','a:2:{i:3394;s:86:\"https://activeclubsolutions.net/wp-content/uploads/2018/08/cambria-1-back-1024x698.jpg\";i:3395;s:85:\"https://activeclubsolutions.net/wp-content/uploads/2018/08/cambria-2-new-1024x732.jpg\";}'),
(33987,3396,'_edit_lock','1640915446:2'),
(33988,3396,'_edit_last','15'),
(33989,3397,'_wp_attached_file','2018/08/feature-image-le-crema.jpg'),
(33990,3397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:975;s:6:\"height\";i:961;s:4:\"file\";s:34:\"2018/08/feature-image-le-crema.jpg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-300x296.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-768x757.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:757;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-975x860.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:34:\"feature-image-le-crema-975x588.jpg\";s:5:\"width\";i:975;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33991,3396,'_thumbnail_id','3397'),
(33992,3396,'_yoast_wpseo_primary_portfolio_type',''),
(33993,3396,'qc_portfolio_wysiwyg','[portfolio-x mode=\"portfolio\" portfolio=\"3338\" theme_style=\"template-01\" orderby=\"menu_order\" order=\"ASC\"]\r\n\r\n&nbsp;'),
(33994,3396,'_yoast_wpseo_content_score','30'),
(33995,3399,'_wp_attached_file','2018/08/le-crema-2.jpg'),
(33996,3399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:2000;s:4:\"file\";s:22:\"2018/08/le-crema-2.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"le-crema-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"le-crema-2-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"le-crema-2-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"le-crema-2-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:22:\"le-crema-2-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:22:\"le-crema-2-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:22:\"le-crema-2-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:22:\"le-crema-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:22:\"le-crema-2-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:23:\"le-crema-2-1700x860.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:22:\"le-crema-2-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:22:\"le-crema-2-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:22:\"le-crema-2-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"le-crema-2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:22:\"le-crema-2-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:23:\"le-crema-2-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33997,3400,'_wp_attached_file','2018/08/la-crema-layout.jpg'),
(33998,3400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1332;s:6:\"height\";i:2538;s:4:\"file\";s:27:\"2018/08/la-crema-layout.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-157x300.jpg\";s:5:\"width\";i:157;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"la-crema-layout-768x1463.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1463;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"la-crema-layout-537x1024.jpg\";s:5:\"width\";i:537;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:28:\"la-crema-layout-1332x860.jpg\";s:5:\"width\";i:1332;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:27:\"la-crema-layout-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:28:\"la-crema-layout-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(33999,3396,'qc_portfolio_gallery_images','a:2:{i:3399;s:73:\"https://activeclubsolutions.net/wp-content/uploads/2018/08/le-crema-2.jpg\";i:3400;s:78:\"https://activeclubsolutions.net/wp-content/uploads/2018/08/la-crema-layout.jpg\";}'),
(34003,3396,'qc_portfolio_portfolio_assigned','a:1:{i:0;s:4:\"3338\";}'),
(34005,3401,'_wp_attached_file','2018/08/molly_gregg_apelgren.png'),
(34006,3401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:254;s:6:\"height\";i:254;s:4:\"file\";s:32:\"2018/08/molly_gregg_apelgren.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"molly_gregg_apelgren-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:{}}}'),
(34092,3405,'_wp_attached_file','2018/08/header-design-portfolio5.jpg'),
(34093,3405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:36:\"2018/08/header-design-portfolio5.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"header-design-portfolio5-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio5-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-650x500.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio5-1700x500.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio5-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio5-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34095,3407,'_wp_attached_file','2018/08/header-design-portfolio5-1.jpg'),
(34096,3407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:38:\"2018/08/header-design-portfolio5-1.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio5-1-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio5-1-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-650x500.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio5-1-1700x500.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-1-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio5-1-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34101,3408,'_wp_attached_file','2018/08/header-design-portfolio5-2.jpg'),
(34102,3408,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:38:\"2018/08/header-design-portfolio5-2.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio5-2-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio5-2-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-650x500.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio5-2-1700x500.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio5-2-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio5-2-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34111,3409,'_menu_item_type','post_type'),
(34112,3409,'_menu_item_menu_item_parent','1444'),
(34113,3409,'_menu_item_object_id','3275'),
(34114,3409,'_menu_item_object','page'),
(34115,3409,'_menu_item_target',''),
(34116,3409,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(34117,3409,'_menu_item_xfn',''),
(34118,3409,'_menu_item_url',''),
(34125,3410,'_wp_attached_file','2018/08/header-design-portfolio6.jpg'),
(34126,3410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:36:\"2018/08/header-design-portfolio6.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"header-design-portfolio6-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio6-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-650x500.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio6-1700x500.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:36:\"header-design-portfolio6-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio6-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34128,3411,'_wp_attached_file','2018/08/header-design-portfolio6-1.jpg'),
(34129,3411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:38:\"2018/08/header-design-portfolio6-1.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio6-1-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-1-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-650x500.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-1-1700x500.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-1-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-1-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34131,3412,'_wp_attached_file','2018/08/header-design-portfolio6-2.jpg'),
(34132,3412,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:38:\"2018/08/header-design-portfolio6-2.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio6-2-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-2-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-650x500.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-2-1700x500.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-2-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-2-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34134,3413,'_wp_attached_file','2018/08/header-design-portfolio6-3.jpg'),
(34135,3413,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:38:\"2018/08/header-design-portfolio6-3.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio6-3-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-3-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-650x500.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-3-1700x500.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-3-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-3-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34137,3414,'_wp_attached_file','2018/08/header-design-portfolio6-4.jpg'),
(34138,3414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:38:\"2018/08/header-design-portfolio6-4.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"header-design-portfolio6-4-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-4-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-650x500.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-4-1700x500.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:38:\"header-design-portfolio6-4-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:39:\"header-design-portfolio6-4-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34239,3417,'_edit_lock','1560321573:2'),
(34240,3417,'_edit_last','2'),
(34241,3417,'_wp_page_template','default'),
(34242,3417,'ninzio_page_subtitle',''),
(34243,3417,'ninzio_page_sidebar','none'),
(34244,3417,'ninzio_page_title_background_color',''),
(34245,3417,'ninzio_page_title_background_color_opacity','1'),
(34246,3417,'ninzio_page_title_text_color','#444444'),
(34247,3417,'ninzio_page_subtitle_background_color',''),
(34248,3417,'ninzio_page_subtitle_background_color_opacity','1'),
(34249,3417,'ninzio_page_subtitle_text_color','#444444'),
(34250,3417,'ninzio_page_title_section_background_color','#f6f6f6'),
(34251,3417,'ninzio_page_title_section_background_image',''),
(34252,3417,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(34253,3417,'ninzio_page_title_section_background_image_position','left_top'),
(34254,3417,'ninzio_page_title_section_background_image_attachment','scroll'),
(34255,3417,'ninzio_page_title_section_background_image_size','auto'),
(34256,3417,'ninzio_one_page','no'),
(34257,3417,'ninzio_slider','no'),
(34258,3417,'ninzio_page_layout','yes'),
(34259,3417,'ninzio_page_twitter','no'),
(34260,3417,'ninzio_page_padding_top','yes'),
(34261,3417,'ninzio_rich_header','no'),
(34262,3417,'ninzio_page_title_section_background_image_parallax','no'),
(34263,3417,'_yoast_wpseo_content_score','30'),
(34310,3419,'_wp_attached_file','2018/08/WPE-300x250-fastest-3.jpg'),
(34311,3419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:33:\"2018/08/WPE-300x250-fastest-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"WPE-300x250-fastest-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"WPE-300x250-fastest-3-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34312,3420,'_wp_attached_file','2018/08/YourWordPressDXP728x90.png'),
(34313,3420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:728;s:6:\"height\";i:90;s:4:\"file\";s:34:\"2018/08/YourWordPressDXP728x90.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"YourWordPressDXP728x90-150x90.png\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"YourWordPressDXP728x90-300x37.png\";s:5:\"width\";i:300;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:33:\"YourWordPressDXP728x90-400x90.png\";s:5:\"width\";i:400;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:33:\"YourWordPressDXP728x90-610x90.png\";s:5:\"width\";i:610;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:33:\"YourWordPressDXP728x90-666x90.png\";s:5:\"width\";i:666;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:33:\"YourWordPressDXP728x90-650x90.png\";s:5:\"width\";i:650;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:33:\"YourWordPressDXP728x90-450x90.png\";s:5:\"width\";i:450;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:33:\"YourWordPressDXP728x90-500x90.png\";s:5:\"width\";i:500;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:33:\"YourWordPressDXP728x90-600x90.png\";s:5:\"width\";i:600;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"YourWordPressDXP728x90-384x90.png\";s:5:\"width\";i:384;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34520,3424,'_edit_lock','1535066054:10'),
(34522,3424,'_edit_last','2'),
(34523,3424,'_yoast_wpseo_primary_category',''),
(34524,3424,'ninzio_post_audio_mp3',''),
(34525,3424,'ninzio_post_audio_ogg',''),
(34526,3424,'ninzio_post_audio_embed',''),
(34527,3424,'ninzio_post_video_mp4',''),
(34528,3424,'ninzio_post_video_ogv',''),
(34529,3424,'ninzio_post_video_webm',''),
(34530,3424,'ninzio_post_video_embed',''),
(34531,3424,'ninzio_post_video_poster',''),
(34532,3424,'ninzio_post_link_url',''),
(34533,3424,'ninzio_post_image_url',''),
(34534,3424,'ninzio_post_image_description',''),
(34535,3424,'ninzio_post_status_author',''),
(34536,3424,'ninzio_post_quote_author',''),
(34537,3424,'ninzio_post_featured_media','yes'),
(34538,3424,'_yoast_wpseo_content_score','60'),
(34542,3425,'_wp_attached_file','2018/08/No-DUPS_pic.png'),
(34543,3425,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:919;s:6:\"height\";i:446;s:4:\"file\";s:23:\"2018/08/No-DUPS_pic.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-768x373.png\";s:5:\"width\";i:768;s:6:\"height\";i:373;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-400x446.png\";s:5:\"width\";i:400;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-666x446.png\";s:5:\"width\";i:666;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-650x446.png\";s:5:\"width\";i:650;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-450x446.png\";s:5:\"width\";i:450;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-600x446.png\";s:5:\"width\";i:600;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"No-DUPS_pic-894x446.png\";s:5:\"width\";i:894;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(34547,3424,'_wpas_done_all','1'),
(34549,3424,'_wp_old_date','2018-08-23'),
(34550,3426,'_edit_lock','1553043439:10'),
(34551,3426,'_edit_last','2'),
(34552,3426,'_yoast_wpseo_primary_category',''),
(34553,3426,'ninzio_post_audio_mp3',''),
(34554,3426,'ninzio_post_audio_ogg',''),
(34555,3426,'ninzio_post_audio_embed',''),
(34556,3426,'ninzio_post_video_mp4',''),
(34557,3426,'ninzio_post_video_ogv',''),
(34558,3426,'ninzio_post_video_webm',''),
(34559,3426,'ninzio_post_video_embed',''),
(34560,3426,'ninzio_post_video_poster',''),
(34561,3426,'ninzio_post_link_url',''),
(34562,3426,'ninzio_post_image_url',''),
(34563,3426,'ninzio_post_image_description',''),
(34564,3426,'ninzio_post_status_author',''),
(34565,3426,'ninzio_post_quote_author',''),
(34566,3426,'ninzio_post_featured_media','yes'),
(34567,3426,'_yoast_wpseo_content_score','30'),
(34574,3426,'_wpas_done_all','1'),
(34576,3426,'_wp_old_date','2018-08-23'),
(34659,3431,'_edit_lock','1551155323:2'),
(34660,3431,'_edit_last','2'),
(34662,3433,'_edit_lock','1560224006:2'),
(34663,3433,'_edit_last','2'),
(34664,3433,'_wp_page_template','default'),
(34665,3433,'ninzio_page_subtitle',''),
(34666,3433,'ninzio_page_sidebar','none'),
(34667,3433,'ninzio_page_title_background_color',''),
(34668,3433,'ninzio_page_title_background_color_opacity','1'),
(34669,3433,'ninzio_page_title_text_color','#444444'),
(34670,3433,'ninzio_page_subtitle_background_color',''),
(34671,3433,'ninzio_page_subtitle_background_color_opacity','1'),
(34672,3433,'ninzio_page_subtitle_text_color','#444444'),
(34673,3433,'ninzio_page_title_section_background_color','#f6f6f6'),
(34674,3433,'ninzio_page_title_section_background_image',''),
(34675,3433,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(34676,3433,'ninzio_page_title_section_background_image_position','left_top'),
(34677,3433,'ninzio_page_title_section_background_image_attachment','scroll'),
(34678,3433,'ninzio_page_title_section_background_image_size','auto'),
(34679,3433,'ninzio_one_page','no'),
(34680,3433,'ninzio_slider','no'),
(34681,3433,'ninzio_page_layout','yes'),
(34682,3433,'ninzio_page_twitter','no'),
(34683,3433,'ninzio_page_padding_top','yes'),
(34684,3433,'ninzio_rich_header','no'),
(34685,3433,'ninzio_page_title_section_background_image_parallax','no'),
(34686,3433,'_yoast_wpseo_content_score','30'),
(35203,3441,'_edit_lock','1718224014:21'),
(35204,3441,'_edit_last','21'),
(35205,3441,'_wp_page_template','default'),
(35206,3441,'ninzio_page_subtitle',''),
(35207,3441,'ninzio_page_sidebar','none'),
(35208,3441,'ninzio_page_title_background_color',''),
(35209,3441,'ninzio_page_title_background_color_opacity','1'),
(35210,3441,'ninzio_page_title_text_color','#444444'),
(35211,3441,'ninzio_page_subtitle_background_color',''),
(35212,3441,'ninzio_page_subtitle_background_color_opacity','1'),
(35213,3441,'ninzio_page_subtitle_text_color','#444444'),
(35214,3441,'ninzio_page_title_section_background_color','#f6f6f6'),
(35215,3441,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/04/careersheader.png'),
(35216,3441,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(35217,3441,'ninzio_page_title_section_background_image_position','center_top'),
(35218,3441,'ninzio_page_title_section_background_image_attachment','scroll'),
(35219,3441,'ninzio_page_title_section_background_image_size','auto'),
(35220,3441,'ninzio_one_page','no'),
(35221,3441,'ninzio_slider','no'),
(35222,3441,'ninzio_page_layout','no'),
(35223,3441,'ninzio_page_twitter','no'),
(35224,3441,'ninzio_page_padding_top','yes'),
(35225,3441,'ninzio_rich_header','yes'),
(35226,3441,'ninzio_page_title_section_background_image_parallax','no'),
(35227,3441,'_yoast_wpseo_content_score','60'),
(35527,3446,'_wp_attached_file','2018/10/CISolutionsHeader.png'),
(35528,3446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1889;s:6:\"height\";i:308;s:4:\"file\";s:29:\"2018/10/CISolutionsHeader.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"CISolutionsHeader-300x49.png\";s:5:\"width\";i:300;s:6:\"height\";i:49;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-768x125.png\";s:5:\"width\";i:768;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"CISolutionsHeader-1024x167.png\";s:5:\"width\";i:1024;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-400x308.png\";s:5:\"width\";i:400;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-610x308.png\";s:5:\"width\";i:610;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-666x308.png\";s:5:\"width\";i:666;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-650x308.png\";s:5:\"width\";i:650;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-950x308.png\";s:5:\"width\";i:950;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:30:\"CISolutionsHeader-1700x308.png\";s:5:\"width\";i:1700;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-450x308.png\";s:5:\"width\";i:450;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-500x308.png\";s:5:\"width\";i:500;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-600x308.png\";s:5:\"width\";i:600;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"CISolutionsHeader-894x308.png\";s:5:\"width\";i:894;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"CISolutionsHeader-1200x308.png\";s:5:\"width\";i:1200;s:6:\"height\";i:308;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(35529,3447,'_edit_lock','1541049782:2'),
(35530,3447,'_edit_last','2'),
(35531,3447,'_wp_page_template','default'),
(35532,3447,'ninzio_page_subtitle',''),
(35533,3447,'ninzio_page_sidebar','none'),
(35534,3447,'ninzio_page_title_background_color',''),
(35535,3447,'ninzio_page_title_background_color_opacity','1'),
(35536,3447,'ninzio_page_title_text_color','#444444'),
(35537,3447,'ninzio_page_subtitle_background_color',''),
(35538,3447,'ninzio_page_subtitle_background_color_opacity','1'),
(35539,3447,'ninzio_page_subtitle_text_color','#444444'),
(35540,3447,'ninzio_page_title_section_background_color','#f6f6f6'),
(35541,3447,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/10/CISolutionsHeader.png'),
(35542,3447,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(35543,3447,'ninzio_page_title_section_background_image_position','center_center'),
(35544,3447,'ninzio_page_title_section_background_image_attachment','scroll'),
(35545,3447,'ninzio_page_title_section_background_image_size','auto'),
(35546,3447,'ninzio_one_page','no'),
(35547,3447,'ninzio_slider','no'),
(35548,3447,'ninzio_page_layout','no'),
(35549,3447,'ninzio_page_twitter','no'),
(35550,3447,'ninzio_page_padding_top','yes'),
(35551,3447,'ninzio_rich_header','no'),
(35552,3447,'ninzio_page_title_section_background_image_parallax','no'),
(35553,3447,'_yoast_wpseo_content_score','30'),
(35563,3449,'_wp_attached_file','2018/10/CISolutionsSample.png'),
(35564,3449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:793;s:6:\"height\";i:288;s:4:\"file\";s:29:\"2018/10/CISolutionsSample.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"CISolutionsSample-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"CISolutionsSample-300x109.png\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"CISolutionsSample-768x279.png\";s:5:\"width\";i:768;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:29:\"CISolutionsSample-400x288.png\";s:5:\"width\";i:400;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:29:\"CISolutionsSample-610x288.png\";s:5:\"width\";i:610;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:29:\"CISolutionsSample-666x288.png\";s:5:\"width\";i:666;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:29:\"CISolutionsSample-650x288.png\";s:5:\"width\";i:650;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:29:\"CISolutionsSample-450x288.png\";s:5:\"width\";i:450;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:29:\"CISolutionsSample-500x288.png\";s:5:\"width\";i:500;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"CISolutionsSample-600x288.png\";s:5:\"width\";i:600;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"CISolutionsSample-384x288.png\";s:5:\"width\";i:384;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(35569,3451,'_menu_item_type','post_type'),
(35570,3451,'_menu_item_menu_item_parent','1446'),
(35571,3451,'_menu_item_object_id','3447'),
(35572,3451,'_menu_item_object','page'),
(35573,3451,'_menu_item_target',''),
(35574,3451,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(35575,3451,'_menu_item_xfn',''),
(35576,3451,'_menu_item_url',''),
(35774,3454,'_edit_lock','1539311816:10'),
(35775,3454,'_edit_last','2'),
(35776,3454,'_yoast_wpseo_primary_category',''),
(35777,3454,'ninzio_post_audio_mp3',''),
(35778,3454,'ninzio_post_audio_ogg',''),
(35779,3454,'ninzio_post_audio_embed',''),
(35780,3454,'ninzio_post_video_mp4',''),
(35781,3454,'ninzio_post_video_ogv',''),
(35782,3454,'ninzio_post_video_webm',''),
(35783,3454,'ninzio_post_video_embed',''),
(35784,3454,'ninzio_post_video_poster',''),
(35785,3454,'ninzio_post_link_url',''),
(35786,3454,'ninzio_post_image_url',''),
(35787,3454,'ninzio_post_image_description',''),
(35788,3454,'ninzio_post_status_author',''),
(35789,3454,'ninzio_post_quote_author',''),
(35790,3454,'ninzio_post_featured_media','yes'),
(35791,3454,'_yoast_wpseo_content_score','30'),
(35798,3454,'_wpas_done_all','1'),
(35800,3454,'_wp_old_date','2018-10-11'),
(35801,3455,'_edit_lock','1539312771:10'),
(35802,3455,'_edit_last','2'),
(35803,3455,'_yoast_wpseo_primary_category','3'),
(35804,3455,'ninzio_post_audio_mp3',''),
(35805,3455,'ninzio_post_audio_ogg',''),
(35806,3455,'ninzio_post_audio_embed',''),
(35807,3455,'ninzio_post_video_mp4',''),
(35808,3455,'ninzio_post_video_ogv',''),
(35809,3455,'ninzio_post_video_webm',''),
(35810,3455,'ninzio_post_video_embed',''),
(35811,3455,'ninzio_post_video_poster',''),
(35812,3455,'ninzio_post_link_url',''),
(35813,3455,'ninzio_post_image_url',''),
(35814,3455,'ninzio_post_image_description',''),
(35815,3455,'ninzio_post_status_author',''),
(35816,3455,'ninzio_post_quote_author',''),
(35817,3455,'ninzio_post_featured_media','yes'),
(35818,3455,'_yoast_wpseo_content_score','30'),
(35825,3455,'_wpas_done_all','1'),
(35827,3455,'_wp_old_date','2018-10-11'),
(35828,3456,'_edit_lock','1539313169:10'),
(35829,3456,'_edit_last','2'),
(35830,3456,'_yoast_wpseo_primary_category',''),
(35831,3456,'ninzio_post_audio_mp3',''),
(35832,3456,'ninzio_post_audio_ogg',''),
(35833,3456,'ninzio_post_audio_embed',''),
(35834,3456,'ninzio_post_video_mp4',''),
(35835,3456,'ninzio_post_video_ogv',''),
(35836,3456,'ninzio_post_video_webm',''),
(35837,3456,'ninzio_post_video_embed',''),
(35838,3456,'ninzio_post_video_poster',''),
(35839,3456,'ninzio_post_link_url',''),
(35840,3456,'ninzio_post_image_url',''),
(35841,3456,'ninzio_post_image_description',''),
(35842,3456,'ninzio_post_status_author',''),
(35843,3456,'ninzio_post_quote_author',''),
(35844,3456,'ninzio_post_featured_media','yes'),
(35845,3456,'_yoast_wpseo_content_score','30'),
(35850,3456,'_wpas_done_all','1'),
(35852,3456,'_wp_old_date','2018-10-11'),
(36125,3462,'_wp_attached_file','2018/10/flyingemail.png'),
(36126,3462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:450;s:4:\"file\";s:23:\"2018/10/flyingemail.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"flyingemail-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"flyingemail-300x70.png\";s:5:\"width\";i:300;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"flyingemail-768x180.png\";s:5:\"width\";i:768;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"flyingemail-1024x240.png\";s:5:\"width\";i:1024;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:23:\"flyingemail-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:23:\"flyingemail-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:23:\"flyingemail-666x450.png\";s:5:\"width\";i:666;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:23:\"flyingemail-650x450.png\";s:5:\"width\";i:650;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:23:\"flyingemail-950x450.png\";s:5:\"width\";i:950;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:24:\"flyingemail-1700x450.png\";s:5:\"width\";i:1700;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:23:\"flyingemail-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:23:\"flyingemail-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"flyingemail-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"flyingemail-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"flyingemail-894x450.png\";s:5:\"width\";i:894;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"flyingemail-1200x450.png\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(36147,3464,'_wp_attached_file','2018/10/lavenderfields.png'),
(36148,3464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1910;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2018/10/lavenderfields.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"lavenderfields-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"lavenderfields-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"lavenderfields-768x201.png\";s:5:\"width\";i:768;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"lavenderfields-1024x268.png\";s:5:\"width\";i:1024;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:26:\"lavenderfields-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:26:\"lavenderfields-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:26:\"lavenderfields-666x500.png\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:26:\"lavenderfields-650x500.png\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:26:\"lavenderfields-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:27:\"lavenderfields-1700x500.png\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:26:\"lavenderfields-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:26:\"lavenderfields-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"lavenderfields-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"lavenderfields-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"lavenderfields-894x500.png\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"lavenderfields-1200x500.png\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(36267,3466,'_edit_lock','1541032060:10'),
(36268,3466,'_edit_last','2'),
(36269,3466,'_yoast_wpseo_primary_category',''),
(36270,3466,'ninzio_post_audio_mp3',''),
(36271,3466,'ninzio_post_audio_ogg',''),
(36272,3466,'ninzio_post_audio_embed',''),
(36273,3466,'ninzio_post_video_mp4',''),
(36274,3466,'ninzio_post_video_ogv',''),
(36275,3466,'ninzio_post_video_webm',''),
(36276,3466,'ninzio_post_video_embed',''),
(36277,3466,'ninzio_post_video_poster',''),
(36278,3466,'ninzio_post_link_url',''),
(36279,3466,'ninzio_post_image_url',''),
(36280,3466,'ninzio_post_image_description',''),
(36281,3466,'ninzio_post_status_author',''),
(36282,3466,'ninzio_post_quote_author',''),
(36283,3466,'ninzio_post_featured_media','yes'),
(36284,3466,'_yoast_wpseo_content_score','30'),
(36285,3468,'_wp_attached_file','2018/10/black-gift-card.jpg'),
(36286,3468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:27:\"2018/10/black-gift-card.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"black-gift-card-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(36294,3466,'_wpas_done_all','1'),
(36296,3466,'_wp_old_date','2018-10-26'),
(36448,3479,'_edit_lock','1541915944:2'),
(36449,3479,'_edit_last','2'),
(36450,3479,'_yoast_wpseo_primary_category',''),
(36451,3479,'ninzio_post_audio_mp3',''),
(36452,3479,'ninzio_post_audio_ogg',''),
(36453,3479,'ninzio_post_audio_embed',''),
(36454,3479,'ninzio_post_video_mp4',''),
(36455,3479,'ninzio_post_video_ogv',''),
(36456,3479,'ninzio_post_video_webm',''),
(36457,3479,'ninzio_post_video_embed',''),
(36458,3479,'ninzio_post_video_poster',''),
(36459,3479,'ninzio_post_link_url',''),
(36460,3479,'ninzio_post_image_url',''),
(36461,3479,'ninzio_post_image_description',''),
(36462,3479,'ninzio_post_status_author',''),
(36463,3479,'ninzio_post_quote_author',''),
(36464,3479,'ninzio_post_featured_media','yes'),
(36465,3479,'_yoast_wpseo_content_score','30'),
(36472,3479,'_wpas_done_all','1'),
(36474,3482,'_wp_attached_file','2018/10/favicon.ico'),
(36476,3381,'_edit_lock','1541039349:2'),
(36568,3484,'_wp_attached_file','2018/11/personcarryingbox.jpg'),
(36569,3484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:584;s:4:\"file\";s:29:\"2018/11/personcarryingbox.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"personcarryingbox-300x91.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:91;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-768x234.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"personcarryingbox-1024x311.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:311;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-666x584.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-650x584.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:30:\"personcarryingbox-1700x584.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"personcarryingbox-894x584.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"personcarryingbox-1200x584.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(36571,3486,'_wp_attached_file','2018/11/demorequest.png'),
(36572,3486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:376;s:4:\"file\";s:23:\"2018/11/demorequest.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"demorequest-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"demorequest-300x59.png\";s:5:\"width\";i:300;s:6:\"height\";i:59;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"demorequest-768x150.png\";s:5:\"width\";i:768;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"demorequest-1024x201.png\";s:5:\"width\";i:1024;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:23:\"demorequest-400x376.png\";s:5:\"width\";i:400;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:23:\"demorequest-610x376.png\";s:5:\"width\";i:610;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:23:\"demorequest-666x376.png\";s:5:\"width\";i:666;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:23:\"demorequest-650x376.png\";s:5:\"width\";i:650;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:23:\"demorequest-950x376.png\";s:5:\"width\";i:950;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:24:\"demorequest-1700x376.png\";s:5:\"width\";i:1700;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:23:\"demorequest-450x376.png\";s:5:\"width\";i:450;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:23:\"demorequest-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"demorequest-600x376.png\";s:5:\"width\";i:600;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"demorequest-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"demorequest-894x376.png\";s:5:\"width\";i:894;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"demorequest-1200x376.png\";s:5:\"width\";i:1200;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(36576,3487,'_wp_attached_file','2018/11/carttool.jpg'),
(36577,3487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1292;s:6:\"height\";i:926;s:4:\"file\";s:20:\"2018/11/carttool.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"carttool-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"carttool-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"carttool-768x550.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"carttool-1024x734.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:734;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:20:\"carttool-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:20:\"carttool-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:20:\"carttool-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:20:\"carttool-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:20:\"carttool-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:21:\"carttool-1292x860.jpg\";s:5:\"width\";i:1292;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:20:\"carttool-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:20:\"carttool-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:20:\"carttool-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:20:\"carttool-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:20:\"carttool-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:21:\"carttool-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(36584,3488,'_wp_attached_file','2018/11/contactus.jpg'),
(36585,3488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2018/11/contactus.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"contactus-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"contactus-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"contactus-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"contactus-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:21:\"contactus-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:21:\"contactus-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:21:\"contactus-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:21:\"contactus-650x500.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:21:\"contactus-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:22:\"contactus-1700x500.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:21:\"contactus-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:21:\"contactus-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:21:\"contactus-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:21:\"contactus-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:21:\"contactus-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"contactus-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(36591,3489,'_wp_attached_file','2018/11/dtcsoftware.jpg'),
(36592,3489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2018/11/dtcsoftware.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"dtcsoftware-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"dtcsoftware-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-650x500.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:24:\"dtcsoftware-1700x500.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"dtcsoftware-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"dtcsoftware-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(36593,3490,'_wp_attached_file','2018/11/integratedcertified.jpg'),
(36594,3490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:31:\"2018/11/integratedcertified.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"integratedcertified-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"integratedcertified-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"integratedcertified-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"integratedcertified-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:31:\"integratedcertified-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:31:\"integratedcertified-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:31:\"integratedcertified-666x500.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:31:\"integratedcertified-650x500.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:31:\"integratedcertified-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:32:\"integratedcertified-1700x500.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:31:\"integratedcertified-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:31:\"integratedcertified-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:31:\"integratedcertified-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:31:\"integratedcertified-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:31:\"integratedcertified-894x500.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:32:\"integratedcertified-1200x500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(36912,3497,'_edit_lock','1542413869:10'),
(36913,3497,'_edit_last','2'),
(36914,3497,'_yoast_wpseo_primary_category',''),
(36915,3497,'ninzio_post_audio_mp3',''),
(36916,3497,'ninzio_post_audio_ogg',''),
(36917,3497,'ninzio_post_audio_embed',''),
(36918,3497,'ninzio_post_video_mp4',''),
(36919,3497,'ninzio_post_video_ogv',''),
(36920,3497,'ninzio_post_video_webm',''),
(36921,3497,'ninzio_post_video_embed',''),
(36922,3497,'ninzio_post_video_poster',''),
(36923,3497,'ninzio_post_link_url',''),
(36924,3497,'ninzio_post_image_url',''),
(36925,3497,'ninzio_post_image_description',''),
(36926,3497,'ninzio_post_status_author',''),
(36927,3497,'ninzio_post_quote_author',''),
(36928,3497,'ninzio_post_featured_media','yes'),
(36929,3497,'_yoast_wpseo_content_score','30'),
(36933,3497,'_wpas_done_all','1'),
(36935,3497,'_wp_old_date','2018-11-16'),
(37139,3500,'_edit_lock','1561758652:2'),
(37140,3500,'_edit_last','2'),
(37141,3500,'_wp_page_template','default'),
(37142,3500,'ninzio_page_subtitle',''),
(37143,3500,'ninzio_page_sidebar','none'),
(37144,3500,'ninzio_page_title_background_color',''),
(37145,3500,'ninzio_page_title_background_color_opacity','1'),
(37146,3500,'ninzio_page_title_text_color','#ffffff'),
(37147,3500,'ninzio_page_subtitle_background_color',''),
(37148,3500,'ninzio_page_subtitle_background_color_opacity','1'),
(37149,3500,'ninzio_page_subtitle_text_color','#444444'),
(37150,3500,'ninzio_page_title_section_background_color','#f6f6f6'),
(37151,3500,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/05/Loginbackground-castle-3.png'),
(37152,3500,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(37153,3500,'ninzio_page_title_section_background_image_position','center_center'),
(37154,3500,'ninzio_page_title_section_background_image_attachment','scroll'),
(37155,3500,'ninzio_page_title_section_background_image_size','auto'),
(37156,3500,'ninzio_one_page','no'),
(37157,3500,'ninzio_slider','no'),
(37158,3500,'ninzio_page_layout','no'),
(37159,3500,'ninzio_page_twitter','no'),
(37160,3500,'ninzio_page_padding_top','yes'),
(37161,3500,'ninzio_rich_header','yes'),
(37162,3500,'ninzio_page_title_section_background_image_parallax','no'),
(37163,3500,'_yoast_wpseo_content_score','30'),
(37193,3506,'_edit_lock','1640716502:2'),
(37195,3506,'_edit_last','2'),
(37196,3506,'_wp_page_template','default'),
(37197,3506,'ninzio_page_subtitle',''),
(37198,3506,'ninzio_page_sidebar','none'),
(37199,3506,'ninzio_page_title_background_color',''),
(37200,3506,'ninzio_page_title_background_color_opacity','1'),
(37201,3506,'ninzio_page_title_text_color','#ffffff'),
(37202,3506,'ninzio_page_subtitle_background_color',''),
(37203,3506,'ninzio_page_subtitle_background_color_opacity','1'),
(37204,3506,'ninzio_page_subtitle_text_color','#444444'),
(37205,3506,'ninzio_page_title_section_background_color','#f6f6f6'),
(37206,3506,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/05/Loginbackground-castle-3.png'),
(37207,3506,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(37208,3506,'ninzio_page_title_section_background_image_position','center_center'),
(37209,3506,'ninzio_page_title_section_background_image_attachment','scroll'),
(37210,3506,'ninzio_page_title_section_background_image_size','auto'),
(37211,3506,'ninzio_one_page','no'),
(37212,3506,'ninzio_slider','no'),
(37213,3506,'ninzio_page_layout','no'),
(37214,3506,'ninzio_page_twitter','no'),
(37215,3506,'ninzio_page_padding_top','yes'),
(37216,3506,'ninzio_rich_header','yes'),
(37217,3506,'ninzio_page_title_section_background_image_parallax','no'),
(37218,3506,'_yoast_wpseo_content_score','30'),
(37271,3511,'_edit_lock','1547566359:6'),
(37272,3511,'_edit_last','2'),
(37273,3511,'_wp_page_template','default'),
(37274,3511,'ninzio_page_subtitle',''),
(37275,3511,'ninzio_page_sidebar','none'),
(37276,3511,'ninzio_page_title_background_color',''),
(37277,3511,'ninzio_page_title_background_color_opacity','1'),
(37278,3511,'ninzio_page_title_text_color','#ffffff'),
(37279,3511,'ninzio_page_subtitle_background_color',''),
(37280,3511,'ninzio_page_subtitle_background_color_opacity','1'),
(37281,3511,'ninzio_page_subtitle_text_color','#444444'),
(37282,3511,'ninzio_page_title_section_background_color','#f6f6f6'),
(37283,3511,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/05/Loginbackground-castle-3.png'),
(37284,3511,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(37285,3511,'ninzio_page_title_section_background_image_position','center_center'),
(37286,3511,'ninzio_page_title_section_background_image_attachment','scroll'),
(37287,3511,'ninzio_page_title_section_background_image_size','auto'),
(37288,3511,'ninzio_one_page','no'),
(37289,3511,'ninzio_slider','no'),
(37290,3511,'ninzio_page_layout','no'),
(37291,3511,'ninzio_page_twitter','no'),
(37292,3511,'ninzio_page_padding_top','yes'),
(37293,3511,'ninzio_rich_header','yes'),
(37294,3511,'ninzio_page_title_section_background_image_parallax','no'),
(37295,3511,'_yoast_wpseo_content_score','30'),
(37399,3518,'_edit_lock','1561954390:2'),
(37400,3518,'_edit_last','2'),
(37401,3518,'_wp_page_template','default'),
(37402,3518,'ninzio_page_subtitle',''),
(37403,3518,'ninzio_page_sidebar','none'),
(37404,3518,'ninzio_page_title_background_color',''),
(37405,3518,'ninzio_page_title_background_color_opacity','1'),
(37406,3518,'ninzio_page_title_text_color','#ffffff'),
(37407,3518,'ninzio_page_subtitle_background_color',''),
(37408,3518,'ninzio_page_subtitle_background_color_opacity','1'),
(37409,3518,'ninzio_page_subtitle_text_color','#444444'),
(37410,3518,'ninzio_page_title_section_background_color','#f6f6f6'),
(37411,3518,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/05/header71.jpg'),
(37412,3518,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(37413,3518,'ninzio_page_title_section_background_image_position','center_center'),
(37414,3518,'ninzio_page_title_section_background_image_attachment','scroll'),
(37415,3518,'ninzio_page_title_section_background_image_size','auto'),
(37416,3518,'ninzio_one_page','no'),
(37417,3518,'ninzio_slider','no'),
(37418,3518,'ninzio_page_layout','no'),
(37419,3518,'ninzio_page_twitter','no'),
(37420,3518,'ninzio_page_padding_top','yes'),
(37421,3518,'ninzio_rich_header','yes'),
(37422,3518,'ninzio_page_title_section_background_image_parallax','no'),
(37423,3518,'_yoast_wpseo_content_score','30'),
(37477,3522,'_edit_lock','1568230321:2'),
(37478,3522,'_edit_last','2'),
(37479,3522,'_wp_page_template','default'),
(37480,3522,'ninzio_page_subtitle',''),
(37481,3522,'ninzio_page_sidebar','none'),
(37482,3522,'ninzio_page_title_background_color',''),
(37483,3522,'ninzio_page_title_background_color_opacity','1'),
(37484,3522,'ninzio_page_title_text_color','#ffffff'),
(37485,3522,'ninzio_page_subtitle_background_color',''),
(37486,3522,'ninzio_page_subtitle_background_color_opacity','1'),
(37487,3522,'ninzio_page_subtitle_text_color','#444444'),
(37488,3522,'ninzio_page_title_section_background_color','#f6f6f6'),
(37489,3522,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/10/lavenderfields.png'),
(37490,3522,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(37491,3522,'ninzio_page_title_section_background_image_position','center_bottom'),
(37492,3522,'ninzio_page_title_section_background_image_attachment','scroll'),
(37493,3522,'ninzio_page_title_section_background_image_size','auto'),
(37494,3522,'ninzio_one_page','no'),
(37495,3522,'ninzio_slider','no'),
(37496,3522,'ninzio_page_layout','no'),
(37497,3522,'ninzio_page_twitter','no'),
(37498,3522,'ninzio_page_padding_top','yes'),
(37499,3522,'ninzio_rich_header','yes'),
(37500,3522,'ninzio_page_title_section_background_image_parallax','no'),
(37501,3522,'_yoast_wpseo_content_score','30'),
(37586,3527,'_edit_lock','1544073929:2'),
(37587,3527,'_edit_last','2'),
(37609,3533,'_edit_lock','1616442356:2'),
(37610,3533,'_edit_last','2'),
(37611,3533,'_wp_page_template','default'),
(37612,3533,'ninzio_page_subtitle',''),
(37613,3533,'ninzio_page_sidebar','none'),
(37614,3533,'ninzio_page_title_background_color',''),
(37615,3533,'ninzio_page_title_background_color_opacity','1'),
(37616,3533,'ninzio_page_title_text_color','#ffffff'),
(37617,3533,'ninzio_page_subtitle_background_color',''),
(37618,3533,'ninzio_page_subtitle_background_color_opacity','1'),
(37619,3533,'ninzio_page_subtitle_text_color','#444444'),
(37620,3533,'ninzio_page_title_section_background_color','#f6f6f6'),
(37621,3533,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/01/DataMining_6.png'),
(37622,3533,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(37623,3533,'ninzio_page_title_section_background_image_position','center_bottom'),
(37624,3533,'ninzio_page_title_section_background_image_attachment','scroll'),
(37625,3533,'ninzio_page_title_section_background_image_size','auto'),
(37626,3533,'ninzio_one_page','no'),
(37627,3533,'ninzio_slider','no'),
(37628,3533,'ninzio_page_layout','no'),
(37629,3533,'ninzio_page_twitter','no'),
(37630,3533,'ninzio_page_padding_top','yes'),
(37631,3533,'ninzio_rich_header','yes'),
(37632,3533,'ninzio_page_title_section_background_image_parallax','no'),
(37633,3533,'_yoast_wpseo_content_score','30'),
(37852,3564,'_edit_lock','1544843424:10'),
(37853,3564,'_oembed_0da63506771e8494d54f9b225c8dd94a','{{unknown}}'),
(37854,3564,'_edit_last','2'),
(37855,3564,'_yoast_wpseo_primary_category',''),
(37856,3564,'ninzio_post_audio_mp3',''),
(37857,3564,'ninzio_post_audio_ogg',''),
(37858,3564,'ninzio_post_audio_embed',''),
(37859,3564,'ninzio_post_video_mp4',''),
(37860,3564,'ninzio_post_video_ogv',''),
(37861,3564,'ninzio_post_video_webm',''),
(37862,3564,'ninzio_post_video_embed',''),
(37863,3564,'ninzio_post_video_poster',''),
(37864,3564,'ninzio_post_link_url',''),
(37865,3564,'ninzio_post_image_url',''),
(37866,3564,'ninzio_post_image_description',''),
(37867,3564,'ninzio_post_status_author',''),
(37868,3564,'ninzio_post_quote_author',''),
(37869,3564,'ninzio_post_featured_media','yes'),
(37870,3564,'_yoast_wpseo_content_score','30'),
(37874,3564,'_wpas_done_all','1'),
(37877,3564,'_wp_old_date','2018-12-14'),
(37878,3567,'_edit_lock','1544843924:10'),
(37879,3567,'_edit_last','2'),
(37880,3567,'_yoast_wpseo_primary_category',''),
(37881,3567,'ninzio_post_audio_mp3',''),
(37882,3567,'ninzio_post_audio_ogg',''),
(37883,3567,'ninzio_post_audio_embed',''),
(37884,3567,'ninzio_post_video_mp4',''),
(37885,3567,'ninzio_post_video_ogv',''),
(37886,3567,'ninzio_post_video_webm',''),
(37887,3567,'ninzio_post_video_embed',''),
(37888,3567,'ninzio_post_video_poster',''),
(37889,3567,'ninzio_post_link_url',''),
(37890,3567,'ninzio_post_image_url',''),
(37891,3567,'ninzio_post_image_description',''),
(37892,3567,'ninzio_post_status_author',''),
(37893,3567,'ninzio_post_quote_author',''),
(37894,3567,'ninzio_post_featured_media','yes'),
(37895,3567,'_yoast_wpseo_content_score','30'),
(37898,3567,'_wpas_done_all','1'),
(37901,3567,'_wp_old_date','2018-12-14'),
(37916,3571,'_edit_lock','1545509484:18'),
(37917,3571,'_edit_last','18'),
(37918,3571,'_wp_page_template','default'),
(37919,3571,'ninzio_page_subtitle',''),
(37920,3571,'ninzio_page_sidebar','none'),
(37921,3571,'ninzio_page_title_background_color',''),
(37922,3571,'ninzio_page_title_background_color_opacity','1'),
(37923,3571,'ninzio_page_title_text_color','#444444'),
(37924,3571,'ninzio_page_subtitle_background_color',''),
(37925,3571,'ninzio_page_subtitle_background_color_opacity','1'),
(37926,3571,'ninzio_page_subtitle_text_color','#444444'),
(37927,3571,'ninzio_page_title_section_background_color','#f6f6f6'),
(37928,3571,'ninzio_page_title_section_background_image',''),
(37929,3571,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(37930,3571,'ninzio_page_title_section_background_image_position','left_top'),
(37931,3571,'ninzio_page_title_section_background_image_attachment','scroll'),
(37932,3571,'ninzio_page_title_section_background_image_size','auto'),
(37933,3571,'ninzio_one_page','no'),
(37934,3571,'ninzio_slider','no'),
(37935,3571,'ninzio_page_layout','no'),
(37936,3571,'ninzio_page_twitter','no'),
(37937,3571,'ninzio_page_padding_top','yes'),
(37938,3571,'ninzio_rich_header','yes'),
(37939,3571,'ninzio_page_title_section_background_image_parallax','no'),
(37940,3571,'_yoast_wpseo_content_score','30'),
(37994,3572,'_edit_lock','1633561966:2'),
(37995,3572,'_edit_last','2'),
(37997,3572,'_wp_page_template','default'),
(37998,3572,'ninzio_page_subtitle',''),
(37999,3572,'ninzio_page_sidebar','none'),
(38000,3572,'ninzio_page_title_background_color',''),
(38001,3572,'ninzio_page_title_background_color_opacity','1'),
(38002,3572,'ninzio_page_title_text_color','#444444'),
(38003,3572,'ninzio_page_subtitle_background_color',''),
(38004,3572,'ninzio_page_subtitle_background_color_opacity','1'),
(38005,3572,'ninzio_page_subtitle_text_color','#444444'),
(38006,3572,'ninzio_page_title_section_background_color','#f6f6f6'),
(38007,3572,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/04/webdesignagency_3.png'),
(38008,3572,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(38009,3572,'ninzio_page_title_section_background_image_position','center_bottom'),
(38010,3572,'ninzio_page_title_section_background_image_attachment','scroll'),
(38011,3572,'ninzio_page_title_section_background_image_size','auto'),
(38012,3572,'ninzio_one_page','no'),
(38013,3572,'ninzio_slider','no'),
(38014,3572,'ninzio_page_layout','no'),
(38015,3572,'ninzio_page_twitter','no'),
(38016,3572,'ninzio_page_padding_top','yes'),
(38017,3572,'ninzio_rich_header','yes'),
(38018,3572,'ninzio_page_title_section_background_image_parallax','no'),
(38019,3572,'_yoast_wpseo_content_score','60'),
(38037,3581,'_edit_lock','1549566689:15'),
(38038,3581,'_edit_last','2'),
(38039,3581,'_yoast_wpseo_primary_category',''),
(38040,3581,'ninzio_post_audio_mp3',''),
(38041,3581,'ninzio_post_audio_ogg',''),
(38042,3581,'ninzio_post_audio_embed',''),
(38043,3581,'ninzio_post_video_mp4',''),
(38044,3581,'ninzio_post_video_ogv',''),
(38045,3581,'ninzio_post_video_webm',''),
(38046,3581,'ninzio_post_video_embed',''),
(38047,3581,'ninzio_post_video_poster',''),
(38048,3581,'ninzio_post_link_url',''),
(38049,3581,'ninzio_post_image_url',''),
(38050,3581,'ninzio_post_image_description',''),
(38051,3581,'ninzio_post_status_author',''),
(38052,3581,'ninzio_post_quote_author',''),
(38053,3581,'ninzio_post_featured_media','yes'),
(38054,3581,'_yoast_wpseo_content_score','30'),
(38057,3581,'_wpas_done_all','1'),
(38059,3581,'_wp_old_date','2019-01-04'),
(38284,3587,'_edit_lock','1547744704:15'),
(38285,3587,'_edit_last','15'),
(38286,3587,'_wp_page_template','default'),
(38287,3587,'ninzio_page_subtitle',''),
(38288,3587,'ninzio_page_sidebar','none'),
(38289,3587,'ninzio_page_title_background_color',''),
(38290,3587,'ninzio_page_title_background_color_opacity','1'),
(38291,3587,'ninzio_page_title_text_color','#444444'),
(38292,3587,'ninzio_page_subtitle_background_color',''),
(38293,3587,'ninzio_page_subtitle_background_color_opacity','1'),
(38294,3587,'ninzio_page_subtitle_text_color','#444444'),
(38295,3587,'ninzio_page_title_section_background_color','#f6f6f6'),
(38296,3587,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2019/01/sample-ecommerce-banner-short.jpg'),
(38297,3587,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(38298,3587,'ninzio_page_title_section_background_image_position','center_center'),
(38299,3587,'ninzio_page_title_section_background_image_attachment','scroll'),
(38300,3587,'ninzio_page_title_section_background_image_size','auto'),
(38301,3587,'ninzio_one_page','no'),
(38302,3587,'ninzio_slider','no'),
(38303,3587,'ninzio_page_layout','no'),
(38304,3587,'ninzio_page_twitter','no'),
(38305,3587,'ninzio_page_padding_top','yes'),
(38306,3587,'ninzio_rich_header','yes'),
(38307,3587,'ninzio_page_title_section_background_image_parallax','no'),
(38308,3587,'_yoast_wpseo_content_score','30'),
(38309,3589,'_edit_lock','1551155379:2'),
(38310,3589,'_edit_last','2'),
(38311,3589,'_wp_page_template','default'),
(38312,3589,'ninzio_page_subtitle',''),
(38313,3589,'ninzio_page_sidebar','none'),
(38314,3589,'ninzio_page_title_background_color',''),
(38315,3589,'ninzio_page_title_background_color_opacity','1'),
(38316,3589,'ninzio_page_title_text_color','#444444'),
(38317,3589,'ninzio_page_subtitle_background_color',''),
(38318,3589,'ninzio_page_subtitle_background_color_opacity','1'),
(38319,3589,'ninzio_page_subtitle_text_color','#444444'),
(38320,3589,'ninzio_page_title_section_background_color','#f6f6f6'),
(38321,3589,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2019/01/sample-ecommerce-banner-faded.jpg'),
(38322,3589,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(38323,3589,'ninzio_page_title_section_background_image_position','center_center'),
(38324,3589,'ninzio_page_title_section_background_image_attachment','scroll'),
(38325,3589,'ninzio_page_title_section_background_image_size','auto'),
(38326,3589,'ninzio_one_page','no'),
(38327,3589,'ninzio_slider','no'),
(38328,3589,'ninzio_page_layout','yes'),
(38329,3589,'ninzio_page_twitter','no'),
(38330,3589,'ninzio_page_padding_top','yes'),
(38331,3589,'ninzio_rich_header','yes'),
(38332,3589,'ninzio_page_title_section_background_image_parallax','no'),
(38333,3589,'_yoast_wpseo_content_score','30'),
(38334,3591,'_edit_lock','1551155160:2'),
(38335,3591,'_edit_last','2'),
(38336,3591,'_wp_page_template','default'),
(38337,3591,'ninzio_page_subtitle',''),
(38338,3591,'ninzio_page_sidebar','none'),
(38339,3591,'ninzio_page_title_background_color',''),
(38340,3591,'ninzio_page_title_background_color_opacity','1'),
(38341,3591,'ninzio_page_title_text_color','#444444'),
(38342,3591,'ninzio_page_subtitle_background_color',''),
(38343,3591,'ninzio_page_subtitle_background_color_opacity','1'),
(38344,3591,'ninzio_page_subtitle_text_color','#444444'),
(38345,3591,'ninzio_page_title_section_background_color','#f6f6f6'),
(38346,3591,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2019/01/sample-ecommerce-banner-faded.jpg'),
(38347,3591,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(38348,3591,'ninzio_page_title_section_background_image_position','center_center'),
(38349,3591,'ninzio_page_title_section_background_image_attachment','scroll'),
(38350,3591,'ninzio_page_title_section_background_image_size','auto'),
(38351,3591,'ninzio_one_page','no'),
(38352,3591,'ninzio_slider','no'),
(38353,3591,'ninzio_page_layout','no'),
(38354,3591,'ninzio_page_twitter','no'),
(38355,3591,'ninzio_page_padding_top','yes'),
(38356,3591,'ninzio_rich_header','yes'),
(38357,3591,'ninzio_page_title_section_background_image_parallax','no'),
(38358,3591,'_yoast_wpseo_content_score','30'),
(38359,3593,'_edit_lock','1558066490:2'),
(38360,3593,'_edit_last','15'),
(38361,3593,'_wp_page_template','default'),
(38362,3593,'ninzio_page_subtitle',''),
(38363,3593,'ninzio_page_sidebar','none'),
(38364,3593,'ninzio_page_title_background_color',''),
(38365,3593,'ninzio_page_title_background_color_opacity','1'),
(38366,3593,'ninzio_page_title_text_color','#444444'),
(38367,3593,'ninzio_page_subtitle_background_color',''),
(38368,3593,'ninzio_page_subtitle_background_color_opacity','1'),
(38369,3593,'ninzio_page_subtitle_text_color','#444444'),
(38370,3593,'ninzio_page_title_section_background_color','#f6f6f6'),
(38371,3593,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2019/01/sample-ecommerce-banner-faded.jpg'),
(38372,3593,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(38373,3593,'ninzio_page_title_section_background_image_position','center_center'),
(38374,3593,'ninzio_page_title_section_background_image_attachment','scroll'),
(38375,3593,'ninzio_page_title_section_background_image_size','auto'),
(38376,3593,'ninzio_one_page','no'),
(38377,3593,'ninzio_slider','no'),
(38378,3593,'ninzio_page_layout','no'),
(38379,3593,'ninzio_page_twitter','no'),
(38380,3593,'ninzio_page_padding_top','yes'),
(38381,3593,'ninzio_rich_header','yes'),
(38382,3593,'ninzio_page_title_section_background_image_parallax','no'),
(38383,3593,'_yoast_wpseo_content_score','30'),
(38384,3594,'_edit_lock','1553143254:2'),
(38385,3594,'_edit_last','2'),
(38386,3594,'_wp_page_template','default'),
(38387,3594,'ninzio_page_subtitle',''),
(38388,3594,'ninzio_page_sidebar','none'),
(38389,3594,'ninzio_page_title_background_color',''),
(38390,3594,'ninzio_page_title_background_color_opacity','1'),
(38391,3594,'ninzio_page_title_text_color','#444444'),
(38392,3594,'ninzio_page_subtitle_background_color',''),
(38393,3594,'ninzio_page_subtitle_background_color_opacity','1'),
(38394,3594,'ninzio_page_subtitle_text_color','#444444'),
(38395,3594,'ninzio_page_title_section_background_color','#f6f6f6'),
(38396,3594,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2019/01/sample-ecommerce-banner-faded.jpg'),
(38397,3594,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(38398,3594,'ninzio_page_title_section_background_image_position','center_center'),
(38399,3594,'ninzio_page_title_section_background_image_attachment','scroll'),
(38400,3594,'ninzio_page_title_section_background_image_size','auto'),
(38401,3594,'ninzio_one_page','no'),
(38402,3594,'ninzio_slider','no'),
(38403,3594,'ninzio_page_layout','yes'),
(38404,3594,'ninzio_page_twitter','no'),
(38405,3594,'ninzio_page_padding_top','yes'),
(38406,3594,'ninzio_rich_header','yes'),
(38407,3594,'ninzio_page_title_section_background_image_parallax','no'),
(38408,3594,'_yoast_wpseo_content_score','30'),
(38423,3600,'_edit_lock','1549565304:15'),
(38424,3600,'_edit_last','2'),
(38425,3600,'_yoast_wpseo_primary_category',''),
(38426,3600,'ninzio_post_audio_mp3',''),
(38427,3600,'ninzio_post_audio_ogg',''),
(38428,3600,'ninzio_post_audio_embed',''),
(38429,3600,'ninzio_post_video_mp4',''),
(38430,3600,'ninzio_post_video_ogv',''),
(38431,3600,'ninzio_post_video_webm',''),
(38432,3600,'ninzio_post_video_embed',''),
(38433,3600,'ninzio_post_video_poster',''),
(38434,3600,'ninzio_post_link_url',''),
(38435,3600,'ninzio_post_image_url',''),
(38436,3600,'ninzio_post_image_description',''),
(38437,3600,'ninzio_post_status_author',''),
(38438,3600,'ninzio_post_quote_author',''),
(38439,3600,'ninzio_post_featured_media','yes'),
(38440,3600,'_yoast_wpseo_content_score','30'),
(38443,3600,'_wpas_done_all','1'),
(38445,3600,'_wp_old_date','2019-01-14'),
(38525,3611,'_wp_attached_file','2019/01/sample-ecommerce-banner-short.jpg'),
(38526,3611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:363;s:4:\"file\";s:41:\"2019/01/sample-ecommerce-banner-short.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"sample-ecommerce-banner-short-300x57.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-768x147.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"sample-ecommerce-banner-short-1024x196.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-400x363.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-610x363.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-666x363.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-650x363.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-950x363.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:42:\"sample-ecommerce-banner-short-1700x363.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-450x363.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-600x363.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-short-894x363.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:42:\"sample-ecommerce-banner-short-1200x363.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(38538,3620,'_wp_attached_file','2019/01/sample-ecommerce-banner-faded.jpg'),
(38539,3620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:363;s:4:\"file\";s:41:\"2019/01/sample-ecommerce-banner-faded.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"sample-ecommerce-banner-faded-300x57.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-768x147.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"sample-ecommerce-banner-faded-1024x196.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-400x363.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-610x363.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-666x363.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-650x363.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-950x363.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:42:\"sample-ecommerce-banner-faded-1700x363.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-450x363.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-600x363.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:41:\"sample-ecommerce-banner-faded-894x363.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:42:\"sample-ecommerce-banner-faded-1200x363.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:363;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(38974,3627,'_edit_lock','1660534121:2'),
(38975,3627,'_edit_last','2'),
(38978,3627,'_yoast_wpseo_primary_category',''),
(38979,3627,'ninzio_post_audio_mp3',''),
(38980,3627,'ninzio_post_audio_ogg',''),
(38981,3627,'ninzio_post_audio_embed',''),
(38982,3627,'ninzio_post_video_mp4',''),
(38983,3627,'ninzio_post_video_ogv',''),
(38984,3627,'ninzio_post_video_webm',''),
(38985,3627,'ninzio_post_video_embed',''),
(38986,3627,'ninzio_post_video_poster',''),
(38987,3627,'ninzio_post_link_url',''),
(38988,3627,'ninzio_post_image_url',''),
(38989,3627,'ninzio_post_image_description',''),
(38990,3627,'ninzio_post_status_author',''),
(38991,3627,'ninzio_post_quote_author',''),
(38992,3627,'ninzio_post_featured_media','yes'),
(38993,3627,'_yoast_wpseo_content_score','30'),
(38994,3627,'_wpas_done_all','1'),
(39006,3631,'_edit_lock','1660536037:2'),
(39007,3631,'_edit_last','2'),
(39008,3631,'_yoast_wpseo_primary_category',''),
(39009,3631,'ninzio_post_audio_mp3',''),
(39010,3631,'ninzio_post_audio_ogg',''),
(39011,3631,'ninzio_post_audio_embed',''),
(39012,3631,'ninzio_post_video_mp4',''),
(39013,3631,'ninzio_post_video_ogv',''),
(39014,3631,'ninzio_post_video_webm',''),
(39015,3631,'ninzio_post_video_embed',''),
(39016,3631,'ninzio_post_video_poster',''),
(39017,3631,'ninzio_post_link_url',''),
(39018,3631,'ninzio_post_image_url',''),
(39019,3631,'ninzio_post_image_description',''),
(39020,3631,'ninzio_post_status_author',''),
(39021,3631,'ninzio_post_quote_author',''),
(39022,3631,'ninzio_post_featured_media','yes'),
(39023,3631,'_yoast_wpseo_content_score','30'),
(39026,3631,'_wpas_done_all','1'),
(39028,3631,'_wp_old_date','2019-02-04'),
(39251,3638,'_wp_attached_file','2019/02/Complete-Combo-Price-Chart.pdf'),
(39252,3638,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Complete-Combo-Price-Chart-pdf-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Complete-Combo-Price-Chart-pdf-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Complete-Combo-Price-Chart-pdf-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:34:\"Complete-Combo-Price-Chart-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:1088;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),
(39253,3643,'_wp_attached_file','2019/02/pricechart.png'),
(39254,3643,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:906;s:6:\"height\";i:697;s:4:\"file\";s:22:\"2019/02/pricechart.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"pricechart-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"pricechart-300x231.png\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"pricechart-768x591.png\";s:5:\"width\";i:768;s:6:\"height\";i:591;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:22:\"pricechart-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:22:\"pricechart-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:22:\"pricechart-666x697.png\";s:5:\"width\";i:666;s:6:\"height\";i:697;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:22:\"pricechart-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:22:\"pricechart-906x475.png\";s:5:\"width\";i:906;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:22:\"pricechart-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:22:\"pricechart-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:22:\"pricechart-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"pricechart-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:22:\"pricechart-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"pricechart-906x588.png\";s:5:\"width\";i:906;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(39542,3431,'_wp_page_template','default'),
(39543,3431,'ninzio_page_subtitle',''),
(39544,3431,'ninzio_page_sidebar','none'),
(39545,3431,'ninzio_page_title_background_color',''),
(39546,3431,'ninzio_page_title_background_color_opacity','1'),
(39547,3431,'ninzio_page_title_text_color','#444444'),
(39548,3431,'ninzio_page_subtitle_background_color',''),
(39549,3431,'ninzio_page_subtitle_background_color_opacity','1'),
(39550,3431,'ninzio_page_subtitle_text_color','#444444'),
(39551,3431,'ninzio_page_title_section_background_color','#f6f6f6'),
(39552,3431,'ninzio_page_title_section_background_image',''),
(39553,3431,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(39554,3431,'ninzio_page_title_section_background_image_position','left_top'),
(39555,3431,'ninzio_page_title_section_background_image_attachment','scroll'),
(39556,3431,'ninzio_page_title_section_background_image_size','auto'),
(39557,3431,'ninzio_one_page','no'),
(39558,3431,'ninzio_slider','no'),
(39559,3431,'ninzio_page_layout','no'),
(39560,3431,'ninzio_page_twitter','no'),
(39561,3431,'ninzio_page_padding_top','yes'),
(39562,3431,'ninzio_rich_header','yes'),
(39563,3431,'ninzio_page_title_section_background_image_parallax','no'),
(39564,3431,'_yoast_wpseo_content_score','30'),
(39627,3652,'_edit_last','2'),
(39628,3652,'_yoast_wpseo_primary_category',''),
(39629,3652,'ninzio_post_audio_mp3',''),
(39630,3652,'ninzio_post_audio_ogg',''),
(39631,3652,'ninzio_post_audio_embed',''),
(39632,3652,'ninzio_post_video_mp4',''),
(39633,3652,'ninzio_post_video_ogv',''),
(39634,3652,'ninzio_post_video_webm',''),
(39635,3652,'ninzio_post_video_embed',''),
(39636,3652,'ninzio_post_video_poster',''),
(39637,3652,'ninzio_post_link_url',''),
(39638,3652,'ninzio_post_image_url',''),
(39639,3652,'ninzio_post_image_description',''),
(39640,3652,'ninzio_post_status_author',''),
(39641,3652,'ninzio_post_quote_author',''),
(39642,3652,'ninzio_post_featured_media','yes'),
(39643,3652,'_yoast_wpseo_content_score','30'),
(39644,3652,'_edit_lock','1660536029:2'),
(39645,3653,'_wp_attached_file','2019/02/Punam_bio2.jpg'),
(39646,3653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:773;s:6:\"height\";i:819;s:4:\"file\";s:22:\"2019/02/Punam_bio2.jpg\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-283x300.jpg\";s:5:\"width\";i:283;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-768x814.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:814;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-773x475.jpg\";s:5:\"width\";i:773;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-773x588.jpg\";s:5:\"width\";i:773;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:22:\"Punam_bio2-773x588.jpg\";s:5:\"width\";i:773;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550427330\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(39649,3652,'_wpas_done_all','1'),
(39651,3652,'_wp_old_date','2019-02-28'),
(39806,2712,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:444;s:6:\"height\";i:900;s:4:\"file\";s:27:\"iPhoneMembership-skewed.png\";}}'),
(39848,3655,'_edit_lock','1619482093:2'),
(39849,3655,'_edit_last','2'),
(39850,3655,'_wp_page_template','default'),
(39851,3655,'ninzio_page_subtitle',''),
(39852,3655,'ninzio_page_sidebar','none'),
(39853,3655,'ninzio_page_title_background_color',''),
(39854,3655,'ninzio_page_title_background_color_opacity','1'),
(39855,3655,'ninzio_page_title_text_color','#444444'),
(39856,3655,'ninzio_page_subtitle_background_color',''),
(39857,3655,'ninzio_page_subtitle_background_color_opacity','1'),
(39858,3655,'ninzio_page_subtitle_text_color','#444444'),
(39859,3655,'ninzio_page_title_section_background_color','#f6f6f6'),
(39860,3655,'ninzio_page_title_section_background_image',''),
(39861,3655,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(39862,3655,'ninzio_page_title_section_background_image_position','left_top'),
(39863,3655,'ninzio_page_title_section_background_image_attachment','scroll'),
(39864,3655,'ninzio_page_title_section_background_image_size','auto'),
(39865,3655,'ninzio_one_page','no'),
(39866,3655,'ninzio_slider','no'),
(39867,3655,'ninzio_page_layout','no'),
(39868,3655,'ninzio_page_twitter','no'),
(39869,3655,'ninzio_page_padding_top','yes'),
(39870,3655,'ninzio_rich_header','no'),
(39871,3655,'ninzio_page_title_section_background_image_parallax','no'),
(39872,3655,'_yoast_wpseo_content_score','30'),
(40108,3659,'_edit_lock','1660535822:2'),
(40109,3659,'_edit_last','2'),
(40110,3659,'_yoast_wpseo_primary_category',''),
(40111,3659,'ninzio_post_audio_mp3',''),
(40112,3659,'ninzio_post_audio_ogg',''),
(40113,3659,'ninzio_post_audio_embed',''),
(40114,3659,'ninzio_post_video_mp4',''),
(40115,3659,'ninzio_post_video_ogv',''),
(40116,3659,'ninzio_post_video_webm',''),
(40117,3659,'ninzio_post_video_embed',''),
(40118,3659,'ninzio_post_video_poster',''),
(40119,3659,'ninzio_post_link_url',''),
(40120,3659,'ninzio_post_image_url',''),
(40121,3659,'ninzio_post_image_description',''),
(40122,3659,'ninzio_post_status_author',''),
(40123,3659,'ninzio_post_quote_author',''),
(40124,3659,'ninzio_post_featured_media','yes'),
(40125,3659,'_yoast_wpseo_content_score','30'),
(40128,3659,'_wpas_done_all','1'),
(40130,3659,'_wp_old_date','2019-03-18'),
(40188,3661,'_edit_lock','1660534196:2'),
(40189,3661,'_edit_last','2'),
(40190,3661,'_yoast_wpseo_primary_category','3'),
(40191,3661,'ninzio_post_audio_mp3',''),
(40192,3661,'ninzio_post_audio_ogg',''),
(40193,3661,'ninzio_post_audio_embed',''),
(40194,3661,'ninzio_post_video_mp4',''),
(40195,3661,'ninzio_post_video_ogv',''),
(40196,3661,'ninzio_post_video_webm',''),
(40197,3661,'ninzio_post_video_embed',''),
(40198,3661,'ninzio_post_video_poster',''),
(40199,3661,'ninzio_post_link_url',''),
(40200,3661,'ninzio_post_image_url',''),
(40201,3661,'ninzio_post_image_description',''),
(40202,3661,'ninzio_post_status_author',''),
(40203,3661,'ninzio_post_quote_author',''),
(40204,3661,'ninzio_post_featured_media','yes'),
(40205,3661,'_yoast_wpseo_content_score','30'),
(40206,3662,'_wp_attached_file','2019/03/emailstatistics.png'),
(40207,3662,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:861;s:6:\"height\";i:338;s:4:\"file\";s:27:\"2019/03/emailstatistics.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"emailstatistics-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"emailstatistics-300x118.png\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"emailstatistics-768x301.png\";s:5:\"width\";i:768;s:6:\"height\";i:301;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:27:\"emailstatistics-400x338.png\";s:5:\"width\";i:400;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:27:\"emailstatistics-610x338.png\";s:5:\"width\";i:610;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:27:\"emailstatistics-666x338.png\";s:5:\"width\";i:666;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:27:\"emailstatistics-650x338.png\";s:5:\"width\";i:650;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:27:\"emailstatistics-450x338.png\";s:5:\"width\";i:450;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:27:\"emailstatistics-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:27:\"emailstatistics-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:27:\"emailstatistics-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(40210,3661,'_wpas_done_all','1'),
(40610,3671,'_edit_lock','1660534164:2'),
(40611,3671,'_edit_last','2'),
(40612,3671,'_yoast_wpseo_primary_category',''),
(40613,3671,'ninzio_post_audio_mp3',''),
(40614,3671,'ninzio_post_audio_ogg',''),
(40615,3671,'ninzio_post_audio_embed',''),
(40616,3671,'ninzio_post_video_mp4',''),
(40617,3671,'ninzio_post_video_ogv',''),
(40618,3671,'ninzio_post_video_webm',''),
(40619,3671,'ninzio_post_video_embed',''),
(40620,3671,'ninzio_post_video_poster',''),
(40621,3671,'ninzio_post_link_url',''),
(40622,3671,'ninzio_post_image_url',''),
(40623,3671,'ninzio_post_image_description',''),
(40624,3671,'ninzio_post_status_author',''),
(40625,3671,'ninzio_post_quote_author',''),
(40626,3671,'ninzio_post_featured_media','yes'),
(40627,3671,'_yoast_wpseo_content_score','30'),
(40631,3671,'_wpas_done_all','1'),
(40632,3673,'_edit_lock','1660535939:2'),
(40633,3673,'_edit_last','2'),
(40634,3674,'_wp_attached_file','2019/04/digi-know-website-design-email-campaign-2-002-600-x-345.jpg'),
(40635,3674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:345;s:4:\"file\";s:67:\"2019/04/digi-know-website-design-email-campaign-2-002-600-x-345.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"digi-know-website-design-email-campaign-2-002-600-x-345-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"digi-know-website-design-email-campaign-2-002-600-x-345-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:67:\"digi-know-website-design-email-campaign-2-002-600-x-345-400x345.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:67:\"digi-know-website-design-email-campaign-2-002-600-x-345-450x345.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:67:\"digi-know-website-design-email-campaign-2-002-600-x-345-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:67:\"digi-know-website-design-email-campaign-2-002-600-x-345-600x345.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:67:\"digi-know-website-design-email-campaign-2-002-600-x-345-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(40636,3673,'_yoast_wpseo_primary_category',''),
(40637,3673,'ninzio_post_audio_mp3',''),
(40638,3673,'ninzio_post_audio_ogg',''),
(40639,3673,'ninzio_post_audio_embed',''),
(40640,3673,'ninzio_post_video_mp4',''),
(40641,3673,'ninzio_post_video_ogv',''),
(40642,3673,'ninzio_post_video_webm',''),
(40643,3673,'ninzio_post_video_embed',''),
(40644,3673,'ninzio_post_video_poster',''),
(40645,3673,'ninzio_post_link_url',''),
(40646,3673,'ninzio_post_image_url',''),
(40647,3673,'ninzio_post_image_description',''),
(40648,3673,'ninzio_post_status_author',''),
(40649,3673,'ninzio_post_quote_author',''),
(40650,3673,'ninzio_post_featured_media','yes'),
(40651,3673,'_yoast_wpseo_content_score','60'),
(40654,3673,'_wpas_done_all','1'),
(40656,3673,'_wp_old_date','2019-04-23'),
(40686,3676,'_edit_lock','1615334547:2'),
(40687,3676,'_edit_last','2'),
(40688,3676,'_wp_page_template','default'),
(40689,3676,'ninzio_page_subtitle','Compatible Hardware Information'),
(40690,3676,'ninzio_page_sidebar','none'),
(40691,3676,'ninzio_page_title_background_color',''),
(40692,3676,'ninzio_page_title_background_color_opacity','1'),
(40693,3676,'ninzio_page_title_text_color','#444444'),
(40694,3676,'ninzio_page_subtitle_background_color',''),
(40695,3676,'ninzio_page_subtitle_background_color_opacity','1'),
(40696,3676,'ninzio_page_subtitle_text_color','#444444'),
(40697,3676,'ninzio_page_title_section_background_color','#f6f6f6'),
(40698,3676,'ninzio_page_title_section_background_image',''),
(40699,3676,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(40700,3676,'ninzio_page_title_section_background_image_position','left_top'),
(40701,3676,'ninzio_page_title_section_background_image_attachment','scroll'),
(40702,3676,'ninzio_page_title_section_background_image_size','auto'),
(40703,3676,'ninzio_one_page','no'),
(40704,3676,'ninzio_slider','no'),
(40705,3676,'ninzio_page_layout','no'),
(40706,3676,'ninzio_page_twitter','no'),
(40707,3676,'ninzio_page_padding_top','yes'),
(40708,3676,'ninzio_rich_header','yes'),
(40709,3676,'ninzio_page_title_section_background_image_parallax','no'),
(40710,3676,'_yoast_wpseo_content_score','60'),
(40879,3679,'_edit_lock','1660534149:2'),
(40880,3679,'_edit_last','2'),
(40883,3679,'_yoast_wpseo_primary_category',''),
(40884,3679,'ninzio_post_audio_mp3',''),
(40885,3679,'ninzio_post_audio_ogg',''),
(40886,3679,'ninzio_post_audio_embed',''),
(40887,3679,'ninzio_post_video_mp4',''),
(40888,3679,'ninzio_post_video_ogv',''),
(40889,3679,'ninzio_post_video_webm',''),
(40890,3679,'ninzio_post_video_embed',''),
(40891,3679,'ninzio_post_video_poster',''),
(40892,3679,'ninzio_post_link_url',''),
(40893,3679,'ninzio_post_image_url',''),
(40894,3679,'ninzio_post_image_description',''),
(40895,3679,'ninzio_post_status_author',''),
(40896,3679,'ninzio_post_quote_author',''),
(40897,3679,'ninzio_post_featured_media','yes'),
(40898,3679,'_yoast_wpseo_content_score','30'),
(40899,3679,'_wpas_done_all','1'),
(40901,3679,'_wp_old_date','2019-05-01'),
(40904,3680,'_edit_lock','1660534141:2'),
(40905,3680,'_edit_last','2'),
(40906,3680,'_yoast_wpseo_primary_category',''),
(40907,3680,'ninzio_post_audio_mp3',''),
(40908,3680,'ninzio_post_audio_ogg',''),
(40909,3680,'ninzio_post_audio_embed',''),
(40910,3680,'ninzio_post_video_mp4',''),
(40911,3680,'ninzio_post_video_ogv',''),
(40912,3680,'ninzio_post_video_webm',''),
(40913,3680,'ninzio_post_video_embed',''),
(40914,3680,'ninzio_post_video_poster',''),
(40915,3680,'ninzio_post_link_url',''),
(40916,3680,'ninzio_post_image_url',''),
(40917,3680,'ninzio_post_image_description',''),
(40918,3680,'ninzio_post_status_author',''),
(40919,3680,'ninzio_post_quote_author',''),
(40920,3680,'ninzio_post_featured_media','yes'),
(40921,3680,'_yoast_wpseo_content_score','30'),
(40923,3681,'_wp_attached_file','2019/05/SNAyliffe-2-237-x-316.jpg'),
(40924,3681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:237;s:6:\"height\";i:316;s:4:\"file\";s:33:\"2019/05/SNAyliffe-2-237-x-316.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"SNAyliffe-2-237-x-316-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"SNAyliffe-2-237-x-316-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:33:\"SNAyliffe-2-237-x-316-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(40927,3680,'_wpas_done_all','1'),
(41002,3692,'_edit_lock','1615334398:2'),
(41003,3692,'_edit_last','2'),
(41004,3692,'_wp_page_template','default'),
(41005,3692,'ninzio_page_subtitle',''),
(41006,3692,'ninzio_page_sidebar','none'),
(41007,3692,'ninzio_page_title_background_color',''),
(41008,3692,'ninzio_page_title_background_color_opacity','1'),
(41009,3692,'ninzio_page_title_text_color','#444444'),
(41010,3692,'ninzio_page_subtitle_background_color',''),
(41011,3692,'ninzio_page_subtitle_background_color_opacity','1'),
(41012,3692,'ninzio_page_subtitle_text_color','#444444'),
(41013,3692,'ninzio_page_title_section_background_color','#f6f6f6'),
(41014,3692,'ninzio_page_title_section_background_image',''),
(41015,3692,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(41016,3692,'ninzio_page_title_section_background_image_position','left_top'),
(41017,3692,'ninzio_page_title_section_background_image_attachment','scroll'),
(41018,3692,'ninzio_page_title_section_background_image_size','auto'),
(41019,3692,'ninzio_one_page','no'),
(41020,3692,'ninzio_slider','no'),
(41021,3692,'ninzio_page_layout','no'),
(41022,3692,'ninzio_page_twitter','no'),
(41023,3692,'ninzio_page_padding_top','yes'),
(41024,3692,'ninzio_rich_header','yes'),
(41025,3692,'ninzio_page_title_section_background_image_parallax','no'),
(41026,3692,'_yoast_wpseo_content_score','60'),
(41236,3725,'_wp_attached_file','2019/06/pricechart_2.png'),
(41237,3725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:906;s:6:\"height\";i:624;s:4:\"file\";s:24:\"2019/06/pricechart_2.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"pricechart_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"pricechart_2-300x207.png\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"pricechart_2-768x529.png\";s:5:\"width\";i:768;s:6:\"height\";i:529;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_2-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_2-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:24:\"pricechart_2-666x624.png\";s:5:\"width\";i:666;s:6:\"height\";i:624;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_2-650x624.png\";s:5:\"width\";i:650;s:6:\"height\";i:624;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_2-906x475.png\";s:5:\"width\";i:906;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_2-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_2-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"pricechart_2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"pricechart_2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"pricechart_2-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"pricechart_2-906x588.png\";s:5:\"width\";i:906;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(41261,3732,'_wp_attached_file','2019/06/pricechart_3.png'),
(41262,3732,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:891;s:6:\"height\";i:631;s:4:\"file\";s:24:\"2019/06/pricechart_3.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"pricechart_3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"pricechart_3-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"pricechart_3-768x544.png\";s:5:\"width\";i:768;s:6:\"height\";i:544;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_3-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_3-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:24:\"pricechart_3-666x631.png\";s:5:\"width\";i:666;s:6:\"height\";i:631;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_3-650x631.png\";s:5:\"width\";i:650;s:6:\"height\";i:631;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_3-891x475.png\";s:5:\"width\";i:891;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_3-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:24:\"pricechart_3-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"pricechart_3-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"pricechart_3-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"pricechart_3-891x588.png\";s:5:\"width\";i:891;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"pricechart_3-891x588.png\";s:5:\"width\";i:891;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(41289,3736,'_edit_lock','1649024417:2'),
(41290,3736,'_edit_last','2'),
(41291,3736,'_wp_page_template','default'),
(41292,3736,'ninzio_page_subtitle',''),
(41293,3736,'ninzio_page_sidebar','none'),
(41294,3736,'ninzio_page_title_background_color',''),
(41295,3736,'ninzio_page_title_background_color_opacity','1'),
(41296,3736,'ninzio_page_title_text_color','#444444'),
(41297,3736,'ninzio_page_subtitle_background_color',''),
(41298,3736,'ninzio_page_subtitle_background_color_opacity','1'),
(41299,3736,'ninzio_page_subtitle_text_color','#444444'),
(41300,3736,'ninzio_page_title_section_background_color','#f6f6f6'),
(41301,3736,'ninzio_page_title_section_background_image',''),
(41302,3736,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(41303,3736,'ninzio_page_title_section_background_image_position','left_top'),
(41304,3736,'ninzio_page_title_section_background_image_attachment','scroll'),
(41305,3736,'ninzio_page_title_section_background_image_size','auto'),
(41306,3736,'ninzio_one_page','no'),
(41307,3736,'ninzio_slider','no'),
(41308,3736,'ninzio_page_layout','yes'),
(41309,3736,'ninzio_page_twitter','no'),
(41310,3736,'ninzio_page_padding_top','yes'),
(41311,3736,'ninzio_rich_header','no'),
(41312,3736,'ninzio_page_title_section_background_image_parallax','no'),
(41313,3736,'_yoast_wpseo_content_score','30'),
(41336,3739,'_wp_attached_file','2019/07/DesignUrban.png'),
(41337,3739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1530;s:6:\"height\";i:819;s:4:\"file\";s:23:\"2019/07/DesignUrban.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"DesignUrban-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"DesignUrban-300x161.png\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"DesignUrban-768x411.png\";s:5:\"width\";i:768;s:6:\"height\";i:411;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"DesignUrban-1024x548.png\";s:5:\"width\";i:1024;s:6:\"height\";i:548;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:23:\"DesignUrban-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:23:\"DesignUrban-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:23:\"DesignUrban-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:23:\"DesignUrban-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:23:\"DesignUrban-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:23:\"DesignUrban-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:23:\"DesignUrban-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:23:\"DesignUrban-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:23:\"DesignUrban-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:23:\"DesignUrban-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:24:\"DesignUrban-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(41383,3742,'_wp_attached_file','2019/07/DesignLivermore2.png'),
(41384,3742,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1874;s:6:\"height\";i:979;s:4:\"file\";s:28:\"2019/07/DesignLivermore2.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-768x401.png\";s:5:\"width\";i:768;s:6:\"height\";i:401;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"DesignLivermore2-1024x535.png\";s:5:\"width\";i:1024;s:6:\"height\";i:535;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:29:\"DesignLivermore2-1700x860.png\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:28:\"DesignLivermore2-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:29:\"DesignLivermore2-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(41387,3746,'_wp_attached_file','2019/07/DesignUrban3.png'),
(41388,3746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1030;s:6:\"height\";i:866;s:4:\"file\";s:24:\"2019/07/DesignUrban3.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-300x252.png\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-768x646.png\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"DesignUrban3-1024x861.png\";s:5:\"width\";i:1024;s:6:\"height\";i:861;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:25:\"DesignUrban3-1030x860.png\";s:5:\"width\";i:1030;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:24:\"DesignUrban3-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:25:\"DesignUrban3-1030x588.png\";s:5:\"width\";i:1030;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(41394,3748,'_edit_lock','1651607959:2'),
(41395,3748,'_edit_last','2'),
(41396,3748,'_wp_page_template','default'),
(41397,3748,'ninzio_page_subtitle',''),
(41398,3748,'ninzio_page_sidebar','none'),
(41399,3748,'ninzio_page_title_background_color',''),
(41400,3748,'ninzio_page_title_background_color_opacity','1'),
(41401,3748,'ninzio_page_title_text_color','#444444'),
(41402,3748,'ninzio_page_subtitle_background_color',''),
(41403,3748,'ninzio_page_subtitle_background_color_opacity','1'),
(41404,3748,'ninzio_page_subtitle_text_color','#444444'),
(41405,3748,'ninzio_page_title_section_background_color','#f6f6f6'),
(41406,3748,'ninzio_page_title_section_background_image',''),
(41407,3748,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(41408,3748,'ninzio_page_title_section_background_image_position','left_top'),
(41409,3748,'ninzio_page_title_section_background_image_attachment','scroll'),
(41410,3748,'ninzio_page_title_section_background_image_size','auto'),
(41411,3748,'ninzio_one_page','no'),
(41412,3748,'ninzio_slider','no'),
(41413,3748,'ninzio_page_layout','yes'),
(41414,3748,'ninzio_page_twitter','no'),
(41415,3748,'ninzio_page_padding_top','yes'),
(41416,3748,'ninzio_rich_header','no'),
(41417,3748,'ninzio_page_title_section_background_image_parallax','no'),
(41418,3748,'_yoast_wpseo_content_score','30'),
(41419,3750,'_wp_attached_file','2019/07/DesignColumbia.png'),
(41420,3750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1851;s:6:\"height\";i:958;s:4:\"file\";s:26:\"2019/07/DesignColumbia.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-768x397.png\";s:5:\"width\";i:768;s:6:\"height\";i:397;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"DesignColumbia-1024x530.png\";s:5:\"width\";i:1024;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:27:\"DesignColumbia-1700x860.png\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:26:\"DesignColumbia-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:27:\"DesignColumbia-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(41423,3753,'_wp_attached_file','2019/07/DesignUrban6.png'),
(41424,3753,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:527;s:4:\"file\";s:24:\"2019/07/DesignUrban6.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-300x198.png\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-768x506.png\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-666x527.png\";s:5:\"width\";i:666;s:6:\"height\";i:527;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-650x527.png\";s:5:\"width\";i:650;s:6:\"height\";i:527;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-800x475.png\";s:5:\"width\";i:800;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:24:\"DesignUrban6-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(41427,3756,'_edit_lock','1649023263:2'),
(41428,3756,'_edit_last','2'),
(41429,3756,'_wp_page_template','default'),
(41430,3756,'ninzio_page_subtitle',''),
(41431,3756,'ninzio_page_sidebar','none'),
(41432,3756,'ninzio_page_title_background_color',''),
(41433,3756,'ninzio_page_title_background_color_opacity','1'),
(41434,3756,'ninzio_page_title_text_color','#444444'),
(41435,3756,'ninzio_page_subtitle_background_color',''),
(41436,3756,'ninzio_page_subtitle_background_color_opacity','1'),
(41437,3756,'ninzio_page_subtitle_text_color','#444444'),
(41438,3756,'ninzio_page_title_section_background_color','#f6f6f6'),
(41439,3756,'ninzio_page_title_section_background_image',''),
(41440,3756,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(41441,3756,'ninzio_page_title_section_background_image_position','left_top'),
(41442,3756,'ninzio_page_title_section_background_image_attachment','scroll'),
(41443,3756,'ninzio_page_title_section_background_image_size','auto'),
(41444,3756,'ninzio_one_page','no'),
(41445,3756,'ninzio_slider','no'),
(41446,3756,'ninzio_page_layout','yes'),
(41447,3756,'ninzio_page_twitter','no'),
(41448,3756,'ninzio_page_padding_top','yes'),
(41449,3756,'ninzio_rich_header','no'),
(41450,3756,'ninzio_page_title_section_background_image_parallax','no'),
(41451,3756,'_yoast_wpseo_content_score','30'),
(41452,3758,'_wp_attached_file','2019/07/DesignFingerLakes.png'),
(41453,3758,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1840;s:6:\"height\";i:975;s:4:\"file\";s:29:\"2019/07/DesignFingerLakes.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-768x407.png\";s:5:\"width\";i:768;s:6:\"height\";i:407;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"DesignFingerLakes-1024x543.png\";s:5:\"width\";i:1024;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:30:\"DesignFingerLakes-1700x860.png\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:29:\"DesignFingerLakes-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:30:\"DesignFingerLakes-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(41499,3762,'_edit_lock','1562540560:2'),
(41500,3762,'_edit_last','2'),
(41501,3762,'_wp_page_template','default'),
(41502,3762,'ninzio_page_subtitle',''),
(41503,3762,'ninzio_page_sidebar','none'),
(41504,3762,'ninzio_page_title_background_color',''),
(41505,3762,'ninzio_page_title_background_color_opacity','1'),
(41506,3762,'ninzio_page_title_text_color','#444444'),
(41507,3762,'ninzio_page_subtitle_background_color',''),
(41508,3762,'ninzio_page_subtitle_background_color_opacity','1'),
(41509,3762,'ninzio_page_subtitle_text_color','#444444'),
(41510,3762,'ninzio_page_title_section_background_color','#f6f6f6'),
(41511,3762,'ninzio_page_title_section_background_image',''),
(41512,3762,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(41513,3762,'ninzio_page_title_section_background_image_position','left_top'),
(41514,3762,'ninzio_page_title_section_background_image_attachment','scroll'),
(41515,3762,'ninzio_page_title_section_background_image_size','auto'),
(41516,3762,'ninzio_one_page','no'),
(41517,3762,'ninzio_slider','no'),
(41518,3762,'ninzio_page_layout','yes'),
(41519,3762,'ninzio_page_twitter','no'),
(41520,3762,'ninzio_page_padding_top','yes'),
(41521,3762,'ninzio_rich_header','no'),
(41522,3762,'ninzio_page_title_section_background_image_parallax','no'),
(41523,3762,'_yoast_wpseo_content_score','60'),
(42182,3772,'_wp_attached_file','2019/09/Activ8ColorHoriz-250x250.png'),
(42183,3772,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:61;s:4:\"file\";s:36:\"2019/09/Activ8ColorHoriz-250x250.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Activ8ColorHoriz-250x250-150x61.png\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(42184,3773,'_wp_attached_file','2019/09/Activ8ColorHoriz-300x300.png'),
(42185,3773,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:73;s:4:\"file\";s:36:\"2019/09/Activ8ColorHoriz-300x300.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Activ8ColorHoriz-300x300-150x73.png\";s:5:\"width\";i:150;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Activ8ColorHoriz-300x300-300x73.png\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(42186,3774,'_wp_attached_file','2019/09/Activ8ColorHoriz-350x350.png'),
(42187,3774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:86;s:4:\"file\";s:36:\"2019/09/Activ8ColorHoriz-350x350.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Activ8ColorHoriz-350x350-150x86.png\";s:5:\"width\";i:150;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Activ8ColorHoriz-350x350-300x74.png\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(42189,3775,'_wp_attached_file','2019/09/Activ8ColorStacked-150.png'),
(42190,3775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:62;s:4:\"file\";s:34:\"2019/09/Activ8ColorStacked-150.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Activ8ColorStacked-150-150x62.png\";s:5:\"width\";i:150;s:6:\"height\";i:62;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(42191,3776,'_wp_attached_file','2019/09/Activ8ColorStacked-300.png'),
(42192,3776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:125;s:4:\"file\";s:34:\"2019/09/Activ8ColorStacked-300.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Activ8ColorStacked-300-150x125.png\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Activ8ColorStacked-300-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(42198,3779,'_wp_attached_file','2019/09/Activ8ColorStacked150Transp.png'),
(42199,3779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:62;s:4:\"file\";s:39:\"2019/09/Activ8ColorStacked150Transp.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Activ8ColorStacked150Transp-150x62.png\";s:5:\"width\";i:150;s:6:\"height\";i:62;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(42200,3780,'_wp_attached_file','2019/09/favicon.ico'),
(42201,3780,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:19:\"2019/09/favicon.ico\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(42413,3788,'_menu_item_type','custom'),
(42414,3788,'_menu_item_menu_item_parent','1927'),
(42415,3788,'_menu_item_object_id','3788'),
(42416,3788,'_menu_item_object','custom'),
(42417,3788,'_menu_item_target',''),
(42418,3788,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(42419,3788,'_menu_item_xfn',''),
(42420,3788,'_menu_item_url','https://www.secureclub.net/Help/pos/pos_title.html'),
(42450,3564,'_oembed_0bd8e77237de7c17c04969433a5f2d7b','{{unknown}}'),
(42758,3790,'wprss_template_type','__built_in'),
(42759,1713,'wprss_feed_is_updating',''),
(42760,3791,'wprss_item_date','2019-05-01T20:50:53+0000'),
(42761,3791,'wprss_item_permalink','https://activeclubsolutions.net/active-club-solutions-inc-introduces-new-support-engineer-to-team/'),
(42762,3791,'wprss_item_enclosure',''),
(42763,3791,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(42764,3791,'wprss_item_source_url','https://activeclubsolutions.net/'),
(42765,3791,'wprss_item_author','Active Club Solutions'),
(42766,3791,'wprss_item_author_email',NULL),
(42767,3791,'wprss_item_author_link',NULL),
(42768,3791,'wprss_feed_id','1713'),
(42769,3791,'wprss_images','a:0:{}'),
(42770,3791,'wprss_best_image',''),
(42771,3792,'wprss_item_date','2019-04-24T20:37:31+0000'),
(42772,3792,'wprss_item_permalink','https://activeclubsolutions.net/are-you-looking-at-the-whole-picture/'),
(42773,3792,'wprss_item_enclosure',''),
(42774,3792,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(42775,3792,'wprss_item_source_url','https://activeclubsolutions.net/'),
(42776,3792,'wprss_item_author','Active Club Solutions'),
(42777,3792,'wprss_item_author_email',NULL),
(42778,3792,'wprss_item_author_link',NULL),
(42779,3792,'wprss_feed_id','1713'),
(42780,3792,'wprss_images','a:0:{}'),
(42781,3792,'wprss_best_image',''),
(42782,3793,'wprss_item_date','2019-04-17T21:57:53+0000'),
(42783,3793,'wprss_item_permalink','https://activeclubsolutions.net/did-you-know-your-website-has-2-seconds-to-impress/'),
(42784,3793,'wprss_item_enclosure',''),
(42785,3793,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(42786,3793,'wprss_item_source_url','https://activeclubsolutions.net/'),
(42787,3793,'wprss_item_author','Active Club Solutions'),
(42788,3793,'wprss_item_author_email',NULL),
(42789,3793,'wprss_item_author_link',NULL),
(42790,3793,'wprss_feed_id','1713'),
(42791,3793,'wprss_images','a:0:{}'),
(42792,3793,'wprss_best_image',''),
(42793,3794,'wprss_item_date','2019-04-10T21:44:00+0000'),
(42794,3794,'wprss_item_permalink','https://activeclubsolutions.net/easy-pos-partial-and-split-payments-with-active/'),
(42795,3794,'wprss_item_enclosure',''),
(42796,3794,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(42797,3794,'wprss_item_source_url','https://activeclubsolutions.net/'),
(42798,3794,'wprss_item_author','Active Club Solutions'),
(42799,3794,'wprss_item_author_email',NULL),
(42800,3794,'wprss_item_author_link',NULL),
(42801,3794,'wprss_feed_id','1713'),
(42802,3794,'wprss_images','a:0:{}'),
(42803,3794,'wprss_best_image',''),
(42804,3795,'wprss_item_date','2019-03-21T00:29:05+0000'),
(42805,3795,'wprss_item_permalink','https://activeclubsolutions.net/email-marketing-made-eaasy/'),
(42806,3795,'wprss_item_enclosure',''),
(42807,3795,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(42808,3795,'wprss_item_source_url','https://activeclubsolutions.net/'),
(42809,3795,'wprss_item_author','Active Club Solutions'),
(42810,3795,'wprss_item_author_email',NULL),
(42811,3795,'wprss_item_author_link',NULL),
(42812,3795,'wprss_feed_id','1713'),
(42813,3795,'wprss_images','a:0:{}'),
(42814,3795,'wprss_best_image',''),
(42815,3796,'wprss_item_date','2019-03-06T16:58:50+0000'),
(42816,3796,'wprss_item_permalink','https://activeclubsolutions.net/where-dtc-growth-comes-from/'),
(42817,3796,'wprss_item_enclosure',''),
(42818,3796,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(42819,3796,'wprss_item_source_url','https://activeclubsolutions.net/'),
(42820,3796,'wprss_item_author','Active Club Solutions'),
(42821,3796,'wprss_item_author_email',NULL),
(42822,3796,'wprss_item_author_link',NULL),
(42823,3796,'wprss_feed_id','1713'),
(42824,3796,'wprss_images','a:0:{}'),
(42825,3796,'wprss_best_image',''),
(42826,3797,'wprss_item_date','2019-02-20T18:11:10+0000'),
(42827,3797,'wprss_item_permalink','https://activeclubsolutions.net/active-promotes-punam-sinha-to-vice-president-of-operations/'),
(42828,3797,'wprss_item_enclosure',''),
(42829,3797,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(42830,3797,'wprss_item_source_url','https://activeclubsolutions.net/'),
(42831,3797,'wprss_item_author','Active Club Solutions'),
(42832,3797,'wprss_item_author_email',NULL),
(42833,3797,'wprss_item_author_link',NULL),
(42834,3797,'wprss_feed_id','1713'),
(42835,3797,'wprss_images','a:0:{}'),
(42836,3797,'wprss_best_image',''),
(42837,3798,'wprss_item_date','2019-02-05T00:41:27+0000'),
(42838,3798,'wprss_item_permalink','https://activeclubsolutions.net/3627-2/'),
(42839,3798,'wprss_item_enclosure',''),
(42840,3798,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(42841,3798,'wprss_item_source_url','https://activeclubsolutions.net/'),
(42842,3798,'wprss_item_author','Active Club Solutions'),
(42843,3798,'wprss_item_author_email',NULL),
(42844,3798,'wprss_item_author_link',NULL),
(42845,3798,'wprss_feed_id','1713'),
(42846,3798,'wprss_images','a:0:{}'),
(42847,3798,'wprss_best_image',''),
(42848,3799,'wprss_item_date','2019-01-24T01:31:38+0000'),
(42849,3799,'wprss_item_permalink','https://activeclubsolutions.net/marketing-tools-email-campaign-analysis/'),
(42850,3799,'wprss_item_enclosure',''),
(42851,3799,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(42852,3799,'wprss_item_source_url','https://activeclubsolutions.net/'),
(42853,3799,'wprss_item_author','Active Club Solutions'),
(42854,3799,'wprss_item_author_email',NULL),
(42855,3799,'wprss_item_author_link',NULL),
(42856,3799,'wprss_feed_id','1713'),
(42857,3799,'wprss_images','a:0:{}'),
(42858,3799,'wprss_best_image',''),
(42859,3800,'wprss_item_date','2019-01-09T20:39:29+0000'),
(42860,3800,'wprss_item_permalink','https://activeclubsolutions.net/secrets-of-club-sign-ups-on-kiosk/'),
(42861,3800,'wprss_item_enclosure',''),
(42862,3800,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(42863,3800,'wprss_item_source_url','https://activeclubsolutions.net/'),
(42864,3800,'wprss_item_author','Active Club Solutions'),
(42865,3800,'wprss_item_author_email',NULL),
(42866,3800,'wprss_item_author_link',NULL),
(42867,3800,'wprss_feed_id','1713'),
(42868,3800,'wprss_images','a:0:{}'),
(42869,3800,'wprss_best_image',''),
(42872,3802,'_edit_lock','1577171071:2'),
(42873,3802,'_edit_last','2'),
(42874,3802,'_wp_page_template','default'),
(42875,3802,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42876,3802,'ninzio_page_subtitle',''),
(42877,3802,'ninzio_page_sidebar','none'),
(42878,3802,'ninzio_page_title_background_color',''),
(42879,3802,'ninzio_page_title_background_color_opacity','1'),
(42880,3802,'ninzio_page_title_text_color','#444444'),
(42881,3802,'ninzio_page_subtitle_background_color',''),
(42882,3802,'ninzio_page_subtitle_background_color_opacity','1'),
(42883,3802,'ninzio_page_subtitle_text_color','#444444'),
(42884,3802,'ninzio_page_title_section_background_color','#f6f6f6'),
(42885,3802,'ninzio_page_title_section_background_image',''),
(42886,3802,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(42887,3802,'ninzio_page_title_section_background_image_position','left_top'),
(42888,3802,'ninzio_page_title_section_background_image_attachment','scroll'),
(42889,3802,'ninzio_page_title_section_background_image_size','auto'),
(42890,3802,'ninzio_one_page','no'),
(42891,3802,'ninzio_slider','no'),
(42892,3802,'ninzio_page_layout','yes'),
(42893,3802,'ninzio_page_twitter','no'),
(42894,3802,'ninzio_page_padding_top','yes'),
(42895,3802,'ninzio_rich_header','no'),
(42896,3802,'ninzio_page_title_section_background_image_parallax','no'),
(42897,3802,'_yoast_wpseo_content_score','30'),
(42898,1497,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42899,3805,'_edit_lock','1634653349:2'),
(42900,3805,'_edit_last','2'),
(42901,3805,'_wp_page_template','default'),
(42902,3805,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42903,3805,'ninzio_page_subtitle',''),
(42904,3805,'ninzio_page_sidebar','none'),
(42905,3805,'ninzio_page_title_background_color',''),
(42906,3805,'ninzio_page_title_background_color_opacity','1'),
(42907,3805,'ninzio_page_title_text_color','#444444'),
(42908,3805,'ninzio_page_subtitle_background_color',''),
(42909,3805,'ninzio_page_subtitle_background_color_opacity','1'),
(42910,3805,'ninzio_page_subtitle_text_color','#444444'),
(42911,3805,'ninzio_page_title_section_background_color','#f6f6f6'),
(42912,3805,'ninzio_page_title_section_background_image',''),
(42913,3805,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(42914,3805,'ninzio_page_title_section_background_image_position','left_top'),
(42915,3805,'ninzio_page_title_section_background_image_attachment','scroll'),
(42916,3805,'ninzio_page_title_section_background_image_size','auto'),
(42917,3805,'ninzio_one_page','no'),
(42918,3805,'ninzio_slider','no'),
(42919,3805,'ninzio_page_layout','yes'),
(42920,3805,'ninzio_page_twitter','no'),
(42921,3805,'ninzio_page_padding_top','yes'),
(42922,3805,'ninzio_rich_header','no'),
(42923,3805,'ninzio_page_title_section_background_image_parallax','no'),
(42924,3805,'_yoast_wpseo_content_score','30');
INSERT INTO `wpqk_postmeta` VALUES
(42925,2766,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42926,2860,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42927,3812,'_edit_lock','1584209133:2'),
(42928,3812,'_edit_last','2'),
(42929,3812,'_wp_page_template','default'),
(42930,3812,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42931,3812,'ninzio_page_subtitle',''),
(42932,3812,'ninzio_page_sidebar','none'),
(42933,3812,'ninzio_page_title_background_color',''),
(42934,3812,'ninzio_page_title_background_color_opacity','1'),
(42935,3812,'ninzio_page_title_text_color','#ffffff'),
(42936,3812,'ninzio_page_subtitle_background_color',''),
(42937,3812,'ninzio_page_subtitle_background_color_opacity','1'),
(42938,3812,'ninzio_page_subtitle_text_color','#444444'),
(42939,3812,'ninzio_page_title_section_background_color','#f6f6f6'),
(42940,3812,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2018/02/SpringVineyard.png'),
(42941,3812,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(42942,3812,'ninzio_page_title_section_background_image_position','center_center'),
(42943,3812,'ninzio_page_title_section_background_image_attachment','scroll'),
(42944,3812,'ninzio_page_title_section_background_image_size','auto'),
(42945,3812,'ninzio_one_page','no'),
(42946,3812,'ninzio_slider','no'),
(42947,3812,'ninzio_page_layout','no'),
(42948,3812,'ninzio_page_twitter','no'),
(42949,3812,'ninzio_page_padding_top','yes'),
(42950,3812,'ninzio_rich_header','yes'),
(42951,3812,'ninzio_page_title_section_background_image_parallax','no'),
(42952,3812,'_yoast_wpseo_content_score','30'),
(42953,2991,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42954,3817,'_edit_lock','1589838961:2'),
(42955,3817,'_edit_last','2'),
(42956,3817,'_wp_page_template','default'),
(42957,3817,'_publicize_pending','1'),
(42958,3817,'ninzio_page_subtitle',''),
(42959,3817,'ninzio_page_sidebar','none'),
(42960,3817,'ninzio_page_title_background_color',''),
(42961,3817,'ninzio_page_title_background_color_opacity','1'),
(42962,3817,'ninzio_page_title_text_color','#444444'),
(42963,3817,'ninzio_page_subtitle_background_color',''),
(42964,3817,'ninzio_page_subtitle_background_color_opacity','1'),
(42965,3817,'ninzio_page_subtitle_text_color','#444444'),
(42966,3817,'ninzio_page_title_section_background_color','#f6f6f6'),
(42967,3817,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2014/07/header19.jpg'),
(42968,3817,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(42969,3817,'ninzio_page_title_section_background_image_position','left_top'),
(42970,3817,'ninzio_page_title_section_background_image_attachment','scroll'),
(42971,3817,'ninzio_page_title_section_background_image_size','auto'),
(42972,3817,'ninzio_one_page','no'),
(42973,3817,'ninzio_slider','no'),
(42974,3817,'ninzio_page_layout','no'),
(42975,3817,'ninzio_page_twitter','no'),
(42976,3817,'ninzio_page_padding_top','yes'),
(42977,3817,'ninzio_rich_header','yes'),
(42978,3817,'ninzio_page_title_section_background_image_parallax','no'),
(42979,3817,'_yoast_wpseo_content_score','30'),
(42980,3817,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42985,1589,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42986,2084,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42987,3158,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42988,3748,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42989,3826,'_wp_attached_file','woocommerce-placeholder.png'),
(42990,3826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl5-thumb\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl9-thumb\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"qc-portfolio\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl2-thumb\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"tpl7-thumb\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl11-thumb\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1200x860.png\";s:5:\"width\";i:1200;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl12-thumb\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"tpl15-thumb\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"Ninzio-Half\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"Ninzio-One-Third\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"Ninzio-Three-Quarters\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"Ninzio-Whole\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(42991,2772,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42997,2416,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(42998,3842,'_edit_lock','1660534102:2'),
(42999,3842,'_edit_last','2'),
(43003,3842,'_yoast_wpseo_primary_category','3'),
(43004,3842,'ninzio_post_audio_mp3',''),
(43005,3842,'ninzio_post_audio_ogg',''),
(43006,3842,'ninzio_post_audio_embed',''),
(43007,3842,'ninzio_post_video_mp4',''),
(43008,3842,'ninzio_post_video_ogv',''),
(43009,3842,'ninzio_post_video_webm',''),
(43010,3842,'ninzio_post_video_embed',''),
(43011,3842,'ninzio_post_video_poster',''),
(43012,3842,'ninzio_post_link_url',''),
(43013,3842,'ninzio_post_image_url',''),
(43014,3842,'ninzio_post_image_description',''),
(43015,3842,'ninzio_post_status_author',''),
(43016,3842,'ninzio_post_quote_author',''),
(43017,3842,'ninzio_post_featured_media','yes'),
(43018,3842,'_yoast_wpseo_content_score','60'),
(43019,3842,'_wpas_done_all','1'),
(43022,3843,'wprss_item_date','2021-03-12T06:55:56+0000'),
(43023,3843,'wprss_item_permalink','https://activeclubsolutions.net/3842-2/'),
(43024,3843,'wprss_item_enclosure',''),
(43025,3843,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43026,3843,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43027,3843,'wprss_item_author','Active Club Solutions'),
(43028,3843,'wprss_item_author_email',NULL),
(43029,3843,'wprss_item_author_link',NULL),
(43030,3843,'wprss_feed_id','1713'),
(43031,3843,'wprss_images','a:0:{}'),
(43032,3843,'wprss_best_image',''),
(43038,3627,'_wp_old_date','2019-02-04'),
(43040,3673,'_wp_old_date','2019-04-17'),
(43044,3842,'_wp_old_slug','3842-2'),
(43045,3846,'wprss_item_date','2021-03-12T06:55:56+0000'),
(43046,3846,'wprss_item_permalink','https://activeclubsolutions.net/loveclocks/'),
(43047,3846,'wprss_item_enclosure',''),
(43048,3846,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43049,3846,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43050,3846,'wprss_item_author','Active Club Solutions'),
(43051,3846,'wprss_item_author_email',NULL),
(43052,3846,'wprss_item_author_link',NULL),
(43053,3846,'wprss_feed_id','1713'),
(43054,3846,'wprss_images','a:0:{}'),
(43055,3846,'wprss_best_image',''),
(43057,3849,'_edit_lock','1738693566:2'),
(43058,3849,'_edit_last','2'),
(43059,3849,'_wp_page_template','default'),
(43060,3849,'ninzio_page_subtitle',''),
(43061,3849,'ninzio_page_sidebar','none'),
(43062,3849,'ninzio_page_title_background_color',''),
(43063,3849,'ninzio_page_title_background_color_opacity','1'),
(43064,3849,'ninzio_page_title_text_color','#ffffff'),
(43065,3849,'ninzio_page_subtitle_background_color',''),
(43066,3849,'ninzio_page_subtitle_background_color_opacity','1'),
(43067,3849,'ninzio_page_subtitle_text_color','#444444'),
(43068,3849,'ninzio_page_title_section_background_color','#f6f6f6'),
(43069,3849,'ninzio_page_title_section_background_image','https://activeclubsolutions.net/wp-content/uploads/2017/01/DataMining_6.png'),
(43070,3849,'ninzio_page_title_section_background_image_repeat','no-repeat'),
(43071,3849,'ninzio_page_title_section_background_image_position','center_bottom'),
(43072,3849,'ninzio_page_title_section_background_image_attachment','scroll'),
(43073,3849,'ninzio_page_title_section_background_image_size','auto'),
(43074,3849,'ninzio_one_page','no'),
(43075,3849,'ninzio_slider','no'),
(43076,3849,'ninzio_page_layout','yes'),
(43077,3849,'ninzio_page_twitter','no'),
(43078,3849,'ninzio_page_padding_top','yes'),
(43079,3849,'ninzio_rich_header','yes'),
(43080,3849,'ninzio_page_title_section_background_image_parallax','no'),
(43081,3849,'_yoast_wpseo_content_score','30'),
(43088,3849,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(43089,3851,'_edit_lock','1660534096:2'),
(43090,3851,'_edit_last','2'),
(43094,3851,'_yoast_wpseo_primary_category','1'),
(43095,3851,'ninzio_post_audio_mp3',''),
(43096,3851,'ninzio_post_audio_ogg',''),
(43097,3851,'ninzio_post_audio_embed',''),
(43098,3851,'ninzio_post_video_mp4',''),
(43099,3851,'ninzio_post_video_ogv',''),
(43100,3851,'ninzio_post_video_webm',''),
(43101,3851,'ninzio_post_video_embed',''),
(43102,3851,'ninzio_post_video_poster',''),
(43103,3851,'ninzio_post_link_url',''),
(43104,3851,'ninzio_post_image_url',''),
(43105,3851,'ninzio_post_image_description',''),
(43106,3851,'ninzio_post_status_author',''),
(43107,3851,'ninzio_post_quote_author',''),
(43108,3851,'ninzio_post_featured_media','yes'),
(43109,3851,'_yoast_wpseo_content_score','30'),
(43110,3851,'_wpas_done_all','1'),
(43112,3853,'wprss_item_date','2021-03-27T18:13:12+0000'),
(43113,3853,'wprss_item_permalink','https://activeclubsolutions.net/who-reads-newspapers/'),
(43114,3853,'wprss_item_enclosure',''),
(43115,3853,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43116,3853,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43117,3853,'wprss_item_author','Active Club Solutions'),
(43118,3853,'wprss_item_author_email',NULL),
(43119,3853,'wprss_item_author_link',NULL),
(43120,3853,'wprss_feed_id','1713'),
(43121,3853,'wprss_images','a:0:{}'),
(43122,3853,'wprss_best_image',''),
(43123,3855,'_edit_lock','1660534083:2'),
(43124,3855,'_edit_last','2'),
(43128,3855,'_yoast_wpseo_primary_category',''),
(43129,3855,'ninzio_post_audio_mp3',''),
(43130,3855,'ninzio_post_audio_ogg',''),
(43131,3855,'ninzio_post_audio_embed',''),
(43132,3855,'ninzio_post_video_mp4',''),
(43133,3855,'ninzio_post_video_ogv',''),
(43134,3855,'ninzio_post_video_webm',''),
(43135,3855,'ninzio_post_video_embed',''),
(43136,3855,'ninzio_post_video_poster',''),
(43137,3855,'ninzio_post_link_url',''),
(43138,3855,'ninzio_post_image_url',''),
(43139,3855,'ninzio_post_image_description',''),
(43140,3855,'ninzio_post_status_author',''),
(43141,3855,'ninzio_post_quote_author',''),
(43142,3855,'ninzio_post_featured_media','yes'),
(43143,3855,'_yoast_wpseo_content_score','60'),
(43144,3855,'_wpas_done_all','1'),
(43145,3856,'wprss_item_date','2021-03-30T18:23:41+0000'),
(43146,3856,'wprss_item_permalink','https://activeclubsolutions.net/march21release/'),
(43147,3856,'wprss_item_enclosure',''),
(43148,3856,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43149,3856,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43150,3856,'wprss_item_author','Active Club Solutions'),
(43151,3856,'wprss_item_author_email',NULL),
(43152,3856,'wprss_item_author_link',NULL),
(43153,3856,'wprss_feed_id','1713'),
(43154,3856,'wprss_images','a:0:{}'),
(43155,3856,'wprss_best_image',''),
(43156,3859,'_wp_attached_file','2021/04/news-bulletin.png'),
(43157,3859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:96;s:4:\"file\";s:25:\"2021/04/news-bulletin.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"news-bulletin-150x96.png\";s:5:\"width\";i:150;s:6:\"height\";i:96;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"news-bulletin-100x96.png\";s:5:\"width\";i:100;s:6:\"height\";i:96;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"news-bulletin-100x96.png\";s:5:\"width\";i:100;s:6:\"height\";i:96;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(43158,3860,'_edit_lock','1660534070:2'),
(43159,3860,'_edit_last','2'),
(43163,3860,'_yoast_wpseo_primary_category',''),
(43164,3860,'ninzio_post_audio_mp3',''),
(43165,3860,'ninzio_post_audio_ogg',''),
(43166,3860,'ninzio_post_audio_embed',''),
(43167,3860,'ninzio_post_video_mp4',''),
(43168,3860,'ninzio_post_video_ogv',''),
(43169,3860,'ninzio_post_video_webm',''),
(43170,3860,'ninzio_post_video_embed',''),
(43171,3860,'ninzio_post_video_poster',''),
(43172,3860,'ninzio_post_link_url',''),
(43173,3860,'ninzio_post_image_url',''),
(43174,3860,'ninzio_post_image_description',''),
(43175,3860,'ninzio_post_status_author',''),
(43176,3860,'ninzio_post_quote_author',''),
(43177,3860,'ninzio_post_featured_media','yes'),
(43178,3860,'_yoast_wpseo_content_score','60'),
(43179,3860,'_wpas_done_all','1'),
(43182,3860,'_wp_old_slug','3860-2'),
(43185,3863,'wprss_item_date','2021-04-11T03:15:47+0000'),
(43186,3863,'wprss_item_permalink','https://activeclubsolutions.net/activ8cloud/'),
(43187,3863,'wprss_item_enclosure',''),
(43188,3863,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43189,3863,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43190,3863,'wprss_item_author','Active Club Solutions'),
(43191,3863,'wprss_item_author_email',NULL),
(43192,3863,'wprss_item_author_link',NULL),
(43193,3863,'wprss_feed_id','1713'),
(43194,3863,'wprss_images','a:0:{}'),
(43195,3863,'wprss_best_image',''),
(43196,3866,'_edit_lock','1660534060:2'),
(43197,3866,'_edit_last','2'),
(43201,3866,'_yoast_wpseo_primary_category',''),
(43202,3866,'ninzio_post_audio_mp3',''),
(43203,3866,'ninzio_post_audio_ogg',''),
(43204,3866,'ninzio_post_audio_embed',''),
(43205,3866,'ninzio_post_video_mp4',''),
(43206,3866,'ninzio_post_video_ogv',''),
(43207,3866,'ninzio_post_video_webm',''),
(43208,3866,'ninzio_post_video_embed',''),
(43209,3866,'ninzio_post_video_poster',''),
(43210,3866,'ninzio_post_link_url',''),
(43211,3866,'ninzio_post_image_url',''),
(43212,3866,'ninzio_post_image_description',''),
(43213,3866,'ninzio_post_status_author',''),
(43214,3866,'ninzio_post_quote_author',''),
(43215,3866,'ninzio_post_featured_media','yes'),
(43216,3866,'_yoast_wpseo_content_score','90'),
(43217,3866,'_wpas_done_all','1'),
(43220,3866,'_wp_old_slug','3866-2'),
(43221,3867,'wprss_item_date','2021-05-03T05:32:27+0000'),
(43222,3867,'wprss_item_permalink','https://activeclubsolutions.net/club-choice/'),
(43223,3867,'wprss_item_enclosure',''),
(43224,3867,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43225,3867,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43226,3867,'wprss_item_author','Active Club Solutions'),
(43227,3867,'wprss_item_author_email',NULL),
(43228,3867,'wprss_item_author_link',NULL),
(43229,3867,'wprss_feed_id','1713'),
(43230,3867,'wprss_images','a:0:{}'),
(43231,3867,'wprss_best_image',''),
(43241,3873,'_edit_lock','1660534051:2'),
(43242,3873,'_edit_last','2'),
(43246,3873,'_yoast_wpseo_primary_category',''),
(43247,3873,'ninzio_post_audio_mp3',''),
(43248,3873,'ninzio_post_audio_ogg',''),
(43249,3873,'ninzio_post_audio_embed',''),
(43250,3873,'ninzio_post_video_mp4',''),
(43251,3873,'ninzio_post_video_ogv',''),
(43252,3873,'ninzio_post_video_webm',''),
(43253,3873,'ninzio_post_video_embed',''),
(43254,3873,'ninzio_post_video_poster',''),
(43255,3873,'ninzio_post_link_url',''),
(43256,3873,'ninzio_post_image_url',''),
(43257,3873,'ninzio_post_image_description',''),
(43258,3873,'ninzio_post_status_author',''),
(43259,3873,'ninzio_post_quote_author',''),
(43260,3873,'ninzio_post_featured_media','yes'),
(43261,3873,'_yoast_wpseo_content_score','90'),
(43262,3873,'_wpas_done_all','1'),
(43263,3874,'wprss_item_date','2021-05-28T01:17:32+0000'),
(43264,3874,'wprss_item_permalink','https://activeclubsolutions.net/activ8cloud-now-supports-25000-records/'),
(43265,3874,'wprss_item_enclosure',''),
(43266,3874,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43267,3874,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43268,3874,'wprss_item_author','Active Club Solutions'),
(43269,3874,'wprss_item_author_email',NULL),
(43270,3874,'wprss_item_author_link',NULL),
(43271,3874,'wprss_feed_id','1713'),
(43272,3874,'wprss_images','a:0:{}'),
(43273,3874,'wprss_best_image',''),
(43274,3876,'_edit_lock','1681096377:2'),
(43275,3876,'_edit_last','2'),
(43277,3876,'_yoast_wpseo_primary_category',''),
(43278,3876,'ninzio_post_audio_mp3',''),
(43279,3876,'ninzio_post_audio_ogg',''),
(43280,3876,'ninzio_post_audio_embed',''),
(43281,3876,'ninzio_post_video_mp4',''),
(43282,3876,'ninzio_post_video_ogv',''),
(43283,3876,'ninzio_post_video_webm',''),
(43284,3876,'ninzio_post_video_embed',''),
(43285,3876,'ninzio_post_video_poster',''),
(43286,3876,'ninzio_post_link_url',''),
(43287,3876,'ninzio_post_image_url',''),
(43288,3876,'ninzio_post_image_description',''),
(43289,3876,'ninzio_post_status_author',''),
(43290,3876,'ninzio_post_quote_author',''),
(43291,3876,'ninzio_post_featured_media','yes'),
(43292,3876,'_yoast_wpseo_content_score','90'),
(43293,3876,'_wpas_done_all','1'),
(43312,3878,'wprss_item_date','2021-06-18T04:24:28+0000'),
(43313,3878,'wprss_item_permalink','https://activeclubsolutions.net/activ8cloudchoice-club-video/'),
(43314,3878,'wprss_item_enclosure',''),
(43315,3878,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43316,3878,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43317,3878,'wprss_item_author','Active Club Solutions'),
(43318,3878,'wprss_item_author_email',NULL),
(43319,3878,'wprss_item_author_link',NULL),
(43320,3878,'wprss_feed_id','1713'),
(43321,3878,'wprss_images','a:0:{}'),
(43322,3878,'wprss_best_image',''),
(43325,3884,'_edit_lock','1660534040:2'),
(43326,3884,'_edit_last','2'),
(43330,3884,'_yoast_wpseo_primary_category',''),
(43331,3884,'ninzio_post_audio_mp3',''),
(43332,3884,'ninzio_post_audio_ogg',''),
(43333,3884,'ninzio_post_audio_embed',''),
(43334,3884,'ninzio_post_video_mp4',''),
(43335,3884,'ninzio_post_video_ogv',''),
(43336,3884,'ninzio_post_video_webm',''),
(43337,3884,'ninzio_post_video_embed',''),
(43338,3884,'ninzio_post_video_poster',''),
(43339,3884,'ninzio_post_link_url',''),
(43340,3884,'ninzio_post_image_url',''),
(43341,3884,'ninzio_post_image_description',''),
(43342,3884,'ninzio_post_status_author',''),
(43343,3884,'ninzio_post_quote_author',''),
(43344,3884,'ninzio_post_featured_media','yes'),
(43345,3884,'_yoast_wpseo_content_score','60'),
(43346,3884,'_wpas_done_all','1'),
(43347,3885,'wprss_item_date','2021-07-02T19:42:34+0000'),
(43348,3885,'wprss_item_permalink','https://activeclubsolutions.net/activ8cloud-now-supports-user-management/'),
(43349,3885,'wprss_item_enclosure',''),
(43350,3885,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43351,3885,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43352,3885,'wprss_item_author','Active Club Solutions'),
(43353,3885,'wprss_item_author_email',NULL),
(43354,3885,'wprss_item_author_link',NULL),
(43355,3885,'wprss_feed_id','1713'),
(43356,3885,'wprss_images','a:0:{}'),
(43357,3885,'wprss_best_image',''),
(43361,3887,'_edit_lock','1660534030:2'),
(43362,3887,'_edit_last','2'),
(43364,3887,'_yoast_wpseo_primary_category',''),
(43365,3887,'ninzio_post_audio_mp3',''),
(43366,3887,'ninzio_post_audio_ogg',''),
(43367,3887,'ninzio_post_audio_embed',''),
(43368,3887,'ninzio_post_video_mp4',''),
(43369,3887,'ninzio_post_video_ogv',''),
(43370,3887,'ninzio_post_video_webm',''),
(43371,3887,'ninzio_post_video_embed',''),
(43372,3887,'ninzio_post_video_poster',''),
(43373,3887,'ninzio_post_link_url',''),
(43374,3887,'ninzio_post_image_url',''),
(43375,3887,'ninzio_post_image_description',''),
(43376,3887,'ninzio_post_status_author',''),
(43377,3887,'ninzio_post_quote_author',''),
(43378,3887,'ninzio_post_featured_media','yes'),
(43379,3887,'_yoast_wpseo_content_score','60'),
(43380,3887,'_wpas_done_all','1'),
(43395,3889,'wprss_item_date','2021-07-05T12:39:19+0000'),
(43396,3889,'wprss_item_permalink','https://activeclubsolutions.net/manager-online-ctiv8cloud-user-actions-menu/'),
(43397,3889,'wprss_item_enclosure',''),
(43398,3889,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43399,3889,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43400,3889,'wprss_item_author','David Weeks'),
(43401,3889,'wprss_item_author_email',NULL),
(43402,3889,'wprss_item_author_link',NULL),
(43403,3889,'wprss_feed_id','1713'),
(43404,3889,'wprss_images','a:0:{}'),
(43405,3889,'wprss_best_image',''),
(43407,3891,'_edit_lock','1660534022:2'),
(43408,3891,'_edit_last','2'),
(43410,3891,'_yoast_wpseo_primary_category',''),
(43411,3891,'ninzio_post_audio_mp3',''),
(43412,3891,'ninzio_post_audio_ogg',''),
(43413,3891,'ninzio_post_audio_embed',''),
(43414,3891,'ninzio_post_video_mp4',''),
(43415,3891,'ninzio_post_video_ogv',''),
(43416,3891,'ninzio_post_video_webm',''),
(43417,3891,'ninzio_post_video_embed',''),
(43418,3891,'ninzio_post_video_poster',''),
(43419,3891,'ninzio_post_link_url',''),
(43420,3891,'ninzio_post_image_url',''),
(43421,3891,'ninzio_post_image_description',''),
(43422,3891,'ninzio_post_status_author',''),
(43423,3891,'ninzio_post_quote_author',''),
(43424,3891,'ninzio_post_featured_media','yes'),
(43425,3891,'_yoast_wpseo_content_score','60'),
(43426,3891,'_wpas_done_all','1'),
(43442,3893,'wprss_item_date','2021-07-07T04:55:39+0000'),
(43443,3893,'wprss_item_permalink','https://activeclubsolutions.net/activ8cloud%E2%80%8A-%E2%80%8Acustomer-membership/'),
(43444,3893,'wprss_item_enclosure',''),
(43445,3893,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43446,3893,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43447,3893,'wprss_item_author','Active Club Solutions'),
(43448,3893,'wprss_item_author_email',NULL),
(43449,3893,'wprss_item_author_link',NULL),
(43450,3893,'wprss_feed_id','1713'),
(43451,3893,'wprss_images','a:0:{}'),
(43452,3893,'wprss_best_image',''),
(43491,3897,'_edit_lock','1660534015:2'),
(43492,3897,'_edit_last','2'),
(43494,3897,'_yoast_wpseo_primary_category',''),
(43495,3897,'ninzio_post_audio_mp3',''),
(43496,3897,'ninzio_post_audio_ogg',''),
(43497,3897,'ninzio_post_audio_embed',''),
(43498,3897,'ninzio_post_video_mp4',''),
(43499,3897,'ninzio_post_video_ogv',''),
(43500,3897,'ninzio_post_video_webm',''),
(43501,3897,'ninzio_post_video_embed',''),
(43502,3897,'ninzio_post_video_poster',''),
(43503,3897,'ninzio_post_link_url',''),
(43504,3897,'ninzio_post_image_url',''),
(43505,3897,'ninzio_post_image_description',''),
(43506,3897,'ninzio_post_status_author',''),
(43507,3897,'ninzio_post_quote_author',''),
(43508,3897,'ninzio_post_featured_media','yes'),
(43509,3897,'_yoast_wpseo_content_score','60'),
(43510,3897,'_wpas_done_all','1'),
(43532,3899,'wprss_item_date','2021-07-13T12:19:08+0000'),
(43533,3899,'wprss_item_permalink','https://activeclubsolutions.net/manager-online-ctiv8cloud%E2%80%8A-sales-order-summary-line/'),
(43534,3899,'wprss_item_enclosure',''),
(43535,3899,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43536,3899,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43537,3899,'wprss_item_author','David Weeks'),
(43538,3899,'wprss_item_author_email',NULL),
(43539,3899,'wprss_item_author_link',NULL),
(43540,3899,'wprss_feed_id','1713'),
(43541,3899,'wprss_images','a:0:{}'),
(43542,3899,'wprss_best_image',''),
(43544,3902,'_edit_lock','1681096390:2'),
(43545,3902,'_edit_last','2'),
(43547,3902,'_yoast_wpseo_primary_category',''),
(43548,3902,'ninzio_post_audio_mp3',''),
(43549,3902,'ninzio_post_audio_ogg',''),
(43550,3902,'ninzio_post_audio_embed',''),
(43551,3902,'ninzio_post_video_mp4',''),
(43552,3902,'ninzio_post_video_ogv',''),
(43553,3902,'ninzio_post_video_webm',''),
(43554,3902,'ninzio_post_video_embed',''),
(43555,3902,'ninzio_post_video_poster',''),
(43556,3902,'ninzio_post_link_url',''),
(43557,3902,'ninzio_post_image_url',''),
(43558,3902,'ninzio_post_image_description',''),
(43559,3902,'ninzio_post_status_author',''),
(43560,3902,'ninzio_post_quote_author',''),
(43561,3902,'ninzio_post_featured_media','yes'),
(43562,3902,'_yoast_wpseo_content_score','60'),
(43563,3902,'_wpas_done_all','1'),
(43578,3903,'wprss_item_date','2021-07-24T15:04:29+0000'),
(43579,3903,'wprss_item_permalink','https://activeclubsolutions.net/manager-online-ctiv8cloud-sms-text-messaging/'),
(43580,3903,'wprss_item_enclosure',''),
(43581,3903,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43582,3903,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43583,3903,'wprss_item_author','David Weeks'),
(43584,3903,'wprss_item_author_email',NULL),
(43585,3903,'wprss_item_author_link',NULL),
(43586,3903,'wprss_feed_id','1713'),
(43587,3903,'wprss_images','a:0:{}'),
(43588,3903,'wprss_best_image',''),
(43594,3910,'_edit_lock','1660534007:2'),
(43595,3910,'_edit_last','2'),
(43597,3910,'_yoast_wpseo_primary_category',''),
(43598,3910,'ninzio_post_audio_mp3',''),
(43599,3910,'ninzio_post_audio_ogg',''),
(43600,3910,'ninzio_post_audio_embed',''),
(43601,3910,'ninzio_post_video_mp4',''),
(43602,3910,'ninzio_post_video_ogv',''),
(43603,3910,'ninzio_post_video_webm',''),
(43604,3910,'ninzio_post_video_embed',''),
(43605,3910,'ninzio_post_video_poster',''),
(43606,3910,'ninzio_post_link_url',''),
(43607,3910,'ninzio_post_image_url',''),
(43608,3910,'ninzio_post_image_description',''),
(43609,3910,'ninzio_post_status_author',''),
(43610,3910,'ninzio_post_quote_author',''),
(43611,3910,'ninzio_post_featured_media','yes'),
(43612,3910,'_yoast_wpseo_content_score','60'),
(43613,3910,'_wpas_done_all','1'),
(43629,3911,'wprss_item_date','2021-08-10T13:50:44+0000'),
(43630,3911,'wprss_item_permalink','https://activeclubsolutions.net/manager-online-ctiv8cloud-loyalty-points/'),
(43631,3911,'wprss_item_enclosure',''),
(43632,3911,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43633,3911,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43634,3911,'wprss_item_author','David Weeks'),
(43635,3911,'wprss_item_author_email',NULL),
(43636,3911,'wprss_item_author_link',NULL),
(43637,3911,'wprss_feed_id','1713'),
(43638,3911,'wprss_images','a:0:{}'),
(43639,3911,'wprss_best_image',''),
(43641,3913,'_edit_lock','1628812335:2'),
(43642,3913,'_edit_last','2'),
(43644,3916,'_edit_lock','1660533999:2'),
(43645,3916,'_edit_last','2'),
(43647,3916,'_yoast_wpseo_primary_category',''),
(43648,3916,'ninzio_post_audio_mp3',''),
(43649,3916,'ninzio_post_audio_ogg',''),
(43650,3916,'ninzio_post_audio_embed',''),
(43651,3916,'ninzio_post_video_mp4',''),
(43652,3916,'ninzio_post_video_ogv',''),
(43653,3916,'ninzio_post_video_webm',''),
(43654,3916,'ninzio_post_video_embed',''),
(43655,3916,'ninzio_post_video_poster',''),
(43656,3916,'ninzio_post_link_url',''),
(43657,3916,'ninzio_post_image_url',''),
(43658,3916,'ninzio_post_image_description',''),
(43659,3916,'ninzio_post_status_author',''),
(43660,3916,'ninzio_post_quote_author',''),
(43661,3916,'ninzio_post_featured_media','yes'),
(43663,3916,'_wpas_done_all','1'),
(43677,3917,'wprss_item_date','2021-08-13T20:45:11+0000'),
(43678,3917,'wprss_item_permalink','https://activeclubsolutions.net/manager-online-ctiv8cloud-exporting-data-sheets/'),
(43679,3917,'wprss_item_enclosure',''),
(43680,3917,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43681,3917,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43682,3917,'wprss_item_author','David Weeks'),
(43683,3917,'wprss_item_author_email',NULL),
(43684,3917,'wprss_item_author_link',NULL),
(43685,3917,'wprss_feed_id','1713'),
(43686,3917,'wprss_images','a:0:{}'),
(43687,3917,'wprss_best_image',''),
(43691,3916,'_yoast_wpseo_content_score','60'),
(43696,3921,'_edit_lock','1660533989:2'),
(43697,3921,'_edit_last','2'),
(43699,3921,'_yoast_wpseo_primary_category',''),
(43700,3921,'ninzio_post_audio_mp3',''),
(43701,3921,'ninzio_post_audio_ogg',''),
(43702,3921,'ninzio_post_audio_embed',''),
(43703,3921,'ninzio_post_video_mp4',''),
(43704,3921,'ninzio_post_video_ogv',''),
(43705,3921,'ninzio_post_video_webm',''),
(43706,3921,'ninzio_post_video_embed',''),
(43707,3921,'ninzio_post_video_poster',''),
(43708,3921,'ninzio_post_link_url',''),
(43709,3921,'ninzio_post_image_url',''),
(43710,3921,'ninzio_post_image_description',''),
(43711,3921,'ninzio_post_status_author',''),
(43712,3921,'ninzio_post_quote_author',''),
(43713,3921,'ninzio_post_featured_media','yes'),
(43714,3921,'_wpas_done_all','1'),
(43731,3923,'wprss_item_date','2021-08-25T14:40:02+0000'),
(43732,3923,'wprss_item_permalink','https://activeclubsolutions.net/manager-online-ctiv8cloud-instant-reports/'),
(43733,3923,'wprss_item_enclosure',''),
(43734,3923,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43735,3923,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43736,3923,'wprss_item_author','David Weeks'),
(43737,3923,'wprss_item_author_email',NULL),
(43738,3923,'wprss_item_author_link',NULL),
(43739,3923,'wprss_feed_id','1713'),
(43740,3923,'wprss_images','a:0:{}'),
(43741,3923,'wprss_best_image',''),
(43742,3921,'_yoast_wpseo_content_score','60'),
(43744,3924,'_edit_lock','1660533949:2'),
(43745,3924,'_edit_last','2'),
(43747,3924,'_yoast_wpseo_primary_category',''),
(43748,3924,'ninzio_post_audio_mp3',''),
(43749,3924,'ninzio_post_audio_ogg',''),
(43750,3924,'ninzio_post_audio_embed',''),
(43751,3924,'ninzio_post_video_mp4',''),
(43752,3924,'ninzio_post_video_ogv',''),
(43753,3924,'ninzio_post_video_webm',''),
(43754,3924,'ninzio_post_video_embed',''),
(43755,3924,'ninzio_post_video_poster',''),
(43756,3924,'ninzio_post_link_url',''),
(43757,3924,'ninzio_post_image_url',''),
(43758,3924,'ninzio_post_image_description',''),
(43759,3924,'ninzio_post_status_author',''),
(43760,3924,'ninzio_post_quote_author',''),
(43761,3924,'ninzio_post_featured_media','yes'),
(43762,3924,'_wpas_done_all','1'),
(43763,3924,'_yoast_wpseo_content_score','30'),
(43777,3925,'wprss_item_date','2021-08-25T15:05:07+0000'),
(43778,3925,'wprss_item_permalink','https://activeclubsolutions.net/manager-online-ctiv8cloud-alert-print-manager-update/'),
(43779,3925,'wprss_item_enclosure',''),
(43780,3925,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43781,3925,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43782,3925,'wprss_item_author','David Weeks'),
(43783,3925,'wprss_item_author_email',NULL),
(43784,3925,'wprss_item_author_link',NULL),
(43785,3925,'wprss_feed_id','1713'),
(43786,3925,'wprss_images','a:0:{}'),
(43787,3925,'wprss_best_image',''),
(43788,3926,'_edit_lock','1743276441:21'),
(43789,3926,'_edit_last','2'),
(43791,3926,'_yoast_wpseo_primary_category',''),
(43792,3926,'ninzio_post_audio_mp3',''),
(43793,3926,'ninzio_post_audio_ogg',''),
(43794,3926,'ninzio_post_audio_embed',''),
(43795,3926,'ninzio_post_video_mp4',''),
(43796,3926,'ninzio_post_video_ogv',''),
(43797,3926,'ninzio_post_video_webm',''),
(43798,3926,'ninzio_post_video_embed',''),
(43799,3926,'ninzio_post_video_poster',''),
(43800,3926,'ninzio_post_link_url',''),
(43801,3926,'ninzio_post_image_url',''),
(43802,3926,'ninzio_post_image_description',''),
(43803,3926,'ninzio_post_status_author',''),
(43804,3926,'ninzio_post_quote_author',''),
(43805,3926,'ninzio_post_featured_media','yes'),
(43806,3926,'_wpas_done_all','1'),
(43807,3926,'_yoast_wpseo_content_score','60'),
(43828,3929,'wprss_item_date','2021-08-31T12:02:57+0000'),
(43829,3929,'wprss_item_permalink','https://activeclubsolutions.net/manager-online-ctiv8cloud-new-text-editor-for-templates-and-notes/'),
(43830,3929,'wprss_item_enclosure',''),
(43831,3929,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43832,3929,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43833,3929,'wprss_item_author','David Weeks'),
(43834,3929,'wprss_item_author_email',NULL),
(43835,3929,'wprss_item_author_link',NULL),
(43836,3929,'wprss_feed_id','1713'),
(43837,3929,'wprss_images','a:0:{}'),
(43838,3929,'wprss_best_image',''),
(43843,848,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(43866,3937,'_edit_lock','1660533926:2'),
(43867,3937,'_edit_last','2'),
(43868,3937,'_yoast_wpseo_primary_category',''),
(43869,3937,'ninzio_post_audio_mp3',''),
(43870,3937,'ninzio_post_audio_ogg',''),
(43871,3937,'ninzio_post_audio_embed',''),
(43872,3937,'ninzio_post_video_mp4',''),
(43873,3937,'ninzio_post_video_ogv',''),
(43874,3937,'ninzio_post_video_webm',''),
(43875,3937,'ninzio_post_video_embed',''),
(43876,3937,'ninzio_post_video_poster',''),
(43877,3937,'ninzio_post_link_url',''),
(43878,3937,'ninzio_post_image_url',''),
(43879,3937,'ninzio_post_image_description',''),
(43880,3937,'ninzio_post_status_author',''),
(43881,3937,'ninzio_post_quote_author',''),
(43882,3937,'ninzio_post_featured_media','yes'),
(43883,3937,'_wpas_done_all','1'),
(43884,3937,'_yoast_wpseo_content_score','30'),
(43902,3938,'wprss_item_date','2021-09-13T19:29:30+0000'),
(43903,3938,'wprss_item_permalink','https://activeclubsolutions.net/modifying-display-headings/'),
(43904,3938,'wprss_item_enclosure',''),
(43905,3938,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43906,3938,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43907,3938,'wprss_item_author','David Weeks'),
(43908,3938,'wprss_item_author_email',NULL),
(43909,3938,'wprss_item_author_link',NULL),
(43910,3938,'wprss_feed_id','1713'),
(43911,3938,'wprss_images','a:0:{}'),
(43912,3938,'wprss_best_image',''),
(43926,3876,'_oembed_4f04592df24c0da579893b03be4ab00d','<iframe title=\"Cloud Webinar - Choice Clubs\" src=\"https://player.vimeo.com/video/563868685?h=b01bdf1d8a&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(43927,3876,'_oembed_time_4f04592df24c0da579893b03be4ab00d','1648670069'),
(43928,3479,'_oembed_c85787bc776f190873a1036a0a676ce0','<iframe title=\"Sales and Marketing POS Video\" src=\"https://player.vimeo.com/video/297431840?h=9a145d4cb9&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(43929,3479,'_oembed_time_c85787bc776f190873a1036a0a676ce0','1633141943'),
(43930,3466,'_oembed_b55b7b29dffe66ad5d79eebcc5f433ff','<iframe title=\"Shopping Cart - Gift Cards\" src=\"https://player.vimeo.com/video/294987696?h=5516e3599c&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(43931,3466,'_oembed_time_b55b7b29dffe66ad5d79eebcc5f433ff','1633200812'),
(43932,3600,'_oembed_7ca3fe6281b25a34e46ed8186a192284','<iframe title=\"Web Tools - Signup Kiosk\" src=\"https://player.vimeo.com/video/309048103?h=de913875e7&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(43933,3600,'_oembed_time_7ca3fe6281b25a34e46ed8186a192284','1633218645'),
(43934,3567,'_oembed_15c2813838f4c17ad30eb197f13012c1','<iframe title=\"Marketing Tools - Unsubscribe\" src=\"https://player.vimeo.com/video/305177473?h=e027ec5f1c&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(43935,3567,'_oembed_time_15c2813838f4c17ad30eb197f13012c1','1633363345'),
(43936,1790,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(43940,3953,'_edit_lock','1660518749:2'),
(43941,3953,'_edit_last','2'),
(43942,3953,'_yoast_wpseo_primary_category',''),
(43943,3953,'ninzio_post_audio_mp3',''),
(43944,3953,'ninzio_post_audio_ogg',''),
(43945,3953,'ninzio_post_audio_embed',''),
(43946,3953,'ninzio_post_video_mp4',''),
(43947,3953,'ninzio_post_video_ogv',''),
(43948,3953,'ninzio_post_video_webm',''),
(43949,3953,'ninzio_post_video_embed',''),
(43950,3953,'ninzio_post_video_poster',''),
(43951,3953,'ninzio_post_link_url',''),
(43952,3953,'ninzio_post_image_url',''),
(43953,3953,'ninzio_post_image_description',''),
(43954,3953,'ninzio_post_status_author',''),
(43955,3953,'ninzio_post_quote_author',''),
(43956,3953,'ninzio_post_featured_media','yes'),
(43957,3953,'_wpas_done_all','1'),
(43958,3953,'_yoast_wpseo_content_score','60'),
(43975,3953,'_inpost_head_script','a:1:{s:19:\"synth_header_script\";s:89:\"<script src=\"https://kit.fontawesome.com/72dd7d0958.js\" crossorigin=\"anonymous\"></script>\";}'),
(43976,3956,'wprss_item_date','2021-10-10T12:35:59+0000'),
(43977,3956,'wprss_item_permalink','https://activeclubsolutions.net/new-administration-folders/'),
(43978,3956,'wprss_item_enclosure',''),
(43979,3956,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(43980,3956,'wprss_item_source_url','https://activeclubsolutions.net/'),
(43981,3956,'wprss_item_author','David Weeks'),
(43982,3956,'wprss_item_author_email',NULL),
(43983,3956,'wprss_item_author_link',NULL),
(43984,3956,'wprss_feed_id','1713'),
(43985,3956,'wprss_images','a:0:{}'),
(43986,3956,'wprss_best_image',''),
(43988,2776,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(43989,2774,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(43990,3961,'_edit_lock','1660518730:2'),
(43991,3961,'_edit_last','2'),
(43992,3961,'_yoast_wpseo_primary_category',''),
(43993,3961,'ninzio_post_audio_mp3',''),
(43994,3961,'ninzio_post_audio_ogg',''),
(43995,3961,'ninzio_post_audio_embed',''),
(43996,3961,'ninzio_post_video_mp4',''),
(43997,3961,'ninzio_post_video_ogv',''),
(43998,3961,'ninzio_post_video_webm',''),
(43999,3961,'ninzio_post_video_embed',''),
(44000,3961,'ninzio_post_video_poster',''),
(44001,3961,'ninzio_post_link_url',''),
(44002,3961,'ninzio_post_image_url',''),
(44003,3961,'ninzio_post_image_description',''),
(44004,3961,'ninzio_post_status_author',''),
(44005,3961,'ninzio_post_quote_author',''),
(44006,3961,'ninzio_post_featured_media','yes'),
(44007,3961,'_wpas_done_all','1'),
(44008,3961,'_yoast_wpseo_content_score','60'),
(44010,3961,'_inpost_head_script','a:1:{s:19:\"synth_header_script\";s:89:\"<script src=\"https://kit.fontawesome.com/72dd7d0958.js\" crossorigin=\"anonymous\"></script>\";}'),
(44026,3964,'_edit_lock','1660518713:2'),
(44027,3964,'_edit_last','2'),
(44028,3964,'_yoast_wpseo_primary_category',''),
(44029,3964,'ninzio_post_audio_mp3',''),
(44030,3964,'ninzio_post_audio_ogg',''),
(44031,3964,'ninzio_post_audio_embed',''),
(44032,3964,'ninzio_post_video_mp4',''),
(44033,3964,'ninzio_post_video_ogv',''),
(44034,3964,'ninzio_post_video_webm',''),
(44035,3964,'ninzio_post_video_embed',''),
(44036,3964,'ninzio_post_video_poster',''),
(44037,3964,'ninzio_post_link_url',''),
(44038,3964,'ninzio_post_image_url',''),
(44039,3964,'ninzio_post_image_description',''),
(44040,3964,'ninzio_post_status_author',''),
(44041,3964,'ninzio_post_quote_author',''),
(44042,3964,'ninzio_post_featured_media','yes'),
(44043,3964,'_wpas_done_all','1'),
(44044,3964,'_yoast_wpseo_content_score','30'),
(44046,3964,'_inpost_head_script','a:1:{s:19:\"synth_header_script\";s:89:\"<script src=\"https://kit.fontawesome.com/72dd7d0958.js\" crossorigin=\"anonymous\"></script>\";}'),
(44059,3965,'wprss_item_date','2021-11-09T15:19:14+0000'),
(44060,3965,'wprss_item_permalink','https://activeclubsolutions.net/adding-members-to-a-club-run/'),
(44061,3965,'wprss_item_enclosure',''),
(44062,3965,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44063,3965,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44064,3965,'wprss_item_author','David Weeks'),
(44065,3965,'wprss_item_author_email',NULL),
(44066,3965,'wprss_item_author_link',NULL),
(44067,3965,'wprss_feed_id','1713'),
(44068,3965,'wprss_images','a:0:{}'),
(44069,3965,'wprss_best_image',''),
(44070,3966,'wprss_item_date','2021-11-09T14:48:09+0000'),
(44071,3966,'wprss_item_permalink','https://activeclubsolutions.net/more-new-administration-folders/'),
(44072,3966,'wprss_item_enclosure',''),
(44073,3966,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44074,3966,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44075,3966,'wprss_item_author','David Weeks'),
(44076,3966,'wprss_item_author_email',NULL),
(44077,3966,'wprss_item_author_link',NULL),
(44078,3966,'wprss_feed_id','1713'),
(44079,3966,'wprss_images','a:0:{}'),
(44080,3966,'wprss_best_image',''),
(44086,3876,'_oembed_c8a32711ad9d7d90435fac8fc017eef4','<iframe title=\"Cloud Webinar - Choice Clubs\" src=\"https://player.vimeo.com/video/563868685?h=b01bdf1d8a&amp;dnt=1&amp;app_id=122963\" width=\"907\" height=\"510\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(44087,3876,'_oembed_time_c8a32711ad9d7d90435fac8fc017eef4','1636563050'),
(44105,3971,'_edit_lock','1660518722:2'),
(44106,3971,'_edit_last','2'),
(44107,3971,'_yoast_wpseo_primary_category',''),
(44108,3971,'ninzio_post_audio_mp3',''),
(44109,3971,'ninzio_post_audio_ogg',''),
(44110,3971,'ninzio_post_audio_embed',''),
(44111,3971,'ninzio_post_video_mp4',''),
(44112,3971,'ninzio_post_video_ogv',''),
(44113,3971,'ninzio_post_video_webm',''),
(44114,3971,'ninzio_post_video_embed',''),
(44115,3971,'ninzio_post_video_poster',''),
(44116,3971,'ninzio_post_link_url',''),
(44117,3971,'ninzio_post_image_url',''),
(44118,3971,'ninzio_post_image_description',''),
(44119,3971,'ninzio_post_status_author',''),
(44120,3971,'ninzio_post_quote_author',''),
(44121,3971,'ninzio_post_featured_media','yes'),
(44122,3971,'_wpas_done_all','1'),
(44123,3971,'_yoast_wpseo_content_score','60'),
(44125,3971,'_inpost_head_script','a:1:{s:19:\"synth_header_script\";s:89:\"<script src=\"https://kit.fontawesome.com/72dd7d0958.js\" crossorigin=\"anonymous\"></script>\";}'),
(44138,3973,'wprss_item_date','2021-12-06T21:13:04+0000'),
(44139,3973,'wprss_item_permalink','https://activeclubsolutions.net/image-library-management/'),
(44140,3973,'wprss_item_enclosure',''),
(44141,3973,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44142,3973,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44143,3973,'wprss_item_author','David Weeks'),
(44144,3973,'wprss_item_author_email',NULL),
(44145,3973,'wprss_item_author_link',NULL),
(44146,3973,'wprss_feed_id','1713'),
(44147,3973,'wprss_images','a:0:{}'),
(44148,3973,'wprss_best_image',''),
(44149,2454,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44164,3981,'_edit_lock','1660518701:2'),
(44165,3981,'_edit_last','2'),
(44166,3981,'_yoast_wpseo_primary_category',''),
(44167,3981,'ninzio_post_audio_mp3',''),
(44168,3981,'ninzio_post_audio_ogg',''),
(44169,3981,'ninzio_post_audio_embed',''),
(44170,3981,'ninzio_post_video_mp4',''),
(44171,3981,'ninzio_post_video_ogv',''),
(44172,3981,'ninzio_post_video_webm',''),
(44173,3981,'ninzio_post_video_embed',''),
(44174,3981,'ninzio_post_video_poster',''),
(44175,3981,'ninzio_post_link_url',''),
(44176,3981,'ninzio_post_image_url',''),
(44177,3981,'ninzio_post_image_description',''),
(44178,3981,'ninzio_post_status_author',''),
(44179,3981,'ninzio_post_quote_author',''),
(44180,3981,'ninzio_post_featured_media','yes'),
(44181,3981,'_yoast_wpseo_content_score','60'),
(44182,3981,'_wpas_done_all','1'),
(44184,3981,'_oembed_4f04592df24c0da579893b03be4ab00d','<iframe title=\"Cloud Webinar - Choice Clubs\" src=\"https://player.vimeo.com/video/563868685?h=b01bdf1d8a&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(44185,3981,'_oembed_time_4f04592df24c0da579893b03be4ab00d','1633128273'),
(44186,3981,'_oembed_c8a32711ad9d7d90435fac8fc017eef4','<iframe title=\"Cloud Webinar - Choice Clubs\" src=\"https://player.vimeo.com/video/563868685?h=b01bdf1d8a&amp;dnt=1&amp;app_id=122963\" width=\"907\" height=\"510\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(44187,3981,'_oembed_time_c8a32711ad9d7d90435fac8fc017eef4','1636563050'),
(44196,3981,'_oembed_c1a2a28212ca4aa1d6f36ee296bb3064','<iframe title=\"Unearned Revenue Demonstration\" src=\"https://player.vimeo.com/video/660302973?h=1564098fe3&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(44197,3981,'_oembed_time_c1a2a28212ca4aa1d6f36ee296bb3064','1640979020'),
(44200,3981,'_wp_old_slug','choice-club-video'),
(44202,3985,'wprss_item_date','2021-12-27T03:54:24+0000'),
(44203,3985,'wprss_item_permalink','https://activeclubsolutions.net/unearnedrevenue/'),
(44204,3985,'wprss_item_enclosure',''),
(44205,3985,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44206,3985,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44207,3985,'wprss_item_author','Active Club Solutions'),
(44208,3985,'wprss_item_author_email',NULL),
(44209,3985,'wprss_item_author_link',NULL),
(44210,3985,'wprss_feed_id','1713'),
(44211,3985,'wprss_images','a:0:{}'),
(44212,3985,'wprss_best_image',''),
(44219,3338,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44220,3275,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44223,3396,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44224,3325,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44225,3321,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44226,3994,'_edit_lock','1660518677:2'),
(44227,3994,'_edit_last','2'),
(44228,3994,'_yoast_wpseo_primary_category',''),
(44229,3994,'ninzio_post_audio_mp3',''),
(44230,3994,'ninzio_post_audio_ogg',''),
(44231,3994,'ninzio_post_audio_embed',''),
(44232,3994,'ninzio_post_video_mp4',''),
(44233,3994,'ninzio_post_video_ogv',''),
(44234,3994,'ninzio_post_video_webm',''),
(44235,3994,'ninzio_post_video_embed',''),
(44236,3994,'ninzio_post_video_poster',''),
(44237,3994,'ninzio_post_link_url',''),
(44238,3994,'ninzio_post_image_url',''),
(44239,3994,'ninzio_post_image_description',''),
(44240,3994,'ninzio_post_status_author',''),
(44241,3994,'ninzio_post_quote_author',''),
(44242,3994,'ninzio_post_featured_media','yes'),
(44243,3994,'_yoast_wpseo_content_score','90'),
(44244,3994,'_wpas_done_all','1'),
(44246,3994,'_oembed_4f04592df24c0da579893b03be4ab00d','<iframe title=\"Cloud Webinar - Choice Clubs\" src=\"https://player.vimeo.com/video/563868685?h=b01bdf1d8a&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(44247,3994,'_oembed_time_4f04592df24c0da579893b03be4ab00d','1633128273'),
(44248,3994,'_oembed_c8a32711ad9d7d90435fac8fc017eef4','<iframe title=\"Cloud Webinar - Choice Clubs\" src=\"https://player.vimeo.com/video/563868685?h=b01bdf1d8a&amp;dnt=1&amp;app_id=122963\" width=\"907\" height=\"510\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(44249,3994,'_oembed_time_c8a32711ad9d7d90435fac8fc017eef4','1636563050'),
(44250,3994,'_oembed_c1a2a28212ca4aa1d6f36ee296bb3064','<iframe title=\"Unearned Revenue Demonstration\" src=\"https://player.vimeo.com/video/660302973?h=1564098fe3&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(44251,3994,'_oembed_time_c1a2a28212ca4aa1d6f36ee296bb3064','1640577264'),
(44252,3994,'_wp_old_slug','choice-club-video'),
(44258,3994,'_oembed_57d62104796c6e6e20e13ab34a15e4b9','<iframe title=\"Sales and Other Tax Demonstration\" src=\"https://player.vimeo.com/video/661378889?h=9cdf2962ba&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(44259,3994,'_oembed_time_57d62104796c6e6e20e13ab34a15e4b9','1640978222'),
(44261,3997,'_edit_lock','1660458914:2'),
(44262,3997,'_edit_last','2'),
(44266,3997,'_oembed_59e4540372b908241ba12a23eff01178','{{unknown}}'),
(44267,3997,'_yoast_wpseo_primary_category',''),
(44268,3997,'ninzio_post_audio_mp3',''),
(44269,3997,'ninzio_post_audio_ogg',''),
(44270,3997,'ninzio_post_audio_embed',''),
(44271,3997,'ninzio_post_video_mp4',''),
(44272,3997,'ninzio_post_video_ogv',''),
(44273,3997,'ninzio_post_video_webm',''),
(44274,3997,'ninzio_post_video_embed',''),
(44275,3997,'ninzio_post_video_poster',''),
(44276,3997,'ninzio_post_link_url',''),
(44277,3997,'ninzio_post_image_url',''),
(44278,3997,'ninzio_post_image_description',''),
(44279,3997,'ninzio_post_status_author',''),
(44280,3997,'ninzio_post_quote_author',''),
(44281,3997,'ninzio_post_featured_media','yes'),
(44282,3997,'_yoast_wpseo_content_score','60'),
(44287,4001,'wprss_item_date','2021-12-31T19:35:05+0000'),
(44288,4001,'wprss_item_permalink','https://activeclubsolutions.net/resizing-of-images/'),
(44289,4001,'wprss_item_enclosure',''),
(44290,4001,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44291,4001,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44292,4001,'wprss_item_author','Active Club Solutions'),
(44293,4001,'wprss_item_author_email',NULL),
(44294,4001,'wprss_item_author_link',NULL),
(44295,4001,'wprss_feed_id','1713'),
(44296,4001,'wprss_images','a:0:{}'),
(44297,4001,'wprss_best_image',''),
(44298,4002,'wprss_item_date','2021-12-31T19:17:02+0000'),
(44299,4002,'wprss_item_permalink','https://activeclubsolutions.net/quickbooks-sales-and-other-taxes/'),
(44300,4002,'wprss_item_enclosure',''),
(44301,4002,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44302,4002,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44303,4002,'wprss_item_author','Active Club Solutions'),
(44304,4002,'wprss_item_author_email',NULL),
(44305,4002,'wprss_item_author_link',NULL),
(44306,4002,'wprss_feed_id','1713'),
(44307,4002,'wprss_images','a:0:{}'),
(44308,4002,'wprss_best_image',''),
(44316,4005,'_edit_lock','1660458788:2'),
(44317,4005,'_edit_last','2'),
(44320,4005,'_yoast_wpseo_primary_category',''),
(44321,4005,'ninzio_post_audio_mp3',''),
(44322,4005,'ninzio_post_audio_ogg',''),
(44323,4005,'ninzio_post_audio_embed',''),
(44324,4005,'ninzio_post_video_mp4',''),
(44325,4005,'ninzio_post_video_ogv',''),
(44326,4005,'ninzio_post_video_webm',''),
(44327,4005,'ninzio_post_video_embed',''),
(44328,4005,'ninzio_post_video_poster',''),
(44329,4005,'ninzio_post_link_url',''),
(44330,4005,'ninzio_post_image_url',''),
(44331,4005,'ninzio_post_image_description',''),
(44332,4005,'ninzio_post_status_author',''),
(44333,4005,'ninzio_post_quote_author',''),
(44334,4005,'ninzio_post_featured_media','yes'),
(44335,4005,'_yoast_wpseo_content_score','90'),
(44338,4007,'wprss_item_date','2021-12-31T21:39:00+0000'),
(44339,4007,'wprss_item_permalink','https://activeclubsolutions.net/4005-2/'),
(44340,4007,'wprss_item_enclosure',''),
(44341,4007,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44342,4007,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44343,4007,'wprss_item_author','Active Club Solutions'),
(44344,4007,'wprss_item_author_email',NULL),
(44345,4007,'wprss_item_author_link',NULL),
(44346,4007,'wprss_feed_id','1713'),
(44347,4007,'wprss_images','a:0:{}'),
(44348,4007,'wprss_best_image',''),
(44359,4015,'_edit_lock','1660534127:2'),
(44360,4015,'_edit_last','2'),
(44362,4015,'_yoast_wpseo_primary_category',''),
(44363,4015,'ninzio_post_audio_mp3',''),
(44364,4015,'ninzio_post_audio_ogg',''),
(44365,4015,'ninzio_post_audio_embed',''),
(44366,4015,'ninzio_post_video_mp4',''),
(44367,4015,'ninzio_post_video_ogv',''),
(44368,4015,'ninzio_post_video_webm',''),
(44369,4015,'ninzio_post_video_embed',''),
(44370,4015,'ninzio_post_video_poster',''),
(44371,4015,'ninzio_post_link_url',''),
(44372,4015,'ninzio_post_image_url',''),
(44373,4015,'ninzio_post_image_description',''),
(44374,4015,'ninzio_post_status_author',''),
(44375,4015,'ninzio_post_quote_author',''),
(44376,4015,'ninzio_post_featured_media','yes'),
(44377,4015,'_yoast_wpseo_content_score','30'),
(44392,4017,'wprss_item_date','2022-01-04T23:15:11+0000'),
(44393,4017,'wprss_item_permalink','https://activeclubsolutions.net/shopping-cart-updates/'),
(44394,4017,'wprss_item_enclosure',''),
(44395,4017,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44396,4017,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44397,4017,'wprss_item_author','Active Club Solutions'),
(44398,4017,'wprss_item_author_email',NULL),
(44399,4017,'wprss_item_author_link',NULL),
(44400,4017,'wprss_feed_id','1713'),
(44401,4017,'wprss_images','a:0:{}'),
(44402,4017,'wprss_best_image',''),
(44403,4019,'_edit_lock','1660458762:2'),
(44404,4019,'_edit_last','2'),
(44406,4019,'_yoast_wpseo_primary_category',''),
(44407,4019,'ninzio_post_audio_mp3',''),
(44408,4019,'ninzio_post_audio_ogg',''),
(44409,4019,'ninzio_post_audio_embed',''),
(44410,4019,'ninzio_post_video_mp4',''),
(44411,4019,'ninzio_post_video_ogv',''),
(44412,4019,'ninzio_post_video_webm',''),
(44413,4019,'ninzio_post_video_embed',''),
(44414,4019,'ninzio_post_video_poster',''),
(44415,4019,'ninzio_post_link_url',''),
(44416,4019,'ninzio_post_image_url',''),
(44417,4019,'ninzio_post_image_description',''),
(44418,4019,'ninzio_post_status_author',''),
(44419,4019,'ninzio_post_quote_author',''),
(44420,4019,'ninzio_post_featured_media','yes'),
(44421,4019,'_yoast_wpseo_content_score','60'),
(44426,4021,'wprss_item_date','2022-01-24T04:48:49+0000'),
(44427,4021,'wprss_item_permalink','https://activeclubsolutions.net/cropping-images/'),
(44428,4021,'wprss_item_enclosure',''),
(44429,4021,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44430,4021,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44431,4021,'wprss_item_author','Active Club Solutions'),
(44432,4021,'wprss_item_author_email',NULL),
(44433,4021,'wprss_item_author_link',NULL),
(44434,4021,'wprss_feed_id','1713'),
(44435,4021,'wprss_images','a:0:{}'),
(44436,4021,'wprss_best_image',''),
(44437,2122,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44438,2194,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44439,2407,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44440,2424,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44441,2066,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44442,4029,'_edit_lock','1660534135:2'),
(44443,4029,'_edit_last','2'),
(44445,4029,'_yoast_wpseo_primary_category',''),
(44446,4029,'ninzio_post_audio_mp3',''),
(44447,4029,'ninzio_post_audio_ogg',''),
(44448,4029,'ninzio_post_audio_embed',''),
(44449,4029,'ninzio_post_video_mp4',''),
(44450,4029,'ninzio_post_video_ogv',''),
(44451,4029,'ninzio_post_video_webm',''),
(44452,4029,'ninzio_post_video_embed',''),
(44453,4029,'ninzio_post_video_poster',''),
(44454,4029,'ninzio_post_link_url',''),
(44455,4029,'ninzio_post_image_url',''),
(44456,4029,'ninzio_post_image_description',''),
(44457,4029,'ninzio_post_status_author',''),
(44458,4029,'ninzio_post_quote_author',''),
(44459,4029,'ninzio_post_featured_media','yes'),
(44460,4029,'_yoast_wpseo_content_score','90'),
(44475,4030,'wprss_item_date','2022-03-30T19:42:01+0000'),
(44476,4030,'wprss_item_permalink','https://activeclubsolutions.net/club-setup/'),
(44477,4030,'wprss_item_enclosure',''),
(44478,4030,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44479,4030,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44480,4030,'wprss_item_author','Active Club Solutions'),
(44481,4030,'wprss_item_author_email',NULL),
(44482,4030,'wprss_item_author_link',NULL),
(44483,4030,'wprss_feed_id','1713'),
(44484,4030,'wprss_images','a:0:{}'),
(44485,4030,'wprss_best_image',''),
(44489,3902,'_wp_old_date','2021-07-24'),
(44529,4034,'wprss_item_date','2022-03-31T04:07:04+0000'),
(44530,4034,'wprss_item_permalink','https://activeclubsolutions.net/club-setup-2/'),
(44531,4034,'wprss_item_enclosure',''),
(44532,4034,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44533,4034,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44534,4034,'wprss_item_author','Active Club Solutions'),
(44535,4034,'wprss_item_author_email',NULL),
(44536,4034,'wprss_item_author_link',NULL),
(44537,4034,'wprss_feed_id','1713'),
(44538,4034,'wprss_images','a:0:{}'),
(44539,4034,'wprss_best_image',''),
(44540,4037,'_edit_lock','1681096486:2'),
(44541,4037,'_edit_last','2'),
(44543,4037,'_yoast_wpseo_primary_category',''),
(44544,4037,'ninzio_post_audio_mp3',''),
(44545,4037,'ninzio_post_audio_ogg',''),
(44546,4037,'ninzio_post_audio_embed',''),
(44547,4037,'ninzio_post_video_mp4',''),
(44548,4037,'ninzio_post_video_ogv',''),
(44549,4037,'ninzio_post_video_webm',''),
(44550,4037,'ninzio_post_video_embed',''),
(44551,4037,'ninzio_post_video_poster',''),
(44552,4037,'ninzio_post_link_url',''),
(44553,4037,'ninzio_post_image_url',''),
(44554,4037,'ninzio_post_image_description',''),
(44555,4037,'ninzio_post_status_author',''),
(44556,4037,'ninzio_post_quote_author',''),
(44557,4037,'ninzio_post_featured_media','yes'),
(44558,4037,'_yoast_wpseo_content_score','30'),
(44573,4037,'_wp_old_date','2022-04-01'),
(44575,4015,'_wp_old_date','2022-01-04'),
(44577,4039,'wprss_item_date','2022-03-31T16:34:18+0000'),
(44578,4039,'wprss_item_permalink','https://activeclubsolutions.net/ecomm-products-major-upgrade/'),
(44579,4039,'wprss_item_enclosure',''),
(44580,4039,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44581,4039,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44582,4039,'wprss_item_author','Active Club Solutions'),
(44583,4039,'wprss_item_author_email',NULL),
(44584,4039,'wprss_item_author_link',NULL),
(44585,4039,'wprss_feed_id','1713'),
(44586,4039,'wprss_images','a:0:{}'),
(44587,4039,'wprss_best_image',''),
(44588,3024,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44589,3756,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44590,3056,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44591,3199,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44592,3736,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44593,2485,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44596,2450,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44597,4043,'_edit_lock','1680781157:6'),
(44598,4043,'_edit_last','6'),
(44599,4043,'_yoast_wpseo_primary_category',''),
(44600,4043,'ninzio_post_audio_mp3',''),
(44601,4043,'ninzio_post_audio_ogg',''),
(44602,4043,'ninzio_post_audio_embed',''),
(44603,4043,'ninzio_post_video_mp4',''),
(44604,4043,'ninzio_post_video_ogv',''),
(44605,4043,'ninzio_post_video_webm',''),
(44606,4043,'ninzio_post_video_embed',''),
(44607,4043,'ninzio_post_video_poster',''),
(44608,4043,'ninzio_post_link_url',''),
(44609,4043,'ninzio_post_image_url',''),
(44610,4043,'ninzio_post_image_description',''),
(44611,4043,'ninzio_post_status_author',''),
(44612,4043,'ninzio_post_quote_author',''),
(44613,4043,'ninzio_post_featured_media','yes'),
(44614,4043,'_yoast_wpseo_content_score','60'),
(44615,4043,'_wpas_done_all','1'),
(44616,4043,'_wp_old_date','2021-07-24'),
(44629,4043,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44632,4045,'wprss_item_date','2022-04-24T04:53:04+0000'),
(44633,4045,'wprss_item_permalink','https://activeclubsolutions.net/email-layouts/'),
(44634,4045,'wprss_item_enclosure',''),
(44635,4045,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44636,4045,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44637,4045,'wprss_item_author','Active Club Solutions'),
(44638,4045,'wprss_item_author_email',NULL),
(44639,4045,'wprss_item_author_link',NULL),
(44640,4045,'wprss_feed_id','1713'),
(44641,4045,'wprss_images','a:0:{}'),
(44642,4045,'wprss_best_image',''),
(44645,4050,'_edit_lock','1674505832:6'),
(44646,4050,'_edit_last','6'),
(44648,4050,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44649,4050,'_yoast_wpseo_primary_category',''),
(44650,4050,'ninzio_post_audio_mp3',''),
(44651,4050,'ninzio_post_audio_ogg',''),
(44652,4050,'ninzio_post_audio_embed',''),
(44653,4050,'ninzio_post_video_mp4',''),
(44654,4050,'ninzio_post_video_ogv',''),
(44655,4050,'ninzio_post_video_webm',''),
(44656,4050,'ninzio_post_video_embed',''),
(44657,4050,'ninzio_post_video_poster',''),
(44658,4050,'ninzio_post_link_url',''),
(44659,4050,'ninzio_post_image_url',''),
(44660,4050,'ninzio_post_image_description',''),
(44661,4050,'ninzio_post_status_author',''),
(44662,4050,'ninzio_post_quote_author',''),
(44663,4050,'ninzio_post_featured_media','yes'),
(44664,4050,'_yoast_wpseo_content_score','60'),
(44665,4052,'wprss_item_date','2022-06-01T23:18:15+0000'),
(44666,4052,'wprss_item_permalink','https://activeclubsolutions.net/introduction-to-activ8-cloud/'),
(44667,4052,'wprss_item_enclosure',''),
(44668,4052,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44669,4052,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44670,4052,'wprss_item_author','Active Club Solutions'),
(44671,4052,'wprss_item_author_email',NULL),
(44672,4052,'wprss_item_author_link',NULL),
(44673,4052,'wprss_feed_id','1713'),
(44674,4052,'wprss_images','a:0:{}'),
(44675,4052,'wprss_best_image',''),
(44699,4058,'_edit_lock','1687808311:21'),
(44700,4058,'_edit_last','2'),
(44703,4058,'_yoast_wpseo_primary_category',''),
(44704,4058,'ninzio_post_audio_mp3',''),
(44705,4058,'ninzio_post_audio_ogg',''),
(44706,4058,'ninzio_post_audio_embed',''),
(44707,4058,'ninzio_post_video_mp4',''),
(44708,4058,'ninzio_post_video_ogv',''),
(44709,4058,'ninzio_post_video_webm',''),
(44710,4058,'ninzio_post_video_embed',''),
(44711,4058,'ninzio_post_video_poster',''),
(44712,4058,'ninzio_post_link_url',''),
(44713,4058,'ninzio_post_image_url',''),
(44714,4058,'ninzio_post_image_description',''),
(44715,4058,'ninzio_post_status_author',''),
(44716,4058,'ninzio_post_quote_author',''),
(44717,4058,'ninzio_post_featured_media','yes'),
(44718,4058,'_yoast_wpseo_content_score','60'),
(44720,4060,'wprss_item_date','2022-08-09T03:36:50+0000'),
(44721,4060,'wprss_item_permalink','https://activeclubsolutions.net/version-2022-8-177-released/'),
(44722,4060,'wprss_item_enclosure',''),
(44723,4060,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44724,4060,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44725,4060,'wprss_item_author','Active Club Solutions'),
(44726,4060,'wprss_item_author_email',NULL),
(44727,4060,'wprss_item_author_link',NULL),
(44728,4060,'wprss_feed_id','1713'),
(44729,4060,'wprss_images','a:0:{}'),
(44730,4060,'wprss_best_image',''),
(44731,4061,'wprss_item_date','2022-08-09T03:29:20+0000'),
(44732,4061,'wprss_item_permalink','https://activeclubsolutions.net/club-statistics/'),
(44733,4061,'wprss_item_enclosure',''),
(44734,4061,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44735,4061,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44736,4061,'wprss_item_author','Active Club Solutions'),
(44737,4061,'wprss_item_author_email',NULL),
(44738,4061,'wprss_item_author_link',NULL),
(44739,4061,'wprss_feed_id','1713'),
(44740,4061,'wprss_images','a:0:{}'),
(44741,4061,'wprss_best_image',''),
(44750,4037,'_wp_old_date','2022-04-09'),
(44751,4029,'_encloseme','1'),
(44752,4029,'_wp_old_date','2022-03-30'),
(44780,4074,'wprss_item_date','2022-09-13T19:53:08+0000'),
(44781,4074,'wprss_item_permalink','https://activeclubsolutions.net/activ8-pos-release-2022-9-177/'),
(44782,4074,'wprss_item_enclosure',''),
(44783,4074,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44784,4074,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44785,4074,'wprss_item_author','Active Club Solutions'),
(44786,4074,'wprss_item_author_email',NULL),
(44787,4074,'wprss_item_author_link',NULL),
(44788,4074,'wprss_feed_id','1713'),
(44789,4074,'wprss_images','a:0:{}'),
(44790,4074,'wprss_best_image',''),
(44813,4080,'_edit_lock','1684443071:21'),
(44814,4080,'_edit_last','6'),
(44816,4080,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44817,4080,'_yoast_wpseo_primary_category',''),
(44818,4080,'ninzio_post_audio_mp3',''),
(44819,4080,'ninzio_post_audio_ogg',''),
(44820,4080,'ninzio_post_audio_embed',''),
(44821,4080,'ninzio_post_video_mp4',''),
(44822,4080,'ninzio_post_video_ogv',''),
(44823,4080,'ninzio_post_video_webm',''),
(44824,4080,'ninzio_post_video_embed',''),
(44825,4080,'ninzio_post_video_poster',''),
(44826,4080,'ninzio_post_link_url',''),
(44827,4080,'ninzio_post_image_url',''),
(44828,4080,'ninzio_post_image_description',''),
(44829,4080,'ninzio_post_status_author',''),
(44830,4080,'ninzio_post_quote_author',''),
(44831,4080,'ninzio_post_featured_media','yes'),
(44832,4080,'_yoast_wpseo_content_score','60'),
(44833,4083,'wprss_item_date','2022-10-29T05:44:34+0000'),
(44834,4083,'wprss_item_permalink','https://activeclubsolutions.net/coming-soon-to-activ8-cloud-allocations/'),
(44835,4083,'wprss_item_enclosure',''),
(44836,4083,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44837,4083,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44838,4083,'wprss_item_author','Active Club Solutions'),
(44839,4083,'wprss_item_author_email',NULL),
(44840,4083,'wprss_item_author_link',NULL),
(44841,4083,'wprss_feed_id','1713'),
(44842,4083,'wprss_images','a:0:{}'),
(44843,4083,'wprss_best_image',''),
(44844,4084,'wprss_item_date','2022-10-29T05:22:44+0000'),
(44845,4084,'wprss_item_permalink','https://activeclubsolutions.net/coming-soon-in-activ8-cloud-product-movement/'),
(44846,4084,'wprss_item_enclosure',''),
(44847,4084,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44848,4084,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44849,4084,'wprss_item_author','Active Club Solutions'),
(44850,4084,'wprss_item_author_email',NULL),
(44851,4084,'wprss_item_author_link',NULL),
(44852,4084,'wprss_feed_id','1713'),
(44853,4084,'wprss_images','a:0:{}'),
(44854,4084,'wprss_best_image',''),
(44894,4091,'wprss_item_date','2022-11-04T04:48:54+0000'),
(44895,4091,'wprss_item_permalink','https://activeclubsolutions.net/coming-soon-activ8-cloud-easy-label-only-order/'),
(44896,4091,'wprss_item_enclosure',''),
(44897,4091,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44898,4091,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44899,4091,'wprss_item_author','Active Club Solutions'),
(44900,4091,'wprss_item_author_email',NULL),
(44901,4091,'wprss_item_author_link',NULL),
(44902,4091,'wprss_feed_id','1713'),
(44903,4091,'wprss_images','a:0:{}'),
(44904,4091,'wprss_best_image',''),
(44907,4094,'_edit_lock','1684943786:21'),
(44908,4094,'_edit_last','2'),
(44910,4094,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(44911,4094,'_yoast_wpseo_primary_category',''),
(44912,4094,'ninzio_post_audio_mp3',''),
(44913,4094,'ninzio_post_audio_ogg',''),
(44914,4094,'ninzio_post_audio_embed',''),
(44915,4094,'ninzio_post_video_mp4',''),
(44916,4094,'ninzio_post_video_ogv',''),
(44917,4094,'ninzio_post_video_webm',''),
(44918,4094,'ninzio_post_video_embed',''),
(44919,4094,'ninzio_post_video_poster',''),
(44920,4094,'ninzio_post_link_url',''),
(44921,4094,'ninzio_post_image_url',''),
(44922,4094,'ninzio_post_image_description',''),
(44923,4094,'ninzio_post_status_author',''),
(44924,4094,'ninzio_post_quote_author',''),
(44925,4094,'ninzio_post_featured_media','yes'),
(44926,4094,'_yoast_wpseo_content_score','60'),
(44952,4098,'wprss_item_date','2022-11-07T06:34:33+0000'),
(44953,4098,'wprss_item_permalink','https://activeclubsolutions.net/activ8-cloud-verson/'),
(44954,4098,'wprss_item_enclosure',''),
(44955,4098,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44956,4098,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44957,4098,'wprss_item_author','Active Club Solutions'),
(44958,4098,'wprss_item_author_email',NULL),
(44959,4098,'wprss_item_author_link',NULL),
(44960,4098,'wprss_feed_id','1713'),
(44961,4098,'wprss_images','a:0:{}'),
(44962,4098,'wprss_best_image',''),
(44963,4099,'wprss_item_date','2022-11-07T06:29:22+0000'),
(44964,4099,'wprss_item_permalink','https://activeclubsolutions.net/activ8-cloud-new-customer-sales-analysis-tools/'),
(44965,4099,'wprss_item_enclosure',''),
(44966,4099,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(44967,4099,'wprss_item_source_url','https://activeclubsolutions.net/'),
(44968,4099,'wprss_item_author','Active Club Solutions'),
(44969,4099,'wprss_item_author_email',NULL),
(44970,4099,'wprss_item_author_link',NULL),
(44971,4099,'wprss_feed_id','1713'),
(44972,4099,'wprss_images','a:0:{}'),
(44973,4099,'wprss_best_image',''),
(44975,4108,'_edit_lock','1684944200:21'),
(44976,4108,'_edit_last','2'),
(44977,4108,'_yoast_wpseo_primary_category',''),
(44978,4108,'ninzio_post_audio_mp3',''),
(44979,4108,'ninzio_post_audio_ogg',''),
(44980,4108,'ninzio_post_audio_embed',''),
(44981,4108,'ninzio_post_video_mp4',''),
(44982,4108,'ninzio_post_video_ogv',''),
(44983,4108,'ninzio_post_video_webm',''),
(44984,4108,'ninzio_post_video_embed',''),
(44985,4108,'ninzio_post_video_poster',''),
(44986,4108,'ninzio_post_link_url',''),
(44987,4108,'ninzio_post_image_url',''),
(44988,4108,'ninzio_post_image_description',''),
(44989,4108,'ninzio_post_status_author',''),
(44990,4108,'ninzio_post_quote_author',''),
(44991,4108,'ninzio_post_featured_media','yes'),
(44992,4108,'_yoast_wpseo_content_score','60'),
(45008,4058,'_wp_old_date','2026-08-08'),
(45009,4110,'wprss_item_date','2023-03-16T03:36:50+0000'),
(45010,4110,'wprss_item_permalink','https://activeclubsolutions.net/version-2023-3-201-released/'),
(45011,4110,'wprss_item_enclosure',''),
(45012,4110,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45013,4110,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45014,4110,'wprss_item_author','Active Club Solutions'),
(45015,4110,'wprss_item_author_email',NULL),
(45016,4110,'wprss_item_author_link',NULL),
(45017,4110,'wprss_feed_id','1713'),
(45018,4110,'wprss_images','a:0:{}'),
(45019,4110,'wprss_best_image',''),
(45021,4058,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45022,4111,'_edit_lock','1684943858:21'),
(45023,4111,'_edit_last','2'),
(45024,4111,'_yoast_wpseo_primary_category',''),
(45025,4111,'ninzio_post_audio_mp3',''),
(45026,4111,'ninzio_post_audio_ogg',''),
(45027,4111,'ninzio_post_audio_embed',''),
(45028,4111,'ninzio_post_video_mp4',''),
(45029,4111,'ninzio_post_video_ogv',''),
(45030,4111,'ninzio_post_video_webm',''),
(45031,4111,'ninzio_post_video_embed',''),
(45032,4111,'ninzio_post_video_poster',''),
(45033,4111,'ninzio_post_link_url',''),
(45034,4111,'ninzio_post_image_url',''),
(45035,4111,'ninzio_post_image_description',''),
(45036,4111,'ninzio_post_status_author',''),
(45037,4111,'ninzio_post_quote_author',''),
(45038,4111,'ninzio_post_featured_media','yes'),
(45039,4111,'_yoast_wpseo_content_score','90'),
(45040,4111,'_wp_old_date','2026-08-08'),
(45057,4111,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45058,4111,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45059,4112,'wprss_item_date','2023-03-20T04:00:38+0000'),
(45060,4112,'wprss_item_permalink','https://activeclubsolutions.net/activ8cloud-version-2023-3-222-released/'),
(45061,4112,'wprss_item_enclosure',''),
(45062,4112,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45063,4112,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45064,4112,'wprss_item_author','Active Club Solutions'),
(45065,4112,'wprss_item_author_email',NULL),
(45066,4112,'wprss_item_author_link',NULL),
(45067,4112,'wprss_feed_id','1713'),
(45068,4112,'wprss_images','a:0:{}'),
(45069,4112,'wprss_best_image',''),
(45071,4058,'_wp_old_slug','version-2023-3-201-released'),
(45073,4113,'wprss_item_date','2023-03-16T03:36:50+0000'),
(45074,4113,'wprss_item_permalink','https://activeclubsolutions.net/version-2023-3-221-released/'),
(45075,4113,'wprss_item_enclosure',''),
(45076,4113,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45077,4113,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45078,4113,'wprss_item_author','Active Club Solutions'),
(45079,4113,'wprss_item_author_email',NULL),
(45080,4113,'wprss_item_author_link',NULL),
(45081,4113,'wprss_feed_id','1713'),
(45082,4113,'wprss_images','a:0:{}'),
(45083,4113,'wprss_best_image',''),
(45084,4114,'_edit_lock','1687808272:21'),
(45085,4114,'_edit_last','2'),
(45086,4114,'_yoast_wpseo_primary_category',''),
(45087,4114,'ninzio_post_audio_mp3',''),
(45088,4114,'ninzio_post_audio_ogg',''),
(45089,4114,'ninzio_post_audio_embed',''),
(45090,4114,'ninzio_post_video_mp4',''),
(45091,4114,'ninzio_post_video_ogv',''),
(45092,4114,'ninzio_post_video_webm',''),
(45093,4114,'ninzio_post_video_embed',''),
(45094,4114,'ninzio_post_video_poster',''),
(45095,4114,'ninzio_post_link_url',''),
(45096,4114,'ninzio_post_image_url',''),
(45097,4114,'ninzio_post_image_description',''),
(45098,4114,'ninzio_post_status_author',''),
(45099,4114,'ninzio_post_quote_author',''),
(45100,4114,'ninzio_post_featured_media','yes'),
(45101,4114,'_yoast_wpseo_content_score','60'),
(45102,4114,'_wp_old_date','2026-08-08'),
(45103,4114,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45104,4114,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45116,4114,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45119,4115,'wprss_item_date','2023-03-21T05:23:26+0000'),
(45120,4115,'wprss_item_permalink','https://activeclubsolutions.net/activ8cloud-version-2023-3-223-released/'),
(45121,4115,'wprss_item_enclosure',''),
(45122,4115,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45123,4115,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45124,4115,'wprss_item_author','Active Club Solutions'),
(45125,4115,'wprss_item_author_email',NULL),
(45126,4115,'wprss_item_author_link',NULL),
(45127,4115,'wprss_feed_id','1713'),
(45128,4115,'wprss_images','a:0:{}'),
(45129,4115,'wprss_best_image',''),
(45133,4121,'_edit_lock','1680178720:6'),
(45134,4121,'_edit_last','6'),
(45135,4121,'_yoast_wpseo_primary_category',''),
(45136,4121,'ninzio_post_audio_mp3',''),
(45137,4121,'ninzio_post_audio_ogg',''),
(45138,4121,'ninzio_post_audio_embed',''),
(45139,4121,'ninzio_post_video_mp4',''),
(45140,4121,'ninzio_post_video_ogv',''),
(45141,4121,'ninzio_post_video_webm',''),
(45142,4121,'ninzio_post_video_embed',''),
(45143,4121,'ninzio_post_video_poster',''),
(45144,4121,'ninzio_post_link_url',''),
(45145,4121,'ninzio_post_image_url',''),
(45146,4121,'ninzio_post_image_description',''),
(45147,4121,'ninzio_post_status_author',''),
(45148,4121,'ninzio_post_quote_author',''),
(45149,4121,'ninzio_post_featured_media','yes'),
(45150,4121,'_yoast_wpseo_content_score','60'),
(45151,4121,'_wp_old_date','2026-08-08'),
(45152,4121,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45153,4121,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45154,4121,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45177,4123,'_edit_lock','1681096528:2'),
(45178,4123,'_edit_last','2'),
(45179,4123,'_yoast_wpseo_primary_category',''),
(45180,4123,'ninzio_post_audio_mp3',''),
(45181,4123,'ninzio_post_audio_ogg',''),
(45182,4123,'ninzio_post_audio_embed',''),
(45183,4123,'ninzio_post_video_mp4',''),
(45184,4123,'ninzio_post_video_ogv',''),
(45185,4123,'ninzio_post_video_webm',''),
(45186,4123,'ninzio_post_video_embed',''),
(45187,4123,'ninzio_post_video_poster',''),
(45188,4123,'ninzio_post_link_url',''),
(45189,4123,'ninzio_post_image_url',''),
(45190,4123,'ninzio_post_image_description',''),
(45191,4123,'ninzio_post_status_author',''),
(45192,4123,'ninzio_post_quote_author',''),
(45193,4123,'ninzio_post_featured_media','yes'),
(45194,4123,'_yoast_wpseo_content_score','90'),
(45195,4123,'_wp_old_date','2026-08-08'),
(45196,4123,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45197,4123,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45198,4123,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45208,4124,'wprss_item_date','2023-03-29T19:29:32+0000'),
(45209,4124,'wprss_item_permalink','https://activeclubsolutions.net/activ8cloud-version-2023-3-226-released-scheduled-emails/'),
(45210,4124,'wprss_item_enclosure',''),
(45211,4124,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45212,4124,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45213,4124,'wprss_item_author','Active Club Solutions'),
(45214,4124,'wprss_item_author_email',NULL),
(45215,4124,'wprss_item_author_link',NULL),
(45216,4124,'wprss_feed_id','1713'),
(45217,4124,'wprss_images','a:0:{}'),
(45218,4124,'wprss_best_image',''),
(45225,4128,'wprss_item_date','2023-03-29T20:20:18+0000'),
(45226,4128,'wprss_item_permalink','https://activeclubsolutions.net/activ8cloud-version-2023-3-226-shipping/'),
(45227,4128,'wprss_item_enclosure',''),
(45228,4128,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45229,4128,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45230,4128,'wprss_item_author','Active Club Solutions'),
(45231,4128,'wprss_item_author_email',NULL),
(45232,4128,'wprss_item_author_link',NULL),
(45233,4128,'wprss_feed_id','1713'),
(45234,4128,'wprss_images','a:0:{}'),
(45235,4128,'wprss_best_image',''),
(45236,4129,'_edit_lock','1684945078:21'),
(45237,4129,'_edit_last','6'),
(45238,4129,'_yoast_wpseo_primary_category',''),
(45239,4129,'ninzio_post_audio_mp3',''),
(45240,4129,'ninzio_post_audio_ogg',''),
(45241,4129,'ninzio_post_audio_embed',''),
(45242,4129,'ninzio_post_video_mp4',''),
(45243,4129,'ninzio_post_video_ogv',''),
(45244,4129,'ninzio_post_video_webm',''),
(45245,4129,'ninzio_post_video_embed',''),
(45246,4129,'ninzio_post_video_poster',''),
(45247,4129,'ninzio_post_link_url',''),
(45248,4129,'ninzio_post_image_url',''),
(45249,4129,'ninzio_post_image_description',''),
(45250,4129,'ninzio_post_status_author',''),
(45251,4129,'ninzio_post_quote_author',''),
(45252,4129,'ninzio_post_featured_media','yes'),
(45253,4129,'_yoast_wpseo_content_score','60'),
(45254,4129,'_wp_old_date','2026-08-08'),
(45255,4129,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45256,4129,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45257,4129,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45270,4131,'wprss_item_date','2023-03-30T04:00:04+0000'),
(45271,4131,'wprss_item_permalink','https://activeclubsolutions.net/activ8cloud-version-2023-3-226-scheduled-texts/'),
(45272,4131,'wprss_item_enclosure',''),
(45273,4131,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45274,4131,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45275,4131,'wprss_item_author','Active Club Solutions'),
(45276,4131,'wprss_item_author_email',NULL),
(45277,4131,'wprss_item_author_link',NULL),
(45278,4131,'wprss_feed_id','1713'),
(45279,4131,'wprss_images','a:0:{}'),
(45280,4131,'wprss_best_image',''),
(45290,4140,'_edit_lock','1685370945:21'),
(45291,4140,'_edit_last','21'),
(45292,4140,'_yoast_wpseo_primary_category',''),
(45293,4140,'ninzio_post_audio_mp3',''),
(45294,4140,'ninzio_post_audio_ogg',''),
(45295,4140,'ninzio_post_audio_embed',''),
(45296,4140,'ninzio_post_video_mp4',''),
(45297,4140,'ninzio_post_video_ogv',''),
(45298,4140,'ninzio_post_video_webm',''),
(45299,4140,'ninzio_post_video_embed',''),
(45300,4140,'ninzio_post_video_poster',''),
(45301,4140,'ninzio_post_link_url',''),
(45302,4140,'ninzio_post_image_url',''),
(45303,4140,'ninzio_post_image_description',''),
(45304,4140,'ninzio_post_status_author',''),
(45305,4140,'ninzio_post_quote_author',''),
(45306,4140,'ninzio_post_featured_media','yes'),
(45307,4140,'_yoast_wpseo_content_score','90'),
(45308,4140,'_wp_old_date','2026-08-08'),
(45309,4140,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45311,4140,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45321,4140,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45323,4142,'_edit_lock','1685370973:21'),
(45324,4142,'_edit_last','21'),
(45325,4142,'_yoast_wpseo_primary_category',''),
(45326,4142,'ninzio_post_audio_mp3',''),
(45327,4142,'ninzio_post_audio_ogg',''),
(45328,4142,'ninzio_post_audio_embed',''),
(45329,4142,'ninzio_post_video_mp4',''),
(45330,4142,'ninzio_post_video_ogv',''),
(45331,4142,'ninzio_post_video_webm',''),
(45332,4142,'ninzio_post_video_embed',''),
(45333,4142,'ninzio_post_video_poster',''),
(45334,4142,'ninzio_post_link_url',''),
(45335,4142,'ninzio_post_image_url',''),
(45336,4142,'ninzio_post_image_description',''),
(45337,4142,'ninzio_post_status_author',''),
(45338,4142,'ninzio_post_quote_author',''),
(45339,4142,'ninzio_post_featured_media','yes'),
(45340,4142,'_yoast_wpseo_content_score','60'),
(45341,4142,'_wp_old_date','2026-08-08'),
(45342,4142,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45343,4142,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45344,4142,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45356,4143,'wprss_item_date','2023-05-24T21:29:16+0000'),
(45357,4143,'wprss_item_permalink','https://activeclubsolutions.net/activ8-pos-version-2023-4-179-new-release-notes/'),
(45358,4143,'wprss_item_enclosure',''),
(45359,4143,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45360,4143,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45361,4143,'wprss_item_author','Helene Champ'),
(45362,4143,'wprss_item_author_email',NULL),
(45363,4143,'wprss_item_author_link',NULL),
(45364,4143,'wprss_feed_id','1713'),
(45365,4143,'wprss_images','a:0:{}'),
(45366,4143,'wprss_best_image',''),
(45367,4144,'wprss_item_date','2023-04-12T16:52:03+0000'),
(45368,4144,'wprss_item_permalink','https://activeclubsolutions.net/activ8-pos-version-2023-4-179-wireless-payment-devices/'),
(45369,4144,'wprss_item_enclosure',''),
(45370,4144,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45371,4144,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45372,4144,'wprss_item_author','Active Club Solutions'),
(45373,4144,'wprss_item_author_email',NULL),
(45374,4144,'wprss_item_author_link',NULL),
(45375,4144,'wprss_feed_id','1713'),
(45376,4144,'wprss_images','a:0:{}'),
(45377,4144,'wprss_best_image',''),
(45378,4147,'_edit_lock','1687879868:21'),
(45379,4147,'_edit_last','21'),
(45380,4147,'_yoast_wpseo_primary_category',''),
(45381,4147,'ninzio_post_audio_mp3',''),
(45382,4147,'ninzio_post_audio_ogg',''),
(45383,4147,'ninzio_post_audio_embed',''),
(45384,4147,'ninzio_post_video_mp4',''),
(45385,4147,'ninzio_post_video_ogv',''),
(45386,4147,'ninzio_post_video_webm',''),
(45387,4147,'ninzio_post_video_embed',''),
(45388,4147,'ninzio_post_video_poster',''),
(45389,4147,'ninzio_post_link_url',''),
(45390,4147,'ninzio_post_image_url',''),
(45391,4147,'ninzio_post_image_description',''),
(45392,4147,'ninzio_post_status_author',''),
(45393,4147,'ninzio_post_quote_author',''),
(45394,4147,'ninzio_post_featured_media','yes'),
(45395,4147,'_yoast_wpseo_content_score','30'),
(45396,4147,'_wp_old_date','2026-08-08'),
(45397,4147,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45398,4147,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45410,4147,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45413,4148,'wprss_item_date','2023-06-26T20:04:21+0000'),
(45414,4148,'wprss_item_permalink','https://activeclubsolutions.net/activ8-pos-version-2023-7-183-new-release-notes/'),
(45415,4148,'wprss_item_enclosure',''),
(45416,4148,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45417,4148,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45418,4148,'wprss_item_author','Active Club Solutions'),
(45419,4148,'wprss_item_author_email',NULL),
(45420,4148,'wprss_item_author_link',NULL),
(45421,4148,'wprss_feed_id','1713'),
(45422,4148,'wprss_images','a:0:{}'),
(45423,4148,'wprss_best_image',''),
(45424,4149,'_edit_lock','1690389415:21'),
(45425,4149,'_edit_last','21'),
(45426,4149,'_yoast_wpseo_primary_category',''),
(45427,4149,'ninzio_post_audio_mp3',''),
(45428,4149,'ninzio_post_audio_ogg',''),
(45429,4149,'ninzio_post_audio_embed',''),
(45430,4149,'ninzio_post_video_mp4',''),
(45431,4149,'ninzio_post_video_ogv',''),
(45432,4149,'ninzio_post_video_webm',''),
(45433,4149,'ninzio_post_video_embed',''),
(45434,4149,'ninzio_post_video_poster',''),
(45435,4149,'ninzio_post_link_url',''),
(45436,4149,'ninzio_post_image_url',''),
(45437,4149,'ninzio_post_image_description',''),
(45438,4149,'ninzio_post_status_author',''),
(45439,4149,'ninzio_post_quote_author',''),
(45440,4149,'ninzio_post_featured_media','yes'),
(45441,4149,'_yoast_wpseo_content_score','60'),
(45442,4149,'_wp_old_date','2026-08-08'),
(45443,4149,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45444,4149,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45456,4150,'wprss_item_date','2023-07-17T18:03:07+0000'),
(45457,4150,'wprss_item_permalink','https://activeclubsolutions.net/activ8-ios-pos-desktop-and-ecommerce-release-notes/'),
(45458,4150,'wprss_item_enclosure',''),
(45459,4150,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45460,4150,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45461,4150,'wprss_item_author','Helene Champ'),
(45462,4150,'wprss_item_author_email',NULL),
(45463,4150,'wprss_item_author_link',NULL),
(45464,4150,'wprss_feed_id','1713'),
(45465,4150,'wprss_images','a:0:{}'),
(45466,4150,'wprss_best_image',''),
(45469,4151,'_edit_lock','1690389827:21'),
(45470,4151,'_edit_last','21'),
(45471,4151,'_yoast_wpseo_primary_category',''),
(45472,4151,'ninzio_post_audio_mp3',''),
(45473,4151,'ninzio_post_audio_ogg',''),
(45474,4151,'ninzio_post_audio_embed',''),
(45475,4151,'ninzio_post_video_mp4',''),
(45476,4151,'ninzio_post_video_ogv',''),
(45477,4151,'ninzio_post_video_webm',''),
(45478,4151,'ninzio_post_video_embed',''),
(45479,4151,'ninzio_post_video_poster',''),
(45480,4151,'ninzio_post_link_url',''),
(45481,4151,'ninzio_post_image_url',''),
(45482,4151,'ninzio_post_image_description',''),
(45483,4151,'ninzio_post_status_author',''),
(45484,4151,'ninzio_post_quote_author',''),
(45485,4151,'ninzio_post_featured_media','yes'),
(45486,4151,'_yoast_wpseo_content_score','90'),
(45487,4151,'_wp_old_date','2026-08-08'),
(45488,4151,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45489,4151,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45501,4153,'_wp_attached_file','2023/07/Done.png'),
(45502,4153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:210;s:6:\"height\";i:150;s:4:\"file\";s:16:\"2023/07/Done.png\";s:8:\"filesize\";i:76092;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"Done-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51981;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45504,4151,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45506,4154,'wprss_item_date','2023-07-26T16:36:13+0000'),
(45507,4154,'wprss_item_permalink','https://activeclubsolutions.net/activ8-remote-desktop-release-notes/'),
(45508,4154,'wprss_item_enclosure',''),
(45509,4154,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45510,4154,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45511,4154,'wprss_item_author','Active Club Solutions'),
(45512,4154,'wprss_item_author_email',NULL),
(45513,4154,'wprss_item_author_link',NULL),
(45514,4154,'wprss_feed_id','1713'),
(45515,4154,'wprss_images','a:0:{}'),
(45516,4154,'wprss_best_image',''),
(45519,4155,'_edit_lock','1691080587:21'),
(45520,4155,'_edit_last','21'),
(45521,4155,'_yoast_wpseo_primary_category',''),
(45522,4155,'ninzio_post_audio_mp3',''),
(45523,4155,'ninzio_post_audio_ogg',''),
(45524,4155,'ninzio_post_audio_embed',''),
(45525,4155,'ninzio_post_video_mp4',''),
(45526,4155,'ninzio_post_video_ogv',''),
(45527,4155,'ninzio_post_video_webm',''),
(45528,4155,'ninzio_post_video_embed',''),
(45529,4155,'ninzio_post_video_poster',''),
(45530,4155,'ninzio_post_link_url',''),
(45531,4155,'ninzio_post_image_url',''),
(45532,4155,'ninzio_post_image_description',''),
(45533,4155,'ninzio_post_status_author',''),
(45534,4155,'ninzio_post_quote_author',''),
(45535,4155,'ninzio_post_featured_media','yes'),
(45536,4155,'_yoast_wpseo_content_score','90'),
(45537,4155,'_wp_old_date','2026-08-08'),
(45538,4155,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45539,4155,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45550,4156,'_wp_attached_file','2023/08/Referral-campaign-300-px.png'),
(45551,4156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:36:\"2023/08/Referral-campaign-300-px.png\";s:8:\"filesize\";i:99650;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Referral-campaign-300-px-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34879;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45552,4155,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45554,4158,'wprss_item_date','2023-08-03T16:27:58+0000'),
(45555,4158,'wprss_item_permalink','https://activeclubsolutions.net/help-us-grow-seeking-your-valuable-referrals/'),
(45556,4158,'wprss_item_enclosure',''),
(45557,4158,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45558,4158,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45559,4158,'wprss_item_author','Active Club Solutions'),
(45560,4158,'wprss_item_author_email',NULL),
(45561,4158,'wprss_item_author_link',NULL),
(45562,4158,'wprss_feed_id','1713'),
(45563,4158,'wprss_images','a:0:{}'),
(45564,4158,'wprss_best_image',''),
(45565,4159,'_edit_lock','1692036594:21'),
(45566,4159,'_edit_last','21'),
(45567,4159,'_yoast_wpseo_primary_category',''),
(45568,4159,'ninzio_post_audio_mp3',''),
(45569,4159,'ninzio_post_audio_ogg',''),
(45570,4159,'ninzio_post_audio_embed',''),
(45571,4159,'ninzio_post_video_mp4',''),
(45572,4159,'ninzio_post_video_ogv',''),
(45573,4159,'ninzio_post_video_webm',''),
(45574,4159,'ninzio_post_video_embed',''),
(45575,4159,'ninzio_post_video_poster',''),
(45576,4159,'ninzio_post_link_url',''),
(45577,4159,'ninzio_post_image_url',''),
(45578,4159,'ninzio_post_image_description',''),
(45579,4159,'ninzio_post_status_author',''),
(45580,4159,'ninzio_post_quote_author',''),
(45581,4159,'ninzio_post_featured_media','yes'),
(45582,4159,'_yoast_wpseo_content_score','30'),
(45583,4159,'_wp_old_date','2026-08-08'),
(45584,4159,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45585,4159,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45596,4159,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45597,4161,'_wp_attached_file','2023/08/Release-notes.png'),
(45598,4161,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:210;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2023/08/Release-notes.png\";s:8:\"filesize\";i:38615;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Release-notes-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25676;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45600,4162,'wprss_item_date','2023-08-09T15:44:50+0000'),
(45601,4162,'wprss_item_permalink','https://activeclubsolutions.net/activ8-commerce-pos-release-notes/'),
(45602,4162,'wprss_item_enclosure',''),
(45603,4162,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45604,4162,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45605,4162,'wprss_item_author','Active Club Solutions'),
(45606,4162,'wprss_item_author_email',NULL),
(45607,4162,'wprss_item_author_link',NULL),
(45608,4162,'wprss_feed_id','1713'),
(45609,4162,'wprss_images','a:0:{}'),
(45610,4162,'wprss_best_image',''),
(45612,4163,'_edit_lock','1693522734:21'),
(45613,4163,'_edit_last','21'),
(45614,4163,'_yoast_wpseo_primary_category',''),
(45615,4163,'ninzio_post_audio_mp3',''),
(45616,4163,'ninzio_post_audio_ogg',''),
(45617,4163,'ninzio_post_audio_embed',''),
(45618,4163,'ninzio_post_video_mp4',''),
(45619,4163,'ninzio_post_video_ogv',''),
(45620,4163,'ninzio_post_video_webm',''),
(45621,4163,'ninzio_post_video_embed',''),
(45622,4163,'ninzio_post_video_poster',''),
(45623,4163,'ninzio_post_link_url',''),
(45624,4163,'ninzio_post_image_url',''),
(45625,4163,'ninzio_post_image_description',''),
(45626,4163,'ninzio_post_status_author',''),
(45627,4163,'ninzio_post_quote_author',''),
(45628,4163,'ninzio_post_featured_media','yes'),
(45629,4163,'_yoast_wpseo_content_score','30'),
(45630,4163,'_wp_old_date','2026-08-08'),
(45631,4163,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45632,4163,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45644,4163,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45645,4165,'wprss_item_date','2023-08-31T22:29:52+0000'),
(45646,4165,'wprss_item_permalink','https://activeclubsolutions.net/activ8-commerce-pos-release-notes-2/'),
(45647,4165,'wprss_item_enclosure',''),
(45648,4165,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45649,4165,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45650,4165,'wprss_item_author','Active Club Solutions'),
(45651,4165,'wprss_item_author_email',NULL),
(45652,4165,'wprss_item_author_link',NULL),
(45653,4165,'wprss_feed_id','1713'),
(45654,4165,'wprss_images','a:0:{}'),
(45655,4165,'wprss_best_image',''),
(45656,4167,'_edit_lock','1696436198:21'),
(45657,4167,'_edit_last','21'),
(45658,4167,'_yoast_wpseo_primary_category',''),
(45659,4167,'ninzio_post_audio_mp3',''),
(45660,4167,'ninzio_post_audio_ogg',''),
(45661,4167,'ninzio_post_audio_embed',''),
(45662,4167,'ninzio_post_video_mp4',''),
(45663,4167,'ninzio_post_video_ogv',''),
(45664,4167,'ninzio_post_video_webm',''),
(45665,4167,'ninzio_post_video_embed',''),
(45666,4167,'ninzio_post_video_poster',''),
(45667,4167,'ninzio_post_link_url',''),
(45668,4167,'ninzio_post_image_url',''),
(45669,4167,'ninzio_post_image_description',''),
(45670,4167,'ninzio_post_status_author',''),
(45671,4167,'ninzio_post_quote_author',''),
(45672,4167,'ninzio_post_featured_media','yes'),
(45673,4167,'_yoast_wpseo_content_score','60'),
(45674,4167,'_wp_old_date','2026-08-08'),
(45675,4167,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45676,4167,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45687,4167,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45689,4169,'_edit_lock','1699648065:21'),
(45690,4169,'_edit_last','21'),
(45691,4169,'_yoast_wpseo_primary_category',''),
(45692,4169,'ninzio_post_audio_mp3',''),
(45693,4169,'ninzio_post_audio_ogg',''),
(45694,4169,'ninzio_post_audio_embed',''),
(45695,4169,'ninzio_post_video_mp4',''),
(45696,4169,'ninzio_post_video_ogv',''),
(45697,4169,'ninzio_post_video_webm',''),
(45698,4169,'ninzio_post_video_embed',''),
(45699,4169,'ninzio_post_video_poster',''),
(45700,4169,'ninzio_post_link_url',''),
(45701,4169,'ninzio_post_image_url',''),
(45702,4169,'ninzio_post_image_description',''),
(45703,4169,'ninzio_post_status_author',''),
(45704,4169,'ninzio_post_quote_author',''),
(45705,4169,'ninzio_post_featured_media','yes'),
(45706,4169,'_yoast_wpseo_content_score','60'),
(45707,4169,'_wp_old_date','2026-08-08'),
(45708,4169,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45709,4169,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45720,4170,'_wp_attached_file','2023/10/Tock-blue.png'),
(45721,4170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:259;s:6:\"height\";i:194;s:4:\"file\";s:21:\"2023/10/Tock-blue.png\";s:8:\"filesize\";i:4984;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Tock-blue-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7768;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45722,4169,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45724,4171,'wprss_item_date','2023-10-04T16:26:15+0000'),
(45725,4171,'wprss_item_permalink','https://activeclubsolutions.net/activ8-commerce-and-tock-reservations/'),
(45726,4171,'wprss_item_enclosure',''),
(45727,4171,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45728,4171,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45729,4171,'wprss_item_author','Helene Champ'),
(45730,4171,'wprss_item_author_email',NULL),
(45731,4171,'wprss_item_author_link',NULL),
(45732,4171,'wprss_feed_id','1713'),
(45733,4171,'wprss_images','a:0:{}'),
(45734,4171,'wprss_best_image',''),
(45735,4172,'wprss_item_date','2023-10-04T16:18:54+0000'),
(45736,4172,'wprss_item_permalink','https://activeclubsolutions.net/activ8-commerce-release-notes/'),
(45737,4172,'wprss_item_enclosure',''),
(45738,4172,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45739,4172,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45740,4172,'wprss_item_author','Active Club Solutions'),
(45741,4172,'wprss_item_author_email',NULL),
(45742,4172,'wprss_item_author_link',NULL),
(45743,4172,'wprss_feed_id','1713'),
(45744,4172,'wprss_images','a:0:{}'),
(45745,4172,'wprss_best_image',''),
(45746,4173,'_edit_lock','1699649023:21'),
(45747,4173,'_edit_last','21'),
(45748,4173,'_yoast_wpseo_primary_category',''),
(45749,4173,'ninzio_post_audio_mp3',''),
(45750,4173,'ninzio_post_audio_ogg',''),
(45751,4173,'ninzio_post_audio_embed',''),
(45752,4173,'ninzio_post_video_mp4',''),
(45753,4173,'ninzio_post_video_ogv',''),
(45754,4173,'ninzio_post_video_webm',''),
(45755,4173,'ninzio_post_video_embed',''),
(45756,4173,'ninzio_post_video_poster',''),
(45757,4173,'ninzio_post_link_url',''),
(45758,4173,'ninzio_post_image_url',''),
(45759,4173,'ninzio_post_image_description',''),
(45760,4173,'ninzio_post_status_author',''),
(45761,4173,'ninzio_post_quote_author',''),
(45762,4173,'ninzio_post_featured_media','yes'),
(45763,4173,'_yoast_wpseo_content_score','60'),
(45764,4173,'_wp_old_date','2026-08-08'),
(45765,4173,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45766,4173,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45777,4174,'_wp_attached_file','2023/11/QuickBooks-Online-Logo.png'),
(45778,4174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1242;s:6:\"height\";i:439;s:4:\"file\";s:34:\"2023/11/QuickBooks-Online-Logo.png\";s:8:\"filesize\";i:63163;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-300x106.png\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14795;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"QuickBooks-Online-Logo-1024x362.png\";s:5:\"width\";i:1024;s:6:\"height\";i:362;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58404;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7034;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-768x271.png\";s:5:\"width\";i:768;s:6:\"height\";i:271;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42641;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-400x439.png\";s:5:\"width\";i:400;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15354;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33747;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-666x439.png\";s:5:\"width\";i:666;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29152;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-650x439.png\";s:5:\"width\";i:650;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27927;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-950x439.png\";s:5:\"width\";i:950;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41872;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-450x439.png\";s:5:\"width\";i:450;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17541;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26692;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-600x439.png\";s:5:\"width\";i:600;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26237;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20047;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:34:\"QuickBooks-Online-Logo-894x439.png\";s:5:\"width\";i:894;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39884;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:35:\"QuickBooks-Online-Logo-1200x439.png\";s:5:\"width\";i:1200;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56433;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45779,4175,'_wp_attached_file','2023/11/Untitled-design-7.png'),
(45780,4175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:938;s:6:\"height\";i:938;s:4:\"file\";s:29:\"2023/11/Untitled-design-7.png\";s:8:\"filesize\";i:157991;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36341;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15031;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120592;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58779;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52931;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118378;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96262;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-938x475.png\";s:5:\"width\";i:938;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90353;}s:11:\"tpl11-thumb\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-938x860.png\";s:5:\"width\";i:938;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:148237;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65216;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40480;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76088;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41904;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95468;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:29:\"Untitled-design-7-938x588.png\";s:5:\"width\";i:938;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88667;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45782,4173,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45783,4177,'wprss_item_date','2023-11-10T20:45:50+0000'),
(45784,4177,'wprss_item_permalink','https://activeclubsolutions.net/activ8-commerce-and-quickbooks-online/'),
(45785,4177,'wprss_item_enclosure',''),
(45786,4177,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45787,4177,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45788,4177,'wprss_item_author','Active Club Solutions'),
(45789,4177,'wprss_item_author_email',NULL),
(45790,4177,'wprss_item_author_link',NULL),
(45791,4177,'wprss_feed_id','1713'),
(45792,4177,'wprss_images','a:0:{}'),
(45793,4177,'wprss_best_image',''),
(45794,4178,'_edit_lock','1702070942:21'),
(45795,4178,'_edit_last','21'),
(45796,4178,'_yoast_wpseo_primary_category',''),
(45797,4178,'ninzio_post_audio_mp3',''),
(45798,4178,'ninzio_post_audio_ogg',''),
(45799,4178,'ninzio_post_audio_embed',''),
(45800,4178,'ninzio_post_video_mp4',''),
(45801,4178,'ninzio_post_video_ogv',''),
(45802,4178,'ninzio_post_video_webm',''),
(45803,4178,'ninzio_post_video_embed',''),
(45804,4178,'ninzio_post_video_poster',''),
(45805,4178,'ninzio_post_link_url',''),
(45806,4178,'ninzio_post_image_url',''),
(45807,4178,'ninzio_post_image_description',''),
(45808,4178,'ninzio_post_status_author',''),
(45809,4178,'ninzio_post_quote_author',''),
(45810,4178,'ninzio_post_featured_media','yes'),
(45811,4178,'_yoast_wpseo_content_score','60'),
(45812,4178,'_wp_old_date','2026-08-08'),
(45813,4178,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45814,4178,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45825,4178,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45827,4180,'_edit_lock','1732219901:21'),
(45828,4180,'_edit_last','21'),
(45829,4180,'_yoast_wpseo_primary_category',''),
(45830,4180,'ninzio_post_audio_mp3',''),
(45831,4180,'ninzio_post_audio_ogg',''),
(45832,4180,'ninzio_post_audio_embed',''),
(45833,4180,'ninzio_post_video_mp4',''),
(45834,4180,'ninzio_post_video_ogv',''),
(45835,4180,'ninzio_post_video_webm',''),
(45836,4180,'ninzio_post_video_embed',''),
(45837,4180,'ninzio_post_video_poster',''),
(45838,4180,'ninzio_post_link_url',''),
(45839,4180,'ninzio_post_image_url',''),
(45840,4180,'ninzio_post_image_description',''),
(45841,4180,'ninzio_post_status_author',''),
(45842,4180,'ninzio_post_quote_author',''),
(45843,4180,'ninzio_post_featured_media','yes'),
(45844,4180,'_yoast_wpseo_content_score','30'),
(45845,4180,'_wp_old_date','2026-08-08'),
(45846,4180,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45847,4180,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45858,4181,'_wp_attached_file','2023/12/time-clock.png'),
(45859,4181,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:394;s:6:\"height\";i:266;s:4:\"file\";s:22:\"2023/12/time-clock.png\";s:8:\"filesize\";i:9195;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"time-clock-300x203.png\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"time-clock-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3489;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:22:\"time-clock-384x266.png\";s:5:\"width\";i:384;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5484;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45860,4183,'_wp_attached_file','2023/12/timeclock.png'),
(45861,4183,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1904;s:6:\"height\";i:1064;s:4:\"file\";s:21:\"2023/12/timeclock.png\";s:8:\"filesize\";i:108933;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"timeclock-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14080;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"timeclock-1024x572.png\";s:5:\"width\";i:1024;s:6:\"height\";i:572;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85742;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"timeclock-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4555;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"timeclock-768x429.png\";s:5:\"width\";i:768;s:6:\"height\";i:429;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56573;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:21:\"timeclock-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20991;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:21:\"timeclock-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31843;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:21:\"timeclock-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43958;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:21:\"timeclock-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39231;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:21:\"timeclock-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75455;}s:11:\"tpl11-thumb\";a:5:{s:4:\"file\";s:22:\"timeclock-1700x860.png\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:163360;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:21:\"timeclock-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24496;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:21:\"timeclock-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23373;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"timeclock-1536x858.png\";s:5:\"width\";i:1536;s:6:\"height\";i:858;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146750;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:21:\"timeclock-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32779;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:21:\"timeclock-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16547;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:21:\"timeclock-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56195;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:22:\"timeclock-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96652;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45868,4184,'wprss_item_date','2023-12-08T21:37:35+0000'),
(45869,4184,'wprss_item_permalink','https://activeclubsolutions.net/new-time-clock-management-in-activ8-cloud/'),
(45870,4184,'wprss_item_enclosure',''),
(45871,4184,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45872,4184,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45873,4184,'wprss_item_author','Active Club Solutions'),
(45874,4184,'wprss_item_author_email',NULL),
(45875,4184,'wprss_item_author_link',NULL),
(45876,4184,'wprss_feed_id','1713'),
(45877,4184,'wprss_images','a:0:{}'),
(45878,4184,'wprss_best_image',''),
(45879,4185,'wprss_item_date','2023-12-08T21:17:36+0000'),
(45880,4185,'wprss_item_permalink','https://activeclubsolutions.net/activ8-pos-release-2024-1-189/'),
(45881,4185,'wprss_item_enclosure',''),
(45882,4185,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45883,4185,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45884,4185,'wprss_item_author','Active Club Solutions'),
(45885,4185,'wprss_item_author_email',NULL),
(45886,4185,'wprss_item_author_link',NULL),
(45887,4185,'wprss_feed_id','1713'),
(45888,4185,'wprss_images','a:0:{}'),
(45889,4185,'wprss_best_image',''),
(45891,4186,'_wp_attached_file','2023/12/Timeclock2.png'),
(45892,4186,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:656;s:6:\"height\";i:469;s:4:\"file\";s:22:\"2023/12/Timeclock2.png\";s:8:\"filesize\";i:31888;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Timeclock2-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5022;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Timeclock2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3105;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:22:\"Timeclock2-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11788;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:22:\"Timeclock2-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12410;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:22:\"Timeclock2-650x469.png\";s:5:\"width\";i:650;s:6:\"height\";i:469;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12687;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:22:\"Timeclock2-450x469.png\";s:5:\"width\";i:450;s:6:\"height\";i:469;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11869;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:22:\"Timeclock2-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9535;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:22:\"Timeclock2-600x469.png\";s:5:\"width\";i:600;s:6:\"height\";i:469;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12550;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:22:\"Timeclock2-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7579;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45903,4190,'_edit_lock','1743276815:21'),
(45904,4190,'_edit_last','21'),
(45905,4190,'_yoast_wpseo_primary_category',''),
(45906,4190,'ninzio_post_audio_mp3',''),
(45907,4190,'ninzio_post_audio_ogg',''),
(45908,4190,'ninzio_post_audio_embed',''),
(45909,4190,'ninzio_post_video_mp4',''),
(45910,4190,'ninzio_post_video_ogv',''),
(45911,4190,'ninzio_post_video_webm',''),
(45912,4190,'ninzio_post_video_embed',''),
(45913,4190,'ninzio_post_video_poster',''),
(45914,4190,'ninzio_post_link_url',''),
(45915,4190,'ninzio_post_image_url',''),
(45916,4190,'ninzio_post_image_description',''),
(45917,4190,'ninzio_post_status_author',''),
(45918,4190,'ninzio_post_quote_author',''),
(45919,4190,'ninzio_post_featured_media','yes'),
(45920,4190,'_yoast_wpseo_content_score','90'),
(45921,4190,'_wp_old_date','2026-08-08'),
(45922,4190,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45923,4190,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45934,4192,'_wp_attached_file','2024/02/10877677.jpg'),
(45935,4192,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1002;s:4:\"file\";s:20:\"2024/02/10877677.jpg\";s:8:\"filesize\";i:69651;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"10877677-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"10877677-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5661;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"10877677-768x770.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:770;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31249;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:20:\"10877677-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16124;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:20:\"10877677-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17179;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:20:\"10877677-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30418;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:20:\"10877677-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24441;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:20:\"10877677-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21866;}s:11:\"tpl11-thumb\";a:5:{s:4:\"file\";s:21:\"10877677-1000x860.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43901;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:20:\"10877677-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17947;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:20:\"10877677-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13868;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:20:\"10877677-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21208;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:20:\"10877677-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12774;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:20:\"10877677-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29976;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:21:\"10877677-1000x588.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33631;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:24:\"VectorStock.com/10877677\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45938,4193,'wprss_item_date','2024-02-16T18:05:31+0000'),
(45939,4193,'wprss_item_permalink','https://activeclubsolutions.net/upgrade-alert-new-system-email-templates-await/'),
(45940,4193,'wprss_item_enclosure',''),
(45941,4193,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45942,4193,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45943,4193,'wprss_item_author','Active Club Solutions'),
(45944,4193,'wprss_item_author_email',NULL),
(45945,4193,'wprss_item_author_link',NULL),
(45946,4193,'wprss_feed_id','1713'),
(45947,4193,'wprss_images','a:0:{}'),
(45948,4193,'wprss_best_image',''),
(45949,4194,'_edit_lock','1708635925:21'),
(45950,4194,'_edit_last','21'),
(45951,4194,'_yoast_wpseo_primary_category',''),
(45952,4194,'ninzio_post_audio_mp3',''),
(45953,4194,'ninzio_post_audio_ogg',''),
(45954,4194,'ninzio_post_audio_embed',''),
(45955,4194,'ninzio_post_video_mp4',''),
(45956,4194,'ninzio_post_video_ogv',''),
(45957,4194,'ninzio_post_video_webm',''),
(45958,4194,'ninzio_post_video_embed',''),
(45959,4194,'ninzio_post_video_poster',''),
(45960,4194,'ninzio_post_link_url',''),
(45961,4194,'ninzio_post_image_url',''),
(45962,4194,'ninzio_post_image_description',''),
(45963,4194,'ninzio_post_status_author',''),
(45964,4194,'ninzio_post_quote_author',''),
(45965,4194,'ninzio_post_featured_media','yes'),
(45966,4194,'_yoast_wpseo_content_score','60'),
(45967,4194,'_wp_old_date','2026-08-08'),
(45968,4194,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(45969,4194,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(45980,4196,'_wp_attached_file','2024/02/Tock-Integration.png'),
(45981,4196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2024/02/Tock-Integration.png\";s:8:\"filesize\";i:32870;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Tock-Integration-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14342;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(45982,4196,'_wp_attachment_image_alt','Tock integration'),
(45983,4194,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(45985,4197,'wprss_item_date','2024-02-22T21:07:10+0000'),
(45986,4197,'wprss_item_permalink','https://activeclubsolutions.net/activ8-commerce-and-tock-reservation-system-integration-unveiled/'),
(45987,4197,'wprss_item_enclosure',''),
(45988,4197,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(45989,4197,'wprss_item_source_url','https://activeclubsolutions.net/'),
(45990,4197,'wprss_item_author','Active Club Solutions'),
(45991,4197,'wprss_item_author_email',NULL),
(45992,4197,'wprss_item_author_link',NULL),
(45993,4197,'wprss_feed_id','1713'),
(45994,4197,'wprss_images','a:0:{}'),
(45995,4197,'wprss_best_image',''),
(45996,4198,'_edit_lock','1709927019:21'),
(45997,4198,'_edit_last','21'),
(45998,4198,'_yoast_wpseo_primary_category',''),
(45999,4198,'ninzio_post_audio_mp3',''),
(46000,4198,'ninzio_post_audio_ogg',''),
(46001,4198,'ninzio_post_audio_embed',''),
(46002,4198,'ninzio_post_video_mp4',''),
(46003,4198,'ninzio_post_video_ogv',''),
(46004,4198,'ninzio_post_video_webm',''),
(46005,4198,'ninzio_post_video_embed',''),
(46006,4198,'ninzio_post_video_poster',''),
(46007,4198,'ninzio_post_link_url',''),
(46008,4198,'ninzio_post_image_url',''),
(46009,4198,'ninzio_post_image_description',''),
(46010,4198,'ninzio_post_status_author',''),
(46011,4198,'ninzio_post_quote_author',''),
(46012,4198,'ninzio_post_featured_media','yes'),
(46013,4198,'_yoast_wpseo_content_score','60'),
(46014,4198,'_wp_old_date','2026-08-08'),
(46015,4198,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46016,4198,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46027,4200,'_wp_attached_file','2024/03/GLS-Integration.png'),
(46028,4200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2024/03/GLS-Integration.png\";s:8:\"filesize\";i:30152;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"GLS-Integration-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12860;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46030,4198,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46031,4201,'_edit_lock','1709927504:21'),
(46032,4201,'_edit_last','21'),
(46033,4201,'_yoast_wpseo_primary_category',''),
(46034,4201,'ninzio_post_audio_mp3',''),
(46035,4201,'ninzio_post_audio_ogg',''),
(46036,4201,'ninzio_post_audio_embed',''),
(46037,4201,'ninzio_post_video_mp4',''),
(46038,4201,'ninzio_post_video_ogv',''),
(46039,4201,'ninzio_post_video_webm',''),
(46040,4201,'ninzio_post_video_embed',''),
(46041,4201,'ninzio_post_video_poster',''),
(46042,4201,'ninzio_post_link_url',''),
(46043,4201,'ninzio_post_image_url',''),
(46044,4201,'ninzio_post_image_description',''),
(46045,4201,'ninzio_post_status_author',''),
(46046,4201,'ninzio_post_quote_author',''),
(46047,4201,'ninzio_post_featured_media','yes'),
(46048,4201,'_yoast_wpseo_content_score','90'),
(46049,4201,'_wp_old_date','2026-08-08'),
(46050,4201,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46051,4201,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46062,4202,'wprss_item_date','2024-03-08T19:45:57+0000'),
(46063,4202,'wprss_item_permalink','https://activeclubsolutions.net/activ8-commerce-and-gls-integration-upgrade/'),
(46064,4202,'wprss_item_enclosure',''),
(46065,4202,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(46066,4202,'wprss_item_source_url','https://activeclubsolutions.net/'),
(46067,4202,'wprss_item_author','Active Club Solutions'),
(46068,4202,'wprss_item_author_email',NULL),
(46069,4202,'wprss_item_author_link',NULL),
(46070,4202,'wprss_feed_id','1713'),
(46071,4202,'wprss_images','a:0:{}'),
(46072,4202,'wprss_best_image',''),
(46073,4203,'_wp_attached_file','2024/03/Cloud-login.gif'),
(46074,4203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2024/03/Cloud-login.gif\";s:8:\"filesize\";i:349492;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Cloud-login-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:6985;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46076,4201,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46078,4205,'wprss_item_date','2024-03-08T19:52:51+0000'),
(46079,4205,'wprss_item_permalink','https://activeclubsolutions.net/cloud-login-update/'),
(46080,4205,'wprss_item_enclosure',''),
(46081,4205,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(46082,4205,'wprss_item_source_url','https://activeclubsolutions.net/'),
(46083,4205,'wprss_item_author','Active Club Solutions'),
(46084,4205,'wprss_item_author_email',NULL),
(46085,4205,'wprss_item_author_link',NULL),
(46086,4205,'wprss_feed_id','1713'),
(46087,4205,'wprss_images','a:0:{}'),
(46088,4205,'wprss_best_image',''),
(46089,4206,'_edit_lock','1713892469:21'),
(46090,4206,'_edit_last','21'),
(46091,4206,'_yoast_wpseo_primary_category',''),
(46092,4206,'ninzio_post_audio_mp3',''),
(46093,4206,'ninzio_post_audio_ogg',''),
(46094,4206,'ninzio_post_audio_embed',''),
(46095,4206,'ninzio_post_video_mp4',''),
(46096,4206,'ninzio_post_video_ogv',''),
(46097,4206,'ninzio_post_video_webm',''),
(46098,4206,'ninzio_post_video_embed',''),
(46099,4206,'ninzio_post_video_poster',''),
(46100,4206,'ninzio_post_link_url',''),
(46101,4206,'ninzio_post_image_url',''),
(46102,4206,'ninzio_post_image_description',''),
(46103,4206,'ninzio_post_status_author',''),
(46104,4206,'ninzio_post_quote_author',''),
(46105,4206,'ninzio_post_featured_media','yes'),
(46106,4206,'_yoast_wpseo_content_score','90'),
(46107,4206,'_wp_old_date','2026-08-08'),
(46108,4206,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46109,4206,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46120,4207,'_wp_attached_file','2024/03/Feed-pics.gif'),
(46121,4207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2024/03/Feed-pics.gif\";s:8:\"filesize\";i:785091;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Feed-pics-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:13565;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46122,4206,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46124,4209,'wprss_item_date','2024-03-28T20:01:15+0000'),
(46125,4209,'wprss_item_permalink','https://activeclubsolutions.net/ups-critical-update/'),
(46126,4209,'wprss_item_enclosure',''),
(46127,4209,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(46128,4209,'wprss_item_source_url','https://activeclubsolutions.net/'),
(46129,4209,'wprss_item_author','Active Club Solutions'),
(46130,4209,'wprss_item_author_email',NULL),
(46131,4209,'wprss_item_author_link',NULL),
(46132,4209,'wprss_feed_id','1713'),
(46133,4209,'wprss_images','a:0:{}'),
(46134,4209,'wprss_best_image',''),
(46136,4210,'_wp_attached_file','2024/03/Feed-pics-1.gif'),
(46137,4210,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2024/03/Feed-pics-1.gif\";s:8:\"filesize\";i:741076;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:14199;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46140,4211,'_edit_lock','1714579019:21'),
(46141,4211,'_edit_last','21'),
(46142,4211,'_yoast_wpseo_primary_category',''),
(46143,4211,'ninzio_post_audio_mp3',''),
(46144,4211,'ninzio_post_audio_ogg',''),
(46145,4211,'ninzio_post_audio_embed',''),
(46146,4211,'ninzio_post_video_mp4',''),
(46147,4211,'ninzio_post_video_ogv',''),
(46148,4211,'ninzio_post_video_webm',''),
(46149,4211,'ninzio_post_video_embed',''),
(46150,4211,'ninzio_post_video_poster',''),
(46151,4211,'ninzio_post_link_url',''),
(46152,4211,'ninzio_post_image_url',''),
(46153,4211,'ninzio_post_image_description',''),
(46154,4211,'ninzio_post_status_author',''),
(46155,4211,'ninzio_post_quote_author',''),
(46156,4211,'ninzio_post_featured_media','yes'),
(46157,4211,'_yoast_wpseo_content_score','30'),
(46158,4211,'_wp_old_date','2026-08-08'),
(46159,4211,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46160,4211,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46172,4213,'_wp_attached_file','2024/04/Global-updates.gif'),
(46173,4213,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2024/04/Global-updates.gif\";s:8:\"filesize\";i:708052;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Global-updates-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8328;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46175,4214,'wprss_item_date','2024-04-16T16:16:55+0000'),
(46176,4214,'wprss_item_permalink','https://activeclubsolutions.net/activ8-commerce-cloud-manager-and-ecommerce-release-notes/'),
(46177,4214,'wprss_item_enclosure',''),
(46178,4214,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(46179,4214,'wprss_item_source_url','https://activeclubsolutions.net/'),
(46180,4214,'wprss_item_author','Active Club Solutions'),
(46181,4214,'wprss_item_author_email',NULL),
(46182,4214,'wprss_item_author_link',NULL),
(46183,4214,'wprss_feed_id','1713'),
(46184,4214,'wprss_images','a:0:{}'),
(46185,4214,'wprss_best_image',''),
(46186,4215,'_wp_attached_file','2024/04/Feed-pics-2.gif'),
(46187,4215,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2024/04/Feed-pics-2.gif\";s:8:\"filesize\";i:901337;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-2-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8254;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46190,4216,'_wp_attached_file','2024/03/Feed-pics-3.gif'),
(46191,4216,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2024/03/Feed-pics-3.gif\";s:8:\"filesize\";i:584141;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-3-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:13069;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46195,4217,'_edit_lock','1715697934:21'),
(46196,4217,'_edit_last','21'),
(46197,4217,'_yoast_wpseo_primary_category',''),
(46198,4217,'ninzio_post_audio_mp3',''),
(46199,4217,'ninzio_post_audio_ogg',''),
(46200,4217,'ninzio_post_audio_embed',''),
(46201,4217,'ninzio_post_video_mp4',''),
(46202,4217,'ninzio_post_video_ogv',''),
(46203,4217,'ninzio_post_video_webm',''),
(46204,4217,'ninzio_post_video_embed',''),
(46205,4217,'ninzio_post_video_poster',''),
(46206,4217,'ninzio_post_link_url',''),
(46207,4217,'ninzio_post_image_url',''),
(46208,4217,'ninzio_post_image_description',''),
(46209,4217,'ninzio_post_status_author',''),
(46210,4217,'ninzio_post_quote_author',''),
(46211,4217,'ninzio_post_featured_media','yes'),
(46212,4217,'_yoast_wpseo_content_score','30'),
(46213,4217,'_wp_old_date','2026-08-08'),
(46214,4217,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46215,4217,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46226,4218,'_wp_attached_file','2024/04/Feed-pics.png'),
(46227,4218,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2024/04/Feed-pics.png\";s:8:\"filesize\";i:138208;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Feed-pics-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39197;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46230,4217,'_wp_old_date','2024-04-23'),
(46231,4220,'wprss_item_date','2024-04-24T17:29:06+0000'),
(46232,4220,'wprss_item_permalink','https://activeclubsolutions.net/why-activ8-cloud-is-necessary-to-manage-your-images/'),
(46233,4220,'wprss_item_enclosure',''),
(46234,4220,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(46235,4220,'wprss_item_source_url','https://activeclubsolutions.net/'),
(46236,4220,'wprss_item_author','Active Club Solutions'),
(46237,4220,'wprss_item_author_email',NULL),
(46238,4220,'wprss_item_author_link',NULL),
(46239,4220,'wprss_feed_id','1713'),
(46240,4220,'wprss_images','a:0:{}'),
(46241,4220,'wprss_best_image',''),
(46242,4211,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46244,4221,'_edit_lock','1714582483:21'),
(46245,4221,'_edit_last','21'),
(46246,4221,'_yoast_wpseo_primary_category',''),
(46247,4221,'ninzio_post_audio_mp3',''),
(46248,4221,'ninzio_post_audio_ogg',''),
(46249,4221,'ninzio_post_audio_embed',''),
(46250,4221,'ninzio_post_video_mp4',''),
(46251,4221,'ninzio_post_video_ogv',''),
(46252,4221,'ninzio_post_video_webm',''),
(46253,4221,'ninzio_post_video_embed',''),
(46254,4221,'ninzio_post_video_poster',''),
(46255,4221,'ninzio_post_link_url',''),
(46256,4221,'ninzio_post_image_url',''),
(46257,4221,'ninzio_post_image_description',''),
(46258,4221,'ninzio_post_status_author',''),
(46259,4221,'ninzio_post_quote_author',''),
(46260,4221,'ninzio_post_featured_media','yes'),
(46261,4221,'_yoast_wpseo_content_score','60'),
(46262,4221,'_wp_old_date','2026-08-08'),
(46263,4221,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46264,4221,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46275,4222,'_wp_attached_file','2024/05/Feed-pics-4.gif'),
(46276,4222,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2024/05/Feed-pics-4.gif\";s:8:\"filesize\";i:2423346;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-4-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:11241;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46277,4221,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46279,4224,'wprss_item_date','2024-05-01T16:05:58+0000'),
(46280,4224,'wprss_item_permalink','https://activeclubsolutions.net/wholesale-in-activ8-cloud/'),
(46281,4224,'wprss_item_enclosure',''),
(46282,4224,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(46283,4224,'wprss_item_source_url','https://activeclubsolutions.net/'),
(46284,4224,'wprss_item_author','Active Club Solutions'),
(46285,4224,'wprss_item_author_email',NULL),
(46286,4224,'wprss_item_author_link',NULL),
(46287,4224,'wprss_feed_id','1713'),
(46288,4224,'wprss_images','a:0:{}'),
(46289,4224,'wprss_best_image',''),
(46290,4225,'_edit_lock','1715698438:21'),
(46291,4225,'_edit_last','21'),
(46292,4225,'_yoast_wpseo_primary_category',''),
(46293,4225,'ninzio_post_audio_mp3',''),
(46294,4225,'ninzio_post_audio_ogg',''),
(46295,4225,'ninzio_post_audio_embed',''),
(46296,4225,'ninzio_post_video_mp4',''),
(46297,4225,'ninzio_post_video_ogv',''),
(46298,4225,'ninzio_post_video_webm',''),
(46299,4225,'ninzio_post_video_embed',''),
(46300,4225,'ninzio_post_video_poster',''),
(46301,4225,'ninzio_post_link_url',''),
(46302,4225,'ninzio_post_image_url',''),
(46303,4225,'ninzio_post_image_description',''),
(46304,4225,'ninzio_post_status_author',''),
(46305,4225,'ninzio_post_quote_author',''),
(46306,4225,'ninzio_post_featured_media','yes'),
(46307,4225,'_yoast_wpseo_content_score','60'),
(46308,4225,'_wp_old_date','2026-08-08'),
(46309,4225,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46310,4225,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46312,4225,'_wp_old_date','2024-04-23'),
(46322,4226,'_wp_attached_file','2024/05/smiling-waitress-using-a8-system-less-blur-scaled.jpg'),
(46323,4226,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1279;s:4:\"file\";s:61:\"2024/05/smiling-waitress-using-a8-system-less-blur-scaled.jpg\";s:8:\"filesize\";i:451290;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17151;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"smiling-waitress-using-a8-system-less-blur-1024x511.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107313;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10185;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68975;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-400x450.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43751;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-610x400.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61041;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-666x783.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95065;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85091;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-950x475.jpg\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96322;}s:11:\"tpl11-thumb\";a:5:{s:4:\"file\";s:55:\"smiling-waitress-using-a8-system-less-blur-1700x860.jpg\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236943;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-450x485.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51239;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-500x333.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45959;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"smiling-waitress-using-a8-system-less-blur-1536x767.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199357;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:56:\"smiling-waitress-using-a8-system-less-blur-2048x1023.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:313855;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-600x480.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66526;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-384x300.jpg\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33659;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:54:\"smiling-waitress-using-a8-system-less-blur-894x588.jpg\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109866;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:55:\"smiling-waitress-using-a8-system-less-blur-1200x588.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135040;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:46:\"smiling-waitress-using-a8-system-less-blur.jpg\";}'),
(46326,4228,'wprss_item_date','2024-05-03T18:03:47+0000'),
(46327,4228,'wprss_item_permalink','https://activeclubsolutions.net/seamless-transition-to-activ8-pos-and-savings-on-payment-processing/'),
(46328,4228,'wprss_item_enclosure',''),
(46329,4228,'wprss_item_source_name','Winery POS Tasting Room POS mobile ipad POS wine club software'),
(46330,4228,'wprss_item_source_url','https://activeclubsolutions.net/'),
(46331,4228,'wprss_item_author','Active Club Solutions'),
(46332,4228,'wprss_item_author_email',NULL),
(46333,4228,'wprss_item_author_link',NULL),
(46334,4228,'wprss_feed_id','1713'),
(46335,4228,'wprss_images','a:0:{}'),
(46336,4228,'wprss_best_image',''),
(46343,4230,'_edit_lock','1724872221:21'),
(46344,4230,'_edit_last','21'),
(46345,4231,'_edit_last','21'),
(46347,4231,'_yoast_wpseo_primary_category','176'),
(46348,4231,'_edit_lock','1718390087:21'),
(46349,4232,'_wp_attached_file','2024/06/printer.png'),
(46350,4232,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:19:\"2024/06/printer.png\";s:8:\"filesize\";i:13773;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46351,4233,'_wp_attached_file','2024/06/cash.png'),
(46352,4233,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:143;s:6:\"height\";i:92;s:4:\"file\";s:16:\"2024/06/cash.png\";s:8:\"filesize\";i:13026;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46353,4234,'_wp_attached_file','2024/06/label.png'),
(46354,4234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:103;s:6:\"height\";i:94;s:4:\"file\";s:17:\"2024/06/label.png\";s:8:\"filesize\";i:12321;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46355,4235,'_wp_attached_file','2024/06/barcode.png'),
(46356,4235,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2024/06/barcode.png\";s:8:\"filesize\";i:10037;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46357,4231,'_yoast_wpseo_content_score','30'),
(46360,992,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46361,3441,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46362,1435,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46363,1436,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46364,1713,'wprss_error_last_import','Failed to fetch the RSS feed. Error: The resource could not be retrieved because of a client error with code 404\nServer returned 61917 characters, of which 150 are below:\n<!doctype html>\n<!--[if lt IE 7]> <html class=\"light-skin no-js ie6 oldie smooth-scroll-false\" lang=\"en-US\"> <![endif]-->\n<!--[if IE 7]>    <html clas'),
(46366,4231,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46367,4236,'_edit_lock','1718990838:21'),
(46368,4236,'_edit_last','21'),
(46369,4236,'_yoast_wpseo_primary_category',''),
(46370,4236,'ninzio_post_audio_mp3',''),
(46371,4236,'ninzio_post_audio_ogg',''),
(46372,4236,'ninzio_post_audio_embed',''),
(46373,4236,'ninzio_post_video_mp4',''),
(46374,4236,'ninzio_post_video_ogv',''),
(46375,4236,'ninzio_post_video_webm',''),
(46376,4236,'ninzio_post_video_embed',''),
(46377,4236,'ninzio_post_video_poster',''),
(46378,4236,'ninzio_post_link_url',''),
(46379,4236,'ninzio_post_image_url',''),
(46380,4236,'ninzio_post_image_description',''),
(46381,4236,'ninzio_post_status_author',''),
(46382,4236,'ninzio_post_quote_author',''),
(46383,4236,'ninzio_post_featured_media','yes'),
(46384,4236,'_yoast_wpseo_content_score','30'),
(46385,4236,'_wp_old_date','2026-08-08'),
(46386,4236,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46387,4236,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46388,4236,'_wp_old_date','2024-04-23'),
(46398,4237,'_wp_attached_file','2024/06/Feed-pics-5.gif'),
(46399,4237,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2024/06/Feed-pics-5.gif\";s:8:\"filesize\";i:2848912;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-5-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:18968;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46400,4237,'_wp_attachment_image_alt','employee incentive'),
(46403,4239,'_edit_lock','1718990947:21'),
(46404,4239,'_edit_last','21'),
(46405,4239,'_yoast_wpseo_primary_category',''),
(46406,4239,'ninzio_post_audio_mp3',''),
(46407,4239,'ninzio_post_audio_ogg',''),
(46408,4239,'ninzio_post_audio_embed',''),
(46409,4239,'ninzio_post_video_mp4',''),
(46410,4239,'ninzio_post_video_ogv',''),
(46411,4239,'ninzio_post_video_webm',''),
(46412,4239,'ninzio_post_video_embed',''),
(46413,4239,'ninzio_post_video_poster',''),
(46414,4239,'ninzio_post_link_url',''),
(46415,4239,'ninzio_post_image_url',''),
(46416,4239,'ninzio_post_image_description',''),
(46417,4239,'ninzio_post_status_author',''),
(46418,4239,'ninzio_post_quote_author',''),
(46419,4239,'ninzio_post_featured_media','yes'),
(46420,4239,'_yoast_wpseo_content_score','60'),
(46421,4239,'_wp_old_date','2026-08-08'),
(46422,4239,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46423,4239,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46434,4240,'_wp_attached_file','2024/06/tips.gif'),
(46435,4240,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:16:\"2024/06/tips.gif\";s:8:\"filesize\";i:107455;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"tips-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:3249;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46440,4242,'_edit_lock','1720630651:21'),
(46441,4242,'_edit_last','21'),
(46442,4242,'_yoast_wpseo_primary_category',''),
(46443,4242,'ninzio_post_audio_mp3',''),
(46444,4242,'ninzio_post_audio_ogg',''),
(46445,4242,'ninzio_post_audio_embed',''),
(46446,4242,'ninzio_post_video_mp4',''),
(46447,4242,'ninzio_post_video_ogv',''),
(46448,4242,'ninzio_post_video_webm',''),
(46449,4242,'ninzio_post_video_embed',''),
(46450,4242,'ninzio_post_video_poster',''),
(46451,4242,'ninzio_post_link_url',''),
(46452,4242,'ninzio_post_image_url',''),
(46453,4242,'ninzio_post_image_description',''),
(46454,4242,'ninzio_post_status_author',''),
(46455,4242,'ninzio_post_quote_author',''),
(46456,4242,'ninzio_post_featured_media','yes'),
(46457,4242,'_yoast_wpseo_content_score','90'),
(46471,4243,'_edit_lock','1724783732:21'),
(46472,4243,'_edit_last','21'),
(46473,4243,'_yoast_wpseo_primary_category',''),
(46474,4243,'ninzio_post_audio_mp3',''),
(46475,4243,'ninzio_post_audio_ogg',''),
(46476,4243,'ninzio_post_audio_embed',''),
(46477,4243,'ninzio_post_video_mp4',''),
(46478,4243,'ninzio_post_video_ogv',''),
(46479,4243,'ninzio_post_video_webm',''),
(46480,4243,'ninzio_post_video_embed',''),
(46481,4243,'ninzio_post_video_poster',''),
(46482,4243,'ninzio_post_link_url',''),
(46483,4243,'ninzio_post_image_url',''),
(46484,4243,'ninzio_post_image_description',''),
(46485,4243,'ninzio_post_status_author',''),
(46486,4243,'ninzio_post_quote_author',''),
(46487,4243,'ninzio_post_featured_media','yes'),
(46488,4243,'_yoast_wpseo_content_score','90'),
(46489,4243,'_wp_old_date','2026-08-08'),
(46490,4243,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46491,4243,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46502,4244,'_wp_attached_file','2024/07/Feed-pics-6.gif'),
(46503,4244,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2024/07/Feed-pics-6.gif\";s:8:\"filesize\";i:8558263;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-6-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:12186;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46504,4244,'_wp_attachment_image_alt','new version'),
(46506,4243,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46515,4247,'_wp_attached_file','2024/07/ACTIV-POS-CLOUD.png'),
(46516,4247,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1875;s:6:\"height\";i:1313;s:4:\"file\";s:27:\"2024/07/ACTIV-POS-CLOUD.png\";s:8:\"filesize\";i:908603;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-300x210.png\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52345;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"ACTIV-POS-CLOUD-1024x717.png\";s:5:\"width\";i:1024;s:6:\"height\";i:717;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:373099;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23444;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-768x538.png\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:240315;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126901;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164445;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:284749;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:246759;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:278409;}s:11:\"tpl11-thumb\";a:5:{s:4:\"file\";s:28:\"ACTIV-POS-CLOUD-1700x860.png\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:667535;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147536;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120143;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"ACTIV-POS-CLOUD-1536x1076.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1076;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:678844;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:184593;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88115;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:27:\"ACTIV-POS-CLOUD-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:300871;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:28:\"ACTIV-POS-CLOUD-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:410620;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46517,4247,'_wp_attachment_image_alt','Activ8 POS'),
(46519,4230,'_yoast_wpseo_primary_category','176'),
(46520,4230,'_yoast_wpseo_content_score','30'),
(46521,4249,'_edit_lock','1727985992:21'),
(46522,4249,'_edit_last','21'),
(46524,4249,'_yoast_wpseo_primary_category',''),
(46525,4249,'_yoast_wpseo_content_score','30'),
(46528,4249,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46534,4230,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46536,4251,'_edit_lock','1724783684:21'),
(46537,4251,'_edit_last','21'),
(46538,4251,'_yoast_wpseo_primary_category','1'),
(46539,4251,'ninzio_post_audio_mp3',''),
(46540,4251,'ninzio_post_audio_ogg',''),
(46541,4251,'ninzio_post_audio_embed',''),
(46542,4251,'ninzio_post_video_mp4',''),
(46543,4251,'ninzio_post_video_ogv',''),
(46544,4251,'ninzio_post_video_webm',''),
(46545,4251,'ninzio_post_video_embed',''),
(46546,4251,'ninzio_post_video_poster',''),
(46547,4251,'ninzio_post_link_url',''),
(46548,4251,'ninzio_post_image_url',''),
(46549,4251,'ninzio_post_image_description',''),
(46550,4251,'ninzio_post_status_author',''),
(46551,4251,'ninzio_post_quote_author',''),
(46552,4251,'ninzio_post_featured_media','yes'),
(46553,4251,'_yoast_wpseo_content_score','60'),
(46554,4251,'_wp_old_date','2026-08-08'),
(46555,4251,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46556,4251,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46571,4253,'_edit_lock','1724792981:21'),
(46572,4253,'_edit_last','21'),
(46573,4253,'_yoast_wpseo_primary_category','1'),
(46574,4253,'ninzio_post_audio_mp3',''),
(46575,4253,'ninzio_post_audio_ogg',''),
(46576,4253,'ninzio_post_audio_embed',''),
(46577,4253,'ninzio_post_video_mp4',''),
(46578,4253,'ninzio_post_video_ogv',''),
(46579,4253,'ninzio_post_video_webm',''),
(46580,4253,'ninzio_post_video_embed',''),
(46581,4253,'ninzio_post_video_poster',''),
(46582,4253,'ninzio_post_link_url',''),
(46583,4253,'ninzio_post_image_url',''),
(46584,4253,'ninzio_post_image_description',''),
(46585,4253,'ninzio_post_status_author',''),
(46586,4253,'ninzio_post_quote_author',''),
(46587,4253,'ninzio_post_featured_media','yes'),
(46588,4253,'_yoast_wpseo_content_score','90'),
(46589,4253,'_wp_old_date','2026-08-08'),
(46590,4253,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46591,4253,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46603,4253,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46605,4251,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46606,4255,'_wp_attached_file','2024/08/inventory-location.png'),
(46607,4255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:587;s:6:\"height\";i:165;s:4:\"file\";s:30:\"2024/08/inventory-location.png\";s:8:\"filesize\";i:5605;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"inventory-location-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4913;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"inventory-location-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4789;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:30:\"inventory-location-400x165.png\";s:5:\"width\";i:400;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2194;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:30:\"inventory-location-450x165.png\";s:5:\"width\";i:450;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2584;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:30:\"inventory-location-500x165.png\";s:5:\"width\";i:500;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5885;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:30:\"inventory-location-384x165.png\";s:5:\"width\";i:384;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2165;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46608,4255,'_wp_attachment_image_alt','inventory location'),
(46609,4256,'_wp_attached_file','2024/08/inventory-location-1.png'),
(46610,4256,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:521;s:6:\"height\";i:238;s:4:\"file\";s:32:\"2024/08/inventory-location-1.png\";s:8:\"filesize\";i:6995;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"inventory-location-1-300x137.png\";s:5:\"width\";i:300;s:6:\"height\";i:137;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9736;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"inventory-location-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5408;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:32:\"inventory-location-1-400x238.png\";s:5:\"width\";i:400;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3639;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:32:\"inventory-location-1-450x238.png\";s:5:\"width\";i:450;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9094;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:32:\"inventory-location-1-500x238.png\";s:5:\"width\";i:500;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9545;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:32:\"inventory-location-1-384x238.png\";s:5:\"width\";i:384;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46613,4257,'_edit_lock','1728064367:21'),
(46614,4257,'_edit_last','21'),
(46615,4257,'_yoast_wpseo_primary_category',''),
(46616,4257,'ninzio_post_audio_mp3',''),
(46617,4257,'ninzio_post_audio_ogg',''),
(46618,4257,'ninzio_post_audio_embed',''),
(46619,4257,'ninzio_post_video_mp4',''),
(46620,4257,'ninzio_post_video_ogv',''),
(46621,4257,'ninzio_post_video_webm',''),
(46622,4257,'ninzio_post_video_embed',''),
(46623,4257,'ninzio_post_video_poster',''),
(46624,4257,'ninzio_post_link_url',''),
(46625,4257,'ninzio_post_image_url',''),
(46626,4257,'ninzio_post_image_description',''),
(46627,4257,'ninzio_post_status_author',''),
(46628,4257,'ninzio_post_quote_author',''),
(46629,4257,'ninzio_post_featured_media','yes'),
(46630,4257,'_yoast_wpseo_content_score','60'),
(46631,4257,'_wp_old_date','2026-08-08'),
(46632,4257,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46633,4257,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46645,4257,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46646,4259,'_edit_lock','1728065727:21'),
(46647,4259,'_edit_last','21'),
(46648,4259,'_yoast_wpseo_primary_category','1'),
(46649,4259,'ninzio_post_audio_mp3',''),
(46650,4259,'ninzio_post_audio_ogg',''),
(46651,4259,'ninzio_post_audio_embed',''),
(46652,4259,'ninzio_post_video_mp4',''),
(46653,4259,'ninzio_post_video_ogv',''),
(46654,4259,'ninzio_post_video_webm',''),
(46655,4259,'ninzio_post_video_embed',''),
(46656,4259,'ninzio_post_video_poster',''),
(46657,4259,'ninzio_post_link_url',''),
(46658,4259,'ninzio_post_image_url',''),
(46659,4259,'ninzio_post_image_description',''),
(46660,4259,'ninzio_post_status_author',''),
(46661,4259,'ninzio_post_quote_author',''),
(46662,4259,'ninzio_post_featured_media','yes'),
(46663,4259,'_yoast_wpseo_content_score','60'),
(46664,4259,'_wp_old_date','2026-08-08'),
(46665,4259,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46666,4259,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46677,4260,'_wp_attached_file','2024/10/Images.gif'),
(46678,4260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2024/10/Images.gif\";s:8:\"filesize\";i:1004966;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Images-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:15362;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46679,4260,'_wp_attachment_image_alt','Image library enhancements'),
(46683,4262,'_edit_lock','1728064717:21'),
(46684,4262,'_edit_last','21'),
(46685,4262,'_yoast_wpseo_primary_category','1'),
(46686,4262,'ninzio_post_audio_mp3',''),
(46687,4262,'ninzio_post_audio_ogg',''),
(46688,4262,'ninzio_post_audio_embed',''),
(46689,4262,'ninzio_post_video_mp4',''),
(46690,4262,'ninzio_post_video_ogv',''),
(46691,4262,'ninzio_post_video_webm',''),
(46692,4262,'ninzio_post_video_embed',''),
(46693,4262,'ninzio_post_video_poster',''),
(46694,4262,'ninzio_post_link_url',''),
(46695,4262,'ninzio_post_image_url',''),
(46696,4262,'ninzio_post_image_description',''),
(46697,4262,'ninzio_post_status_author',''),
(46698,4262,'ninzio_post_quote_author',''),
(46699,4262,'ninzio_post_featured_media','yes'),
(46700,4262,'_yoast_wpseo_content_score','30'),
(46701,4262,'_wp_old_date','2026-08-08'),
(46702,4262,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46703,4262,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46714,4262,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46715,4264,'_wp_attached_file','2024/10/cat.png'),
(46716,4264,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:39;s:4:\"file\";s:15:\"2024/10/cat.png\";s:8:\"filesize\";i:467;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46717,4265,'_wp_attached_file','2024/10/Dog.png'),
(46718,4265,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:32;s:6:\"height\";i:35;s:4:\"file\";s:15:\"2024/10/Dog.png\";s:8:\"filesize\";i:422;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46719,4266,'_wp_attached_file','2024/10/club-type.png'),
(46720,4266,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:225;s:6:\"height\";i:656;s:4:\"file\";s:21:\"2024/10/club-type.png\";s:8:\"filesize\";i:16907;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"club-type-103x300.png\";s:5:\"width\";i:103;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15019;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"club-type-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7002;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:21:\"club-type-225x450.png\";s:5:\"width\";i:225;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15473;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:21:\"club-type-225x400.png\";s:5:\"width\";i:225;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14583;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:21:\"club-type-225x650.png\";s:5:\"width\";i:225;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21138;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:21:\"club-type-225x475.png\";s:5:\"width\";i:225;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16024;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:21:\"club-type-225x485.png\";s:5:\"width\";i:225;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16314;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:21:\"club-type-225x333.png\";s:5:\"width\";i:225;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13332;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:21:\"club-type-225x480.png\";s:5:\"width\";i:225;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5222;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:21:\"club-type-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2521;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:21:\"club-type-225x588.png\";s:5:\"width\";i:225;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17546;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:21:\"club-type-225x588.png\";s:5:\"width\";i:225;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17546;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46722,4259,'_wp_old_slug','activ8-commerce-release-notes-08-27-2024-loyalty-points-and-inventory-location-features-and-enhancements-2'),
(46723,4267,'_wp_attached_file','2024/10/Cloudprint.png'),
(46724,4267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1913;s:6:\"height\";i:919;s:4:\"file\";s:22:\"2024/10/Cloudprint.png\";s:8:\"filesize\";i:116863;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Cloudprint-300x144.png\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13491;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Cloudprint-1024x492.png\";s:5:\"width\";i:1024;s:6:\"height\";i:492;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81536;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Cloudprint-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6726;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Cloudprint-768x369.png\";s:5:\"width\";i:768;s:6:\"height\";i:369;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54641;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:22:\"Cloudprint-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30036;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:22:\"Cloudprint-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36682;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:22:\"Cloudprint-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58938;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:22:\"Cloudprint-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54994;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:22:\"Cloudprint-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75914;}s:11:\"tpl11-thumb\";a:5:{s:4:\"file\";s:23:\"Cloudprint-1700x860.png\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157371;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:22:\"Cloudprint-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34519;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:22:\"Cloudprint-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28140;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"Cloudprint-1536x738.png\";s:5:\"width\";i:1536;s:6:\"height\";i:738;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136484;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:22:\"Cloudprint-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44669;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:22:\"Cloudprint-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22899;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:22:\"Cloudprint-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60147;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:23:\"Cloudprint-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102151;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46725,4268,'_wp_attached_file','2024/10/Feed-pics-7.gif'),
(46726,4268,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2024/10/Feed-pics-7.gif\";s:8:\"filesize\";i:1901369;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-7-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:8342;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46748,4259,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46751,4269,'_wp_attached_file','2024/10/image-library-product.png'),
(46752,4269,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:686;s:6:\"height\";i:503;s:4:\"file\";s:33:\"2024/10/image-library-product.png\";s:8:\"filesize\";i:18575;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"image-library-product-300x220.png\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17247;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"image-library-product-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8319;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:33:\"image-library-product-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32814;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:33:\"image-library-product-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41000;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:33:\"image-library-product-666x503.png\";s:5:\"width\";i:666;s:6:\"height\";i:503;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19050;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:33:\"image-library-product-650x503.png\";s:5:\"width\";i:650;s:6:\"height\";i:503;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18880;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:33:\"image-library-product-686x475.png\";s:5:\"width\";i:686;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19525;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:33:\"image-library-product-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37306;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:33:\"image-library-product-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32186;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:33:\"image-library-product-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42604;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:33:\"image-library-product-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25119;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46754,4271,'_edit_lock','1728398596:21'),
(46755,4271,'_edit_last','21'),
(46756,4271,'_yoast_wpseo_primary_category','1'),
(46757,4271,'ninzio_post_audio_mp3',''),
(46758,4271,'ninzio_post_audio_ogg',''),
(46759,4271,'ninzio_post_audio_embed',''),
(46760,4271,'ninzio_post_video_mp4',''),
(46761,4271,'ninzio_post_video_ogv',''),
(46762,4271,'ninzio_post_video_webm',''),
(46763,4271,'ninzio_post_video_embed',''),
(46764,4271,'ninzio_post_video_poster',''),
(46765,4271,'ninzio_post_link_url',''),
(46766,4271,'ninzio_post_image_url',''),
(46767,4271,'ninzio_post_image_description',''),
(46768,4271,'ninzio_post_status_author',''),
(46769,4271,'ninzio_post_quote_author',''),
(46770,4271,'ninzio_post_featured_media','yes'),
(46771,4271,'_yoast_wpseo_content_score','30'),
(46772,4271,'_wp_old_date','2026-08-08'),
(46773,4271,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46774,4271,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46785,4272,'_wp_attached_file','2024/10/Feed-pics-1.png'),
(46786,4272,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2024/10/Feed-pics-1.png\";s:8:\"filesize\";i:131705;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38118;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46787,4271,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46789,4274,'_edit_lock','1729705694:21'),
(46790,4274,'_edit_last','21'),
(46791,4274,'_yoast_wpseo_primary_category','1'),
(46792,4274,'ninzio_post_audio_mp3',''),
(46793,4274,'ninzio_post_audio_ogg',''),
(46794,4274,'ninzio_post_audio_embed',''),
(46795,4274,'ninzio_post_video_mp4',''),
(46796,4274,'ninzio_post_video_ogv',''),
(46797,4274,'ninzio_post_video_webm',''),
(46798,4274,'ninzio_post_video_embed',''),
(46799,4274,'ninzio_post_video_poster',''),
(46800,4274,'ninzio_post_link_url',''),
(46801,4274,'ninzio_post_image_url',''),
(46802,4274,'ninzio_post_image_description',''),
(46803,4274,'ninzio_post_status_author',''),
(46804,4274,'ninzio_post_quote_author',''),
(46805,4274,'ninzio_post_featured_media','yes'),
(46806,4274,'_yoast_wpseo_content_score','30'),
(46807,4274,'_wp_old_date','2026-08-08'),
(46808,4274,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46809,4274,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46820,4275,'_wp_attached_file','2024/10/chipper.png'),
(46821,4275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:210;s:6:\"height\";i:210;s:4:\"file\";s:19:\"2024/10/chipper.png\";s:8:\"filesize\";i:12861;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"chipper-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7706;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46824,4274,'_wp_old_slug','activ8-manager-desktop-ecommerce-and-pos-administrative-updates-2'),
(46825,4276,'_edit_lock','1730920045:21'),
(46826,4276,'_edit_last','21'),
(46827,4276,'_yoast_wpseo_primary_category','1'),
(46828,4276,'ninzio_post_audio_mp3',''),
(46829,4276,'ninzio_post_audio_ogg',''),
(46830,4276,'ninzio_post_audio_embed',''),
(46831,4276,'ninzio_post_video_mp4',''),
(46832,4276,'ninzio_post_video_ogv',''),
(46833,4276,'ninzio_post_video_webm',''),
(46834,4276,'ninzio_post_video_embed',''),
(46835,4276,'ninzio_post_video_poster',''),
(46836,4276,'ninzio_post_link_url',''),
(46837,4276,'ninzio_post_image_url',''),
(46838,4276,'ninzio_post_image_description',''),
(46839,4276,'ninzio_post_status_author',''),
(46840,4276,'ninzio_post_quote_author',''),
(46841,4276,'ninzio_post_featured_media','yes'),
(46842,4276,'_yoast_wpseo_content_score','90'),
(46843,4276,'_wp_old_date','2026-08-08'),
(46844,4276,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46845,4276,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46846,4276,'_wp_old_slug','activ8-manager-desktop-ecommerce-and-pos-administrative-updates-2'),
(46856,4277,'_wp_attached_file','2024/11/where.gif'),
(46857,4277,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:17:\"2024/11/where.gif\";s:8:\"filesize\";i:6325487;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"where-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:18068;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46858,4279,'_wp_attached_file','2024/11/videos.png'),
(46859,4279,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:707;s:6:\"height\";i:132;s:4:\"file\";s:18:\"2024/11/videos.png\";s:8:\"filesize\";i:6223;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"videos-300x56.png\";s:5:\"width\";i:300;s:6:\"height\";i:56;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3615;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"videos-150x132.png\";s:5:\"width\";i:150;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1285;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:18:\"videos-400x132.png\";s:5:\"width\";i:400;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5687;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:18:\"videos-610x132.png\";s:5:\"width\";i:610;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7155;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:18:\"videos-666x132.png\";s:5:\"width\";i:666;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7400;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:18:\"videos-650x132.png\";s:5:\"width\";i:650;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7370;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:18:\"videos-450x132.png\";s:5:\"width\";i:450;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6133;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:18:\"videos-500x132.png\";s:5:\"width\";i:500;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6445;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:18:\"videos-600x132.png\";s:5:\"width\";i:600;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7107;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:18:\"videos-384x132.png\";s:5:\"width\";i:384;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5598;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46860,4280,'_wp_attached_file','2024/11/videos-1.png'),
(46861,4280,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:874;s:6:\"height\";i:229;s:4:\"file\";s:20:\"2024/11/videos-1.png\";s:8:\"filesize\";i:13445;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"videos-1-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5605;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"videos-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3810;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"videos-1-768x201.png\";s:5:\"width\";i:768;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18410;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:20:\"videos-1-400x229.png\";s:5:\"width\";i:400;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10759;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:20:\"videos-1-610x229.png\";s:5:\"width\";i:610;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13889;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:20:\"videos-1-666x229.png\";s:5:\"width\";i:666;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14476;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:20:\"videos-1-650x229.png\";s:5:\"width\";i:650;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14254;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:20:\"videos-1-450x229.png\";s:5:\"width\";i:450;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11714;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:20:\"videos-1-500x229.png\";s:5:\"width\";i:500;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12381;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:20:\"videos-1-600x229.png\";s:5:\"width\";i:600;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13786;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:20:\"videos-1-384x229.png\";s:5:\"width\";i:384;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10513;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46862,4276,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46866,4281,'_edit_lock','1732221052:21'),
(46867,4281,'_edit_last','21'),
(46868,4281,'_yoast_wpseo_primary_category','1'),
(46869,4281,'ninzio_post_audio_mp3',''),
(46870,4281,'ninzio_post_audio_ogg',''),
(46871,4281,'ninzio_post_audio_embed',''),
(46872,4281,'ninzio_post_video_mp4',''),
(46873,4281,'ninzio_post_video_ogv',''),
(46874,4281,'ninzio_post_video_webm',''),
(46875,4281,'ninzio_post_video_embed',''),
(46876,4281,'ninzio_post_video_poster',''),
(46877,4281,'ninzio_post_link_url',''),
(46878,4281,'ninzio_post_image_url',''),
(46879,4281,'ninzio_post_image_description',''),
(46880,4281,'ninzio_post_status_author',''),
(46881,4281,'ninzio_post_quote_author',''),
(46882,4281,'ninzio_post_featured_media','yes'),
(46883,4281,'_yoast_wpseo_content_score','60'),
(46884,4281,'_wp_old_date','2026-08-08'),
(46885,4281,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46886,4281,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46887,4281,'_wp_old_slug','activ8-commerce-release-notes-08-27-2024-loyalty-points-and-inventory-location-features-and-enhancements-2'),
(46897,4283,'_wp_attached_file','2024/11/customer-merge.png'),
(46898,4283,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:435;s:6:\"height\";i:378;s:4:\"file\";s:26:\"2024/11/customer-merge.png\";s:8:\"filesize\";i:26099;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"customer-merge-300x261.png\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34340;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"customer-merge-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12297;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:26:\"customer-merge-400x378.png\";s:5:\"width\";i:400;s:6:\"height\";i:378;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31676;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:26:\"customer-merge-435x333.png\";s:5:\"width\";i:435;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31240;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:26:\"customer-merge-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42726;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46899,4284,'_wp_attached_file','2024/11/Merge-two-customers-together-to-create-one-record.png'),
(46900,4284,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:937;s:6:\"height\";i:781;s:4:\"file\";s:61:\"2024/11/Merge-two-customers-together-to-create-one-record.png\";s:8:\"filesize\";i:189506;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12035;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-768x640.png\";s:5:\"width\";i:768;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135339;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62312;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73336;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-666x781.png\";s:5:\"width\";i:666;s:6:\"height\";i:781;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136936;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121200;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-937x475.png\";s:5:\"width\";i:937;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104299;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73089;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56410;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93538;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46901;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143892;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:61:\"Merge-two-customers-together-to-create-one-record-937x588.png\";s:5:\"width\";i:937;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151459;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46901,4281,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(46902,4285,'_wp_attached_file','2024/11/Feed-pics.mp4'),
(46903,4285,'_wp_attachment_metadata','a:10:{s:7:\"bitrate\";i:60523;s:8:\"filesize\";i:37875;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:5;s:16:\"length_formatted\";s:4:\"0:05\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:-2082844800;}'),
(46904,4286,'_wp_attached_file','2024/11/Feed-pics-2.png'),
(46905,4286,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2024/11/Feed-pics-2.png\";s:8:\"filesize\";i:170972;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43546;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46908,4287,'_edit_lock','1733781070:21'),
(46909,4287,'_edit_last','21'),
(46910,4287,'_yoast_wpseo_primary_category',''),
(46911,4287,'ninzio_post_audio_mp3',''),
(46912,4287,'ninzio_post_audio_ogg',''),
(46913,4287,'ninzio_post_audio_embed',''),
(46914,4287,'ninzio_post_video_mp4',''),
(46915,4287,'ninzio_post_video_ogv',''),
(46916,4287,'ninzio_post_video_webm',''),
(46917,4287,'ninzio_post_video_embed',''),
(46918,4287,'ninzio_post_video_poster',''),
(46919,4287,'ninzio_post_link_url',''),
(46920,4287,'ninzio_post_image_url',''),
(46921,4287,'ninzio_post_image_description',''),
(46922,4287,'ninzio_post_status_author',''),
(46923,4287,'ninzio_post_quote_author',''),
(46924,4287,'ninzio_post_featured_media','yes'),
(46925,4287,'_yoast_wpseo_content_score','30'),
(46926,4287,'_wp_old_date','2026-08-08'),
(46927,4287,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46928,4287,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46939,4288,'_wp_attached_file','2024/11/2024-features.png'),
(46940,4288,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:25:\"2024/11/2024-features.png\";s:8:\"filesize\";i:85377;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"2024-features-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29983;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(46941,4288,'_wp_attachment_image_alt','announcement'),
(46944,4287,'_wp_old_date','2024-12-02'),
(46977,4291,'_edit_lock','1734738050:21'),
(46978,4291,'_edit_last','21'),
(46979,4291,'_yoast_wpseo_primary_category',''),
(46980,4291,'ninzio_post_audio_mp3',''),
(46981,4291,'ninzio_post_audio_ogg',''),
(46982,4291,'ninzio_post_audio_embed',''),
(46983,4291,'ninzio_post_video_mp4',''),
(46984,4291,'ninzio_post_video_ogv',''),
(46985,4291,'ninzio_post_video_webm',''),
(46986,4291,'ninzio_post_video_embed',''),
(46987,4291,'ninzio_post_video_poster',''),
(46988,4291,'ninzio_post_link_url',''),
(46989,4291,'ninzio_post_image_url',''),
(46990,4291,'ninzio_post_image_description',''),
(46991,4291,'ninzio_post_status_author',''),
(46992,4291,'ninzio_post_quote_author',''),
(46993,4291,'ninzio_post_featured_media','yes'),
(46994,4291,'_yoast_wpseo_content_score','30'),
(46995,4291,'_wp_old_date','2026-08-08'),
(46996,4291,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(46997,4291,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(46998,4291,'_wp_old_date','2024-12-02'),
(47009,4293,'_wp_attached_file','2024/12/Feed-pics-8.gif'),
(47010,4293,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2024/12/Feed-pics-8.gif\";s:8:\"filesize\";i:15239122;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-8-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:16910;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47012,4294,'_wp_attached_file','2024/12/open-tab.png'),
(47013,4294,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1917;s:6:\"height\";i:1079;s:4:\"file\";s:20:\"2024/12/open-tab.png\";s:8:\"filesize\";i:148169;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"open-tab-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17941;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"open-tab-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"open-tab-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9470;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"open-tab-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71302;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:20:\"open-tab-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36863;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:20:\"open-tab-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49131;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:20:\"open-tab-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73809;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:20:\"open-tab-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72184;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:20:\"open-tab-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74951;}s:11:\"tpl11-thumb\";a:5:{s:4:\"file\";s:21:\"open-tab-1700x860.png\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167085;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:20:\"open-tab-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43062;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:20:\"open-tab-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36678;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"open-tab-1536x865.png\";s:5:\"width\";i:1536;s:6:\"height\";i:865;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:179011;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:20:\"open-tab-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54746;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:20:\"open-tab-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28174;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:20:\"open-tab-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81959;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:21:\"open-tab-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99311;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47014,4295,'_wp_attached_file','2024/12/open-tab-1.png'),
(47015,4295,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:5991;s:6:\"height\";i:3372;s:4:\"file\";s:22:\"2024/12/open-tab-1.png\";s:8:\"filesize\";i:1322167;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"open-tab-1-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17813;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"open-tab-1-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110055;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"open-tab-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9438;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"open-tab-1-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72903;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:22:\"open-tab-1-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37443;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:22:\"open-tab-1-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50031;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:22:\"open-tab-1-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79269;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:22:\"open-tab-1-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76132;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:22:\"open-tab-1-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78645;}s:11:\"tpl11-thumb\";a:5:{s:4:\"file\";s:23:\"open-tab-1-1700x860.png\";s:5:\"width\";i:1700;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:188145;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:22:\"open-tab-1-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44140;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:22:\"open-tab-1-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36822;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"open-tab-1-1536x865.png\";s:5:\"width\";i:1536;s:6:\"height\";i:865;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:200057;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"open-tab-1-2048x1153.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1153;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:301994;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:22:\"open-tab-1-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55941;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:22:\"open-tab-1-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28635;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:22:\"open-tab-1-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86124;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:23:\"open-tab-1-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105573;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47016,4296,'_wp_attached_file','2024/12/Table-seating.png'),
(47017,4296,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1538;s:6:\"height\";i:838;s:4:\"file\";s:25:\"2024/12/Table-seating.png\";s:8:\"filesize\";i:135707;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Table-seating-300x163.png\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21273;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"Table-seating-1024x558.png\";s:5:\"width\";i:1024;s:6:\"height\";i:558;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145805;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Table-seating-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12502;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Table-seating-768x418.png\";s:5:\"width\";i:768;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96178;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:25:\"Table-seating-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55407;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:25:\"Table-seating-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:70240;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:25:\"Table-seating-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113558;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:25:\"Table-seating-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106260;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:25:\"Table-seating-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126046;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:25:\"Table-seating-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66550;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:25:\"Table-seating-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51622;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"Table-seating-1536x837.png\";s:5:\"width\";i:1536;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:247877;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:25:\"Table-seating-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75144;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:25:\"Table-seating-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38658;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:25:\"Table-seating-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118541;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:26:\"Table-seating-1200x588.png\";s:5:\"width\";i:1200;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159234;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47025,4297,'_edit_lock','1735666052:21'),
(47026,4297,'_edit_last','21'),
(47027,4297,'_yoast_wpseo_primary_category',''),
(47028,4297,'ninzio_post_audio_mp3',''),
(47029,4297,'ninzio_post_audio_ogg',''),
(47030,4297,'ninzio_post_audio_embed',''),
(47031,4297,'ninzio_post_video_mp4',''),
(47032,4297,'ninzio_post_video_ogv',''),
(47033,4297,'ninzio_post_video_webm',''),
(47034,4297,'ninzio_post_video_embed',''),
(47035,4297,'ninzio_post_video_poster',''),
(47036,4297,'ninzio_post_link_url',''),
(47037,4297,'ninzio_post_image_url',''),
(47038,4297,'ninzio_post_image_description',''),
(47039,4297,'ninzio_post_status_author',''),
(47040,4297,'ninzio_post_quote_author',''),
(47041,4297,'ninzio_post_featured_media','yes'),
(47042,4297,'_yoast_wpseo_content_score','60'),
(47043,4297,'_wp_old_date','2026-08-08'),
(47044,4297,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47045,4297,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47046,4297,'_wp_old_date','2024-12-02'),
(47056,4298,'_wp_attached_file','2024/12/profile.png'),
(47057,4298,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:19:\"2024/12/profile.png\";s:8:\"filesize\";i:108733;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"profile-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31655;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47058,4297,'_oembed_a7f50574a0d1baadb984634e9b3ac462','<blockquote class=\"wp-embedded-content\" data-secret=\"f7xMHD3d9I\"><a href=\"https://activ8commerce.com/activ8-commerce-client-updates/\">Activ8 Commerce Client Updates</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Activ8 Commerce Client Updates&#8221; &#8212; Activ8Commerce\" src=\"https://activ8commerce.com/activ8-commerce-client-updates/embed/#?secret=8CiUBMSZTl#?secret=f7xMHD3d9I\" data-secret=\"f7xMHD3d9I\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),
(47059,4297,'_oembed_time_a7f50574a0d1baadb984634e9b3ac462','1735666189'),
(47060,4297,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47062,4300,'_edit_lock','1734993028:21'),
(47063,4300,'_edit_last','21'),
(47064,4300,'_yoast_wpseo_primary_category',''),
(47065,4300,'ninzio_post_audio_mp3',''),
(47066,4300,'ninzio_post_audio_ogg',''),
(47067,4300,'ninzio_post_audio_embed',''),
(47068,4300,'ninzio_post_video_mp4',''),
(47069,4300,'ninzio_post_video_ogv',''),
(47070,4300,'ninzio_post_video_webm',''),
(47071,4300,'ninzio_post_video_embed',''),
(47072,4300,'ninzio_post_video_poster',''),
(47073,4300,'ninzio_post_link_url',''),
(47074,4300,'ninzio_post_image_url',''),
(47075,4300,'ninzio_post_image_description',''),
(47076,4300,'ninzio_post_status_author',''),
(47077,4300,'ninzio_post_quote_author',''),
(47078,4300,'ninzio_post_featured_media','yes'),
(47079,4300,'_yoast_wpseo_content_score','90'),
(47080,4300,'_wp_old_date','2026-08-08'),
(47081,4300,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47082,4300,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47083,4300,'_wp_old_date','2024-12-02'),
(47093,4302,'_wp_attached_file','2024/12/Feed-pics.gif'),
(47094,4302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2024/12/Feed-pics.gif\";s:8:\"filesize\";i:1688127;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Feed-pics-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:18016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47095,4300,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47099,4303,'_edit_lock','1737566233:21'),
(47100,4303,'_edit_last','21'),
(47101,4303,'_yoast_wpseo_primary_category',''),
(47102,4303,'ninzio_post_audio_mp3',''),
(47103,4303,'ninzio_post_audio_ogg',''),
(47104,4303,'ninzio_post_audio_embed',''),
(47105,4303,'ninzio_post_video_mp4',''),
(47106,4303,'ninzio_post_video_ogv',''),
(47107,4303,'ninzio_post_video_webm',''),
(47108,4303,'ninzio_post_video_embed',''),
(47109,4303,'ninzio_post_video_poster',''),
(47110,4303,'ninzio_post_link_url',''),
(47111,4303,'ninzio_post_image_url',''),
(47112,4303,'ninzio_post_image_description',''),
(47113,4303,'ninzio_post_status_author',''),
(47114,4303,'ninzio_post_quote_author',''),
(47115,4303,'ninzio_post_featured_media','yes'),
(47116,4303,'_yoast_wpseo_content_score','90'),
(47117,4303,'_wp_old_date','2026-08-08'),
(47118,4303,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47119,4303,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47120,4303,'_wp_old_date','2024-12-02'),
(47130,4304,'_wp_attached_file','2024/12/Feed-pics.png'),
(47131,4304,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2024/12/Feed-pics.png\";s:8:\"filesize\";i:151054;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Feed-pics-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41231;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47138,4306,'_edit_lock','1740163833:21'),
(47139,4306,'_edit_last','21'),
(47140,4306,'_yoast_wpseo_primary_category',''),
(47141,4306,'ninzio_post_audio_mp3',''),
(47142,4306,'ninzio_post_audio_ogg',''),
(47143,4306,'ninzio_post_audio_embed',''),
(47144,4306,'ninzio_post_video_mp4',''),
(47145,4306,'ninzio_post_video_ogv',''),
(47146,4306,'ninzio_post_video_webm',''),
(47147,4306,'ninzio_post_video_embed',''),
(47148,4306,'ninzio_post_video_poster',''),
(47149,4306,'ninzio_post_link_url',''),
(47150,4306,'ninzio_post_image_url',''),
(47151,4306,'ninzio_post_image_description',''),
(47152,4306,'ninzio_post_status_author',''),
(47153,4306,'ninzio_post_quote_author',''),
(47154,4306,'ninzio_post_featured_media','yes'),
(47155,4306,'_yoast_wpseo_content_score','60'),
(47156,4306,'_wp_old_date','2026-08-08'),
(47157,4306,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47158,4306,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47159,4306,'_wp_old_date','2024-12-02'),
(47170,4308,'_wp_attached_file','2025/02/Webinar2-2025.png'),
(47171,4308,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:620;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2025/02/Webinar2-2025.png\";s:8:\"filesize\";i:215037;s:5:\"sizes\";a:8:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Webinar2-2025-300x121.png\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44764;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Webinar2-2025-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28680;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:25:\"Webinar2-2025-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149148;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:25:\"Webinar2-2025-610x250.png\";s:5:\"width\";i:610;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:212533;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:25:\"Webinar2-2025-450x250.png\";s:5:\"width\";i:450;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166669;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:25:\"Webinar2-2025-500x250.png\";s:5:\"width\";i:500;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182915;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:25:\"Webinar2-2025-600x250.png\";s:5:\"width\";i:600;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:209961;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:25:\"Webinar2-2025-384x250.png\";s:5:\"width\";i:384;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143178;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47172,4309,'_wp_attached_file','2025/02/Feed-pics.png'),
(47173,4309,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2025/02/Feed-pics.png\";s:8:\"filesize\";i:115080;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Feed-pics-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27738;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47175,4310,'_edit_lock','1738877834:21'),
(47176,4310,'_edit_last','21'),
(47177,4310,'_yoast_wpseo_primary_category',''),
(47178,4310,'ninzio_post_audio_mp3',''),
(47179,4310,'ninzio_post_audio_ogg',''),
(47180,4310,'ninzio_post_audio_embed',''),
(47181,4310,'ninzio_post_video_mp4',''),
(47182,4310,'ninzio_post_video_ogv',''),
(47183,4310,'ninzio_post_video_webm',''),
(47184,4310,'ninzio_post_video_embed',''),
(47185,4310,'ninzio_post_video_poster',''),
(47186,4310,'ninzio_post_link_url',''),
(47187,4310,'ninzio_post_image_url',''),
(47188,4310,'ninzio_post_image_description',''),
(47189,4310,'ninzio_post_status_author',''),
(47190,4310,'ninzio_post_quote_author',''),
(47191,4310,'ninzio_post_featured_media','yes'),
(47192,4310,'_yoast_wpseo_content_score','60'),
(47193,4310,'_wp_old_date','2026-08-08'),
(47194,4310,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47195,4310,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47196,4310,'_wp_old_date','2024-12-02'),
(47206,4310,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47242,4313,'_edit_lock','1743275695:21'),
(47243,4313,'_edit_last','21'),
(47244,4313,'_yoast_wpseo_primary_category',''),
(47245,4313,'ninzio_post_audio_mp3',''),
(47246,4313,'ninzio_post_audio_ogg',''),
(47247,4313,'ninzio_post_audio_embed',''),
(47248,4313,'ninzio_post_video_mp4',''),
(47249,4313,'ninzio_post_video_ogv',''),
(47250,4313,'ninzio_post_video_webm',''),
(47251,4313,'ninzio_post_video_embed',''),
(47252,4313,'ninzio_post_video_poster',''),
(47253,4313,'ninzio_post_link_url',''),
(47254,4313,'ninzio_post_image_url',''),
(47255,4313,'ninzio_post_image_description',''),
(47256,4313,'ninzio_post_status_author',''),
(47257,4313,'ninzio_post_quote_author',''),
(47258,4313,'ninzio_post_featured_media','yes'),
(47259,4313,'_yoast_wpseo_content_score','60'),
(47260,4313,'_wp_old_date','2026-08-08'),
(47261,4313,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47262,4313,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47263,4313,'_wp_old_date','2024-12-02'),
(47274,4313,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47275,4314,'_edit_lock','1743276782:21'),
(47276,4314,'_edit_last','21'),
(47277,4314,'_yoast_wpseo_primary_category',''),
(47278,4314,'ninzio_post_audio_mp3',''),
(47279,4314,'ninzio_post_audio_ogg',''),
(47280,4314,'ninzio_post_audio_embed',''),
(47281,4314,'ninzio_post_video_mp4',''),
(47282,4314,'ninzio_post_video_ogv',''),
(47283,4314,'ninzio_post_video_webm',''),
(47284,4314,'ninzio_post_video_embed',''),
(47285,4314,'ninzio_post_video_poster',''),
(47286,4314,'ninzio_post_link_url',''),
(47287,4314,'ninzio_post_image_url',''),
(47288,4314,'ninzio_post_image_description',''),
(47289,4314,'ninzio_post_status_author',''),
(47290,4314,'ninzio_post_quote_author',''),
(47291,4314,'ninzio_post_featured_media','yes'),
(47292,4314,'_yoast_wpseo_content_score','60'),
(47293,4314,'_wp_old_date','2026-08-08'),
(47294,4314,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47295,4314,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47296,4314,'_wp_old_date','2024-12-02'),
(47306,4315,'_wp_attached_file','2025/03/Feed-pics.png'),
(47307,4315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2025/03/Feed-pics.png\";s:8:\"filesize\";i:76268;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Feed-pics-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21692;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47312,4317,'_edit_lock','1755118790:21'),
(47313,4317,'_edit_last','21'),
(47314,4317,'_yoast_wpseo_primary_category',''),
(47315,4317,'ninzio_post_audio_mp3',''),
(47316,4317,'ninzio_post_audio_ogg',''),
(47317,4317,'ninzio_post_audio_embed',''),
(47318,4317,'ninzio_post_video_mp4',''),
(47319,4317,'ninzio_post_video_ogv',''),
(47320,4317,'ninzio_post_video_webm',''),
(47321,4317,'ninzio_post_video_embed',''),
(47322,4317,'ninzio_post_video_poster',''),
(47323,4317,'ninzio_post_link_url',''),
(47324,4317,'ninzio_post_image_url',''),
(47325,4317,'ninzio_post_image_description',''),
(47326,4317,'ninzio_post_status_author',''),
(47327,4317,'ninzio_post_quote_author',''),
(47328,4317,'ninzio_post_featured_media','yes'),
(47329,4317,'_yoast_wpseo_content_score','60'),
(47330,4317,'_wp_old_date','2026-08-08'),
(47331,4317,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47332,4317,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47333,4317,'_wp_old_date','2024-12-02'),
(47345,4319,'_edit_lock','1752170088:21'),
(47346,4319,'_edit_last','21'),
(47347,4319,'_yoast_wpseo_primary_category',''),
(47348,4319,'ninzio_post_audio_mp3',''),
(47349,4319,'ninzio_post_audio_ogg',''),
(47350,4319,'ninzio_post_audio_embed',''),
(47351,4319,'ninzio_post_video_mp4',''),
(47352,4319,'ninzio_post_video_ogv',''),
(47353,4319,'ninzio_post_video_webm',''),
(47354,4319,'ninzio_post_video_embed',''),
(47355,4319,'ninzio_post_video_poster',''),
(47356,4319,'ninzio_post_link_url',''),
(47357,4319,'ninzio_post_image_url',''),
(47358,4319,'ninzio_post_image_description',''),
(47359,4319,'ninzio_post_status_author',''),
(47360,4319,'ninzio_post_quote_author',''),
(47361,4319,'ninzio_post_featured_media','yes'),
(47362,4319,'_yoast_wpseo_content_score','90'),
(47363,4319,'_wp_old_date','2026-08-08'),
(47364,4319,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47365,4319,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47381,4317,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47383,4321,'_edit_lock','1756828024:21'),
(47384,4321,'_edit_last','21'),
(47385,4321,'_yoast_wpseo_primary_category',''),
(47386,4321,'ninzio_post_audio_mp3',''),
(47387,4321,'ninzio_post_audio_ogg',''),
(47388,4321,'ninzio_post_audio_embed',''),
(47389,4321,'ninzio_post_video_mp4',''),
(47390,4321,'ninzio_post_video_ogv',''),
(47391,4321,'ninzio_post_video_webm',''),
(47392,4321,'ninzio_post_video_embed',''),
(47393,4321,'ninzio_post_video_poster',''),
(47394,4321,'ninzio_post_link_url',''),
(47395,4321,'ninzio_post_image_url',''),
(47396,4321,'ninzio_post_image_description',''),
(47397,4321,'ninzio_post_status_author',''),
(47398,4321,'ninzio_post_quote_author',''),
(47399,4321,'ninzio_post_featured_media','yes'),
(47400,4321,'_yoast_wpseo_content_score','90'),
(47401,4321,'_wp_old_date','2026-08-08'),
(47402,4321,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47403,4321,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47404,4321,'_wp_old_date','2024-12-02'),
(47414,4323,'_wp_attached_file','2025/04/Feed-pics.gif'),
(47415,4323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2025/04/Feed-pics.gif\";s:8:\"filesize\";i:2371407;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Feed-pics-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:16676;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47418,4324,'_edit_lock','1746639221:21'),
(47419,4324,'_edit_last','21'),
(47420,4324,'_yoast_wpseo_primary_category',''),
(47421,4324,'ninzio_post_audio_mp3',''),
(47422,4324,'ninzio_post_audio_ogg',''),
(47423,4324,'ninzio_post_audio_embed',''),
(47424,4324,'ninzio_post_video_mp4',''),
(47425,4324,'ninzio_post_video_ogv',''),
(47426,4324,'ninzio_post_video_webm',''),
(47427,4324,'ninzio_post_video_embed',''),
(47428,4324,'ninzio_post_video_poster',''),
(47429,4324,'ninzio_post_link_url',''),
(47430,4324,'ninzio_post_image_url',''),
(47431,4324,'ninzio_post_image_description',''),
(47432,4324,'ninzio_post_status_author',''),
(47433,4324,'ninzio_post_quote_author',''),
(47434,4324,'ninzio_post_featured_media','yes'),
(47435,4324,'_yoast_wpseo_content_score','90'),
(47436,4324,'_wp_old_date','2026-08-08'),
(47437,4324,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47438,4324,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47439,4324,'_wp_old_date','2024-12-02'),
(47449,4325,'_wp_attached_file','2025/04/Feed-pics-1.png'),
(47450,4325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2025/04/Feed-pics-1.png\";s:8:\"filesize\";i:79481;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18524;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47453,4327,'_edit_lock','1746640323:21'),
(47454,4327,'_edit_last','21'),
(47455,4327,'_yoast_wpseo_primary_category',''),
(47456,4327,'ninzio_post_audio_mp3',''),
(47457,4327,'ninzio_post_audio_ogg',''),
(47458,4327,'ninzio_post_audio_embed',''),
(47459,4327,'ninzio_post_video_mp4',''),
(47460,4327,'ninzio_post_video_ogv',''),
(47461,4327,'ninzio_post_video_webm',''),
(47462,4327,'ninzio_post_video_embed',''),
(47463,4327,'ninzio_post_video_poster',''),
(47464,4327,'ninzio_post_link_url',''),
(47465,4327,'ninzio_post_image_url',''),
(47466,4327,'ninzio_post_image_description',''),
(47467,4327,'ninzio_post_status_author',''),
(47468,4327,'ninzio_post_quote_author',''),
(47469,4327,'ninzio_post_featured_media','yes'),
(47470,4327,'_yoast_wpseo_content_score','60'),
(47471,4327,'_wp_old_date','2026-08-08'),
(47472,4327,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47473,4327,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47474,4327,'_wp_old_date','2024-12-02'),
(47484,4327,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47486,4329,'_edit_lock','1748370978:21'),
(47487,4329,'_edit_last','21'),
(47488,4329,'_yoast_wpseo_primary_category',''),
(47489,4329,'ninzio_post_audio_mp3',''),
(47490,4329,'ninzio_post_audio_ogg',''),
(47491,4329,'ninzio_post_audio_embed',''),
(47492,4329,'ninzio_post_video_mp4',''),
(47493,4329,'ninzio_post_video_ogv',''),
(47494,4329,'ninzio_post_video_webm',''),
(47495,4329,'ninzio_post_video_embed',''),
(47496,4329,'ninzio_post_video_poster',''),
(47497,4329,'ninzio_post_link_url',''),
(47498,4329,'ninzio_post_image_url',''),
(47499,4329,'ninzio_post_image_description',''),
(47500,4329,'ninzio_post_status_author',''),
(47501,4329,'ninzio_post_quote_author',''),
(47502,4329,'ninzio_post_featured_media','yes'),
(47503,4329,'_yoast_wpseo_content_score','60'),
(47504,4329,'_wp_old_date','2026-08-08'),
(47505,4329,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47506,4329,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47517,4330,'_wp_attached_file','2025/05/Feed-pics.png'),
(47518,4330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2025/05/Feed-pics.png\";s:8:\"filesize\";i:64649;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Feed-pics-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19821;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47520,4329,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47521,4332,'_edit_lock','1748451628:21'),
(47522,4332,'_edit_last','21'),
(47523,4332,'_yoast_wpseo_primary_category',''),
(47524,4332,'ninzio_post_audio_mp3',''),
(47525,4332,'ninzio_post_audio_ogg',''),
(47526,4332,'ninzio_post_audio_embed',''),
(47527,4332,'ninzio_post_video_mp4',''),
(47528,4332,'ninzio_post_video_ogv',''),
(47529,4332,'ninzio_post_video_webm',''),
(47530,4332,'ninzio_post_video_embed',''),
(47531,4332,'ninzio_post_video_poster',''),
(47532,4332,'ninzio_post_link_url',''),
(47533,4332,'ninzio_post_image_url',''),
(47534,4332,'ninzio_post_image_description',''),
(47535,4332,'ninzio_post_status_author',''),
(47536,4332,'ninzio_post_quote_author',''),
(47537,4332,'ninzio_post_featured_media','yes'),
(47538,4332,'_yoast_wpseo_content_score','60'),
(47539,4332,'_wp_old_date','2026-08-08'),
(47540,4332,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47541,4332,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47542,4332,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47552,4333,'_wp_attached_file','2025/05/Feed-pics-1.png'),
(47553,4333,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2025/05/Feed-pics-1.png\";s:8:\"filesize\";i:63329;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19555;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47554,4334,'_edit_lock','1748544070:21'),
(47555,4334,'_edit_last','21'),
(47556,4334,'_yoast_wpseo_primary_category',''),
(47557,4334,'ninzio_post_audio_mp3',''),
(47558,4334,'ninzio_post_audio_ogg',''),
(47559,4334,'ninzio_post_audio_embed',''),
(47560,4334,'ninzio_post_video_mp4',''),
(47561,4334,'ninzio_post_video_ogv',''),
(47562,4334,'ninzio_post_video_webm',''),
(47563,4334,'ninzio_post_video_embed',''),
(47564,4334,'ninzio_post_video_poster',''),
(47565,4334,'ninzio_post_link_url',''),
(47566,4334,'ninzio_post_image_url',''),
(47567,4334,'ninzio_post_image_description',''),
(47568,4334,'ninzio_post_status_author',''),
(47569,4334,'ninzio_post_quote_author',''),
(47570,4334,'ninzio_post_featured_media','yes'),
(47571,4334,'_yoast_wpseo_content_score','90'),
(47572,4334,'_wp_old_date','2026-08-08'),
(47573,4334,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47574,4334,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47585,4335,'_wp_attached_file','2025/05/Feed-pics.gif'),
(47586,4335,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2025/05/Feed-pics.gif\";s:8:\"filesize\";i:8641407;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Feed-pics-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:13860;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47587,4334,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47589,4337,'_edit_lock','1749575473:21'),
(47590,4337,'_edit_last','21'),
(47591,4337,'_yoast_wpseo_primary_category',''),
(47592,4337,'ninzio_post_audio_mp3',''),
(47593,4337,'ninzio_post_audio_ogg',''),
(47594,4337,'ninzio_post_audio_embed',''),
(47595,4337,'ninzio_post_video_mp4',''),
(47596,4337,'ninzio_post_video_ogv',''),
(47597,4337,'ninzio_post_video_webm',''),
(47598,4337,'ninzio_post_video_embed',''),
(47599,4337,'ninzio_post_video_poster',''),
(47600,4337,'ninzio_post_link_url',''),
(47601,4337,'ninzio_post_image_url',''),
(47602,4337,'ninzio_post_image_description',''),
(47603,4337,'ninzio_post_status_author',''),
(47604,4337,'ninzio_post_quote_author',''),
(47605,4337,'ninzio_post_featured_media','yes'),
(47606,4337,'_yoast_wpseo_content_score','60'),
(47607,4337,'_wp_old_date','2026-08-08'),
(47608,4337,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47609,4337,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47610,4337,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47620,4338,'_wp_attached_file','2025/06/Feed-pics.zip'),
(47621,4338,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:2835290;}'),
(47622,4339,'_wp_attached_file','2025/06/26.png'),
(47623,4339,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:14:\"2025/06/26.png\";s:8:\"filesize\";i:127734;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"26-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38201;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47626,4319,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47627,4341,'_edit_lock','1756828563:21'),
(47628,4341,'_edit_last','21'),
(47629,4341,'_yoast_wpseo_primary_category',''),
(47630,4341,'ninzio_post_audio_mp3',''),
(47631,4341,'ninzio_post_audio_ogg',''),
(47632,4341,'ninzio_post_audio_embed',''),
(47633,4341,'ninzio_post_video_mp4',''),
(47634,4341,'ninzio_post_video_ogv',''),
(47635,4341,'ninzio_post_video_webm',''),
(47636,4341,'ninzio_post_video_embed',''),
(47637,4341,'ninzio_post_video_poster',''),
(47638,4341,'ninzio_post_link_url',''),
(47639,4341,'ninzio_post_image_url',''),
(47640,4341,'ninzio_post_image_description',''),
(47641,4341,'ninzio_post_status_author',''),
(47642,4341,'ninzio_post_quote_author',''),
(47643,4341,'ninzio_post_featured_media','yes'),
(47644,4341,'_yoast_wpseo_content_score','90'),
(47645,4341,'_wp_old_date','2026-08-08'),
(47646,4341,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47647,4341,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47648,4341,'_wp_old_date','2024-12-02'),
(47658,4342,'_wp_attached_file','2025/08/Feed-pics.gif'),
(47659,4342,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2025/08/Feed-pics.gif\";s:8:\"filesize\";i:2780494;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Feed-pics-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:19134;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47660,4342,'_wp_attachment_image_alt','Toasting to referrals'),
(47662,4343,'_edit_lock','1755118862:21'),
(47663,4343,'_edit_last','21'),
(47664,4343,'_yoast_wpseo_primary_category',''),
(47665,4343,'ninzio_post_audio_mp3',''),
(47666,4343,'ninzio_post_audio_ogg',''),
(47667,4343,'ninzio_post_audio_embed',''),
(47668,4343,'ninzio_post_video_mp4',''),
(47669,4343,'ninzio_post_video_ogv',''),
(47670,4343,'ninzio_post_video_webm',''),
(47671,4343,'ninzio_post_video_embed',''),
(47672,4343,'ninzio_post_video_poster',''),
(47673,4343,'ninzio_post_link_url',''),
(47674,4343,'ninzio_post_image_url',''),
(47675,4343,'ninzio_post_image_description',''),
(47676,4343,'ninzio_post_status_author',''),
(47677,4343,'ninzio_post_quote_author',''),
(47678,4343,'ninzio_post_featured_media','yes'),
(47679,4343,'_yoast_wpseo_content_score','90'),
(47680,4343,'_wp_old_date','2026-08-08'),
(47681,4343,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47682,4343,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47693,4343,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47694,4315,'_wp_attachment_image_alt','stress-free club releases'),
(47697,4345,'_edit_lock','1758642372:21'),
(47698,4345,'_edit_last','21'),
(47699,4345,'_yoast_wpseo_primary_category',''),
(47700,4345,'ninzio_post_audio_mp3',''),
(47701,4345,'ninzio_post_audio_ogg',''),
(47702,4345,'ninzio_post_audio_embed',''),
(47703,4345,'ninzio_post_video_mp4',''),
(47704,4345,'ninzio_post_video_ogv',''),
(47705,4345,'ninzio_post_video_webm',''),
(47706,4345,'ninzio_post_video_embed',''),
(47707,4345,'ninzio_post_video_poster',''),
(47708,4345,'ninzio_post_link_url',''),
(47709,4345,'ninzio_post_image_url',''),
(47710,4345,'ninzio_post_image_description',''),
(47711,4345,'ninzio_post_status_author',''),
(47712,4345,'ninzio_post_quote_author',''),
(47713,4345,'ninzio_post_featured_media','yes'),
(47714,4345,'_yoast_wpseo_content_score','30'),
(47715,4345,'_wp_old_date','2026-08-08'),
(47716,4345,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47717,4345,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47728,4347,'_wp_attached_file','2025/08/SHopify-feed.png'),
(47729,4347,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2025/08/SHopify-feed.png\";s:8:\"filesize\";i:131727;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"SHopify-feed-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37629;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47731,4348,'_edit_lock','1757094167:21'),
(47732,4348,'_edit_last','21'),
(47733,4348,'_yoast_wpseo_primary_category',''),
(47734,4348,'ninzio_post_audio_mp3',''),
(47735,4348,'ninzio_post_audio_ogg',''),
(47736,4348,'ninzio_post_audio_embed',''),
(47737,4348,'ninzio_post_video_mp4',''),
(47738,4348,'ninzio_post_video_ogv',''),
(47739,4348,'ninzio_post_video_webm',''),
(47740,4348,'ninzio_post_video_embed',''),
(47741,4348,'ninzio_post_video_poster',''),
(47742,4348,'ninzio_post_link_url',''),
(47743,4348,'ninzio_post_image_url',''),
(47744,4348,'ninzio_post_image_description',''),
(47745,4348,'ninzio_post_status_author',''),
(47746,4348,'ninzio_post_quote_author',''),
(47747,4348,'ninzio_post_featured_media','yes'),
(47748,4348,'_yoast_wpseo_content_score','60'),
(47749,4348,'_wp_old_date','2026-08-08'),
(47750,4348,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47751,4348,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47752,4348,'_wp_old_date','2024-12-02'),
(47763,4350,'_wp_attached_file','2025/08/webinar-news.png'),
(47764,4350,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2025/08/webinar-news.png\";s:8:\"filesize\";i:86815;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"webinar-news-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23828;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47765,4350,'_wp_attachment_image_alt','webinar news'),
(47768,4351,'_edit_lock','1757026596:21'),
(47769,4351,'_edit_last','21'),
(47770,4351,'_yoast_wpseo_primary_category','175'),
(47771,4351,'ninzio_post_audio_mp3',''),
(47772,4351,'ninzio_post_audio_ogg',''),
(47773,4351,'ninzio_post_audio_embed',''),
(47774,4351,'ninzio_post_video_mp4',''),
(47775,4351,'ninzio_post_video_ogv',''),
(47776,4351,'ninzio_post_video_webm',''),
(47777,4351,'ninzio_post_video_embed',''),
(47778,4351,'ninzio_post_video_poster',''),
(47779,4351,'ninzio_post_link_url',''),
(47780,4351,'ninzio_post_image_url',''),
(47781,4351,'ninzio_post_image_description',''),
(47782,4351,'ninzio_post_status_author',''),
(47783,4351,'ninzio_post_quote_author',''),
(47784,4351,'ninzio_post_featured_media','yes'),
(47785,4351,'_yoast_wpseo_content_score','90'),
(47786,4351,'_wp_old_date','2026-08-08'),
(47787,4351,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47788,4351,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47789,4351,'_wp_old_date','2024-12-02'),
(47801,4321,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47802,4353,'_edit_lock','1757026766:21'),
(47803,4353,'_edit_last','21'),
(47804,4353,'_yoast_wpseo_primary_category',''),
(47805,4353,'ninzio_post_audio_mp3',''),
(47806,4353,'ninzio_post_audio_ogg',''),
(47807,4353,'ninzio_post_audio_embed',''),
(47808,4353,'ninzio_post_video_mp4',''),
(47809,4353,'ninzio_post_video_ogv',''),
(47810,4353,'ninzio_post_video_webm',''),
(47811,4353,'ninzio_post_video_embed',''),
(47812,4353,'ninzio_post_video_poster',''),
(47813,4353,'ninzio_post_link_url',''),
(47814,4353,'ninzio_post_image_url',''),
(47815,4353,'ninzio_post_image_description',''),
(47816,4353,'ninzio_post_status_author',''),
(47817,4353,'ninzio_post_quote_author',''),
(47818,4353,'ninzio_post_featured_media','yes'),
(47819,4353,'_yoast_wpseo_content_score','90'),
(47820,4353,'_wp_old_date','2026-08-08'),
(47821,4353,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47822,4353,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47823,4353,'_wp_old_date','2024-12-02'),
(47833,4353,'_oembed_5bf9eb52f3a4dc0174ea792c6030b510','<iframe title=\"Activ8 News + Club Sales Tips Webinar Recording\" src=\"https://player.vimeo.com/video/1115988196?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\"></iframe>'),
(47834,4353,'_oembed_time_5bf9eb52f3a4dc0174ea792c6030b510','1757026563'),
(47836,4351,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47838,4353,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47840,4354,'_edit_lock','1758642769:21'),
(47841,4354,'_edit_last','21'),
(47842,4354,'_yoast_wpseo_primary_category',''),
(47843,4354,'ninzio_post_audio_mp3',''),
(47844,4354,'ninzio_post_audio_ogg',''),
(47845,4354,'ninzio_post_audio_embed',''),
(47846,4354,'ninzio_post_video_mp4',''),
(47847,4354,'ninzio_post_video_ogv',''),
(47848,4354,'ninzio_post_video_webm',''),
(47849,4354,'ninzio_post_video_embed',''),
(47850,4354,'ninzio_post_video_poster',''),
(47851,4354,'ninzio_post_link_url',''),
(47852,4354,'ninzio_post_image_url',''),
(47853,4354,'ninzio_post_image_description',''),
(47854,4354,'ninzio_post_status_author',''),
(47855,4354,'ninzio_post_quote_author',''),
(47856,4354,'ninzio_post_featured_media','yes'),
(47857,4354,'_yoast_wpseo_content_score','60'),
(47858,4354,'_wp_old_date','2026-08-08'),
(47859,4354,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47860,4354,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47871,4356,'_wp_attached_file','2025/09/New-Shopify-Feed.png'),
(47872,4356,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:28:\"2025/09/New-Shopify-Feed.png\";s:8:\"filesize\";i:737201;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91511;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"New-Shopify-Feed-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:606677;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30575;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:388273;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:156421;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142391;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-666x783.png\";s:5:\"width\";i:666;s:6:\"height\";i:783;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:358543;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:299491;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-950x475.png\";s:5:\"width\";i:950;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204834;}s:11:\"tpl11-thumb\";a:5:{s:4:\"file\";s:29:\"New-Shopify-Feed-1080x860.png\";s:5:\"width\";i:1080;s:6:\"height\";i:860;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:490186;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180991;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109809;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:218066;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107765;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:28:\"New-Shopify-Feed-894x588.png\";s:5:\"width\";i:894;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:299144;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:29:\"New-Shopify-Feed-1080x588.png\";s:5:\"width\";i:1080;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:343888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47873,4356,'_wp_attachment_image_alt','shopify meets Activ8 commerce'),
(47874,4354,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(47877,4357,'_edit_lock','1761175808:21'),
(47878,4357,'_edit_last','21'),
(47879,4357,'_yoast_wpseo_primary_category',''),
(47880,4357,'ninzio_post_audio_mp3',''),
(47881,4357,'ninzio_post_audio_ogg',''),
(47882,4357,'ninzio_post_audio_embed',''),
(47883,4357,'ninzio_post_video_mp4',''),
(47884,4357,'ninzio_post_video_ogv',''),
(47885,4357,'ninzio_post_video_webm',''),
(47886,4357,'ninzio_post_video_embed',''),
(47887,4357,'ninzio_post_video_poster',''),
(47888,4357,'ninzio_post_link_url',''),
(47889,4357,'ninzio_post_image_url',''),
(47890,4357,'ninzio_post_image_description',''),
(47891,4357,'ninzio_post_status_author',''),
(47892,4357,'ninzio_post_quote_author',''),
(47893,4357,'ninzio_post_featured_media','yes'),
(47894,4357,'_yoast_wpseo_content_score','60'),
(47895,4357,'_wp_old_date','2026-08-08'),
(47896,4357,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47897,4357,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47908,4358,'_wp_attached_file','2025/10/filters.png'),
(47909,4358,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:746;s:6:\"height\";i:699;s:4:\"file\";s:19:\"2025/10/filters.png\";s:8:\"filesize\";i:44569;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"filters-300x281.png\";s:5:\"width\";i:300;s:6:\"height\";i:281;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32803;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"filters-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10830;}s:10:\"tpl5-thumb\";a:5:{s:4:\"file\";s:19:\"filters-400x450.png\";s:5:\"width\";i:400;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44816;}s:10:\"tpl9-thumb\";a:5:{s:4:\"file\";s:19:\"filters-610x400.png\";s:5:\"width\";i:610;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63433;}s:12:\"qc-portfolio\";a:5:{s:4:\"file\";s:19:\"filters-666x699.png\";s:5:\"width\";i:666;s:6:\"height\";i:699;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37250;}s:10:\"tpl2-thumb\";a:5:{s:4:\"file\";s:19:\"filters-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86611;}s:10:\"tpl7-thumb\";a:5:{s:4:\"file\";s:19:\"filters-746x475.png\";s:5:\"width\";i:746;s:6:\"height\";i:475;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35263;}s:11:\"tpl12-thumb\";a:5:{s:4:\"file\";s:19:\"filters-450x485.png\";s:5:\"width\";i:450;s:6:\"height\";i:485;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53757;}s:11:\"tpl15-thumb\";a:5:{s:4:\"file\";s:19:\"filters-500x333.png\";s:5:\"width\";i:500;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49027;}s:11:\"Ninzio-Half\";a:5:{s:4:\"file\";s:19:\"filters-600x480.png\";s:5:\"width\";i:600;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68017;}s:16:\"Ninzio-One-Third\";a:5:{s:4:\"file\";s:19:\"filters-384x300.png\";s:5:\"width\";i:384;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35942;}s:21:\"Ninzio-Three-Quarters\";a:5:{s:4:\"file\";s:19:\"filters-746x588.png\";s:5:\"width\";i:746;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35267;}s:12:\"Ninzio-Whole\";a:5:{s:4:\"file\";s:19:\"filters-746x588.png\";s:5:\"width\";i:746;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35267;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47910,4359,'_wp_attached_file','2025/10/Feed-pics.gif'),
(47911,4359,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2025/10/Feed-pics.gif\";s:8:\"filesize\";i:4619251;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Feed-pics-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:12347;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47913,4361,'_edit_lock','1762537963:21'),
(47914,4361,'_edit_last','21'),
(47915,4361,'_yoast_wpseo_primary_category',''),
(47916,4361,'ninzio_post_audio_mp3',''),
(47917,4361,'ninzio_post_audio_ogg',''),
(47918,4361,'ninzio_post_audio_embed',''),
(47919,4361,'ninzio_post_video_mp4',''),
(47920,4361,'ninzio_post_video_ogv',''),
(47921,4361,'ninzio_post_video_webm',''),
(47922,4361,'ninzio_post_video_embed',''),
(47923,4361,'ninzio_post_video_poster',''),
(47924,4361,'ninzio_post_link_url',''),
(47925,4361,'ninzio_post_image_url',''),
(47926,4361,'ninzio_post_image_description',''),
(47927,4361,'ninzio_post_status_author',''),
(47928,4361,'ninzio_post_quote_author',''),
(47929,4361,'ninzio_post_featured_media','yes'),
(47930,4361,'_yoast_wpseo_content_score','90'),
(47931,4361,'_wp_old_date','2026-08-08'),
(47932,4361,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47933,4361,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47934,4361,'_wp_old_date','2024-12-02'),
(47935,4361,'_oembed_5bf9eb52f3a4dc0174ea792c6030b510','<iframe title=\"Activ8 News + Club Sales Tips Webinar Recording\" src=\"https://player.vimeo.com/video/1115988196?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\"></iframe>'),
(47936,4361,'_oembed_time_5bf9eb52f3a4dc0174ea792c6030b510','1757026563'),
(47944,4362,'_wp_attached_file','2025/10/Feed-pics-1.gif'),
(47945,4362,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2025/10/Feed-pics-1.gif\";s:8:\"filesize\";i:107980;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:9921;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47950,4363,'_edit_lock','1762537910:21'),
(47951,4363,'_edit_last','21'),
(47952,4363,'_yoast_wpseo_primary_category',''),
(47953,4363,'ninzio_post_audio_mp3',''),
(47954,4363,'ninzio_post_audio_ogg',''),
(47955,4363,'ninzio_post_audio_embed',''),
(47956,4363,'ninzio_post_video_mp4',''),
(47957,4363,'ninzio_post_video_ogv',''),
(47958,4363,'ninzio_post_video_webm',''),
(47959,4363,'ninzio_post_video_embed',''),
(47960,4363,'ninzio_post_video_poster',''),
(47961,4363,'ninzio_post_link_url',''),
(47962,4363,'ninzio_post_image_url',''),
(47963,4363,'ninzio_post_image_description',''),
(47964,4363,'ninzio_post_status_author',''),
(47965,4363,'ninzio_post_quote_author',''),
(47966,4363,'ninzio_post_featured_media','yes'),
(47967,4363,'_yoast_wpseo_content_score','60'),
(47968,4363,'_wp_old_date','2026-08-08'),
(47969,4363,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(47970,4363,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(47981,4364,'_wp_attached_file','2025/11/Feed-pics-1.gif'),
(47982,4364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2025/11/Feed-pics-1.gif\";s:8:\"filesize\";i:3332960;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:10067;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(47983,4364,'_wp_attachment_image_alt','New stuff'),
(47988,4365,'_edit_lock','1762978251:21'),
(47989,4365,'_edit_last','21'),
(47990,4365,'_yoast_wpseo_primary_category',''),
(47991,4365,'ninzio_post_audio_mp3',''),
(47992,4365,'ninzio_post_audio_ogg',''),
(47993,4365,'ninzio_post_audio_embed',''),
(47994,4365,'ninzio_post_video_mp4',''),
(47995,4365,'ninzio_post_video_ogv',''),
(47996,4365,'ninzio_post_video_webm',''),
(47997,4365,'ninzio_post_video_embed',''),
(47998,4365,'ninzio_post_video_poster',''),
(47999,4365,'ninzio_post_link_url',''),
(48000,4365,'ninzio_post_image_url',''),
(48001,4365,'ninzio_post_image_description',''),
(48002,4365,'ninzio_post_status_author',''),
(48003,4365,'ninzio_post_quote_author',''),
(48004,4365,'ninzio_post_featured_media','yes'),
(48005,4365,'_yoast_wpseo_content_score','90'),
(48006,4365,'_wp_old_date','2026-08-08'),
(48007,4365,'_wp_old_slug','activ8cloud-version-2023-3-202-released'),
(48008,4365,'_wp_old_slug','activ8cloud-version-2023-3-223-released-2'),
(48009,4365,'_wp_old_date','2024-12-02'),
(48010,4365,'_oembed_5bf9eb52f3a4dc0174ea792c6030b510','<iframe title=\"Activ8 News + Club Sales Tips Webinar Recording\" src=\"https://player.vimeo.com/video/1115988196?dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\"></iframe>'),
(48011,4365,'_oembed_time_5bf9eb52f3a4dc0174ea792c6030b510','1757026563'),
(48019,4365,'_pys_head_footer','a:7:{s:14:\"disable_global\";b:0;s:8:\"head_any\";s:0:\"\";s:12:\"head_desktop\";s:0:\"\";s:11:\"head_mobile\";s:0:\"\";s:10:\"footer_any\";s:0:\"\";s:14:\"footer_desktop\";s:0:\"\";s:13:\"footer_mobile\";s:0:\"\";}'),
(48020,4367,'_wp_attached_file','2025/11/Feed-pics-1.png'),
(48021,4367,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2025/11/Feed-pics-1.png\";s:8:\"filesize\";i:101596;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Feed-pics-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23677;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
/*!40000 ALTER TABLE `wpqk_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_posts`
--

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

--
-- Dumping data for table `wpqk_posts`
--

LOCK TABLES `wpqk_posts` WRITE;
/*!40000 ALTER TABLE `wpqk_posts` DISABLE KEYS */;
INSERT INTO `wpqk_posts` VALUES
(4,2,'2014-05-08 20:54:33','2014-05-09 03:54:33','','active club solutions wine club management and ecommerce for wineries and vineyards','','inherit','open','open','','logo-500','','','2014-05-08 20:54:33','2014-05-09 03:54:33','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/logo-500.png',0,'attachment','image/png',0),
(5,2,'2014-05-19 16:40:57','2014-05-19 23:40:57','<p>Name (required)<br>\r\n    [text* your-name] </p>\r\n\r\n<p>Email (required)<br>\r\n    [email* your-email] </p>\r\n\r\n<p>Phone (required)<br>\r\n    [text* phone]</p>\r\n\r\n<p>Subject<br>\r\n    [text subject]</p>\r\n\r\n<p>Message<br>\r\n    [text message]</p>\r\n\r\nInput this code: <br>[captchac captcha-118 size:l fg:#3a92aa bg:#ffffff]\r\n[captchar captcha-118 4/4]\r\n\r\n<p>[submit \"Send\"]</p>\n1\nActive Club Solutions: Request for Contact\n[_site_title] <wordpress@activeclubsolutions.net>\nsales@activeclubsolutions.net\n<span style=\"font-family: Calibri; font-size: 18px;\">\r\n\r\nFrom: [your-name] <[your-email]>\r\n\r\nEmail: [your-email]\r\n\r\nPhone: [phone]\r\n\r\nSubject: [subject]\r\n\r\nMessage:\r\n\r\n[message]\r\n\r\n<hr>\r\n\r\nThis e-mail was sent from the ActiveClubSolutions.com \"Contact Us\" form\r\n\r\n<img src=\"http://secureclub.net/images/activeclubmgmt/Signupinwinery150.png\" />\r\n\r\n</span>\n\n\n1\n\n\n\n\n\n\n\n\n\n\nThank you! We will contact you shortly.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.','Contact Us','','publish','open','open','','contact-form-1','','','2021-08-31 14:54:24','2021-08-31 21:54:24','',0,'https://activeclubsolutions.net/?post_type=wpcf7_contact_form&#038;p=5',0,'wpcf7_contact_form','',0),
(6,2,'2014-05-19 16:43:22','2014-05-19 23:43:22','','Activ8 Commerce Wine Club Management','','inherit','open','open','','logo-400','','','2014-05-19 16:43:22','2014-05-19 23:43:22','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/logo-400.png',0,'attachment','image/png',0),
(7,2,'2014-05-19 16:44:56','2014-05-19 23:44:56','','Activ8 Commerce Wine Club Management','','inherit','open','open','','logo-190','','','2014-05-19 16:44:56','2014-05-19 23:44:56','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/logo-190.png',0,'attachment','image/png',0),
(508,2,'2014-02-14 12:27:17','2014-02-14 19:27:17','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[one_half last=\"no\"]\r\n<h1>Email Us</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nAsk us about our mobile winery POS, wine club software or all in one tasting room solutions.\r\n\r\nFill out the form below to send us an email. Be sure to provide a valid, working email address so that we can reply.\r\n\r\n[gap height=\"25\" /]\r\n\r\n[contact-form-7 id=\"5\" title=\"Contact Us\"]\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\nMailing Address:\r\n<h4>Activ8 Commerce</h4>\r\n1530 Finley Road\r\nPleasanton, CA 94588\r\n\r\n[splitter type=\"solid\" color=\"\" top=\"15\" bottom=\"15\" /]\r\n<h4>1-877-441-CLUB (2582)</h4>\r\n[splitter type=\"solid\" color=\"\" top=\"15\" bottom=\"15\" /]\r\n\r\n<a href=\"mailto:info@activeclubsolutions.net\">info@activeclubsolutions.net</a>\r\n<a href=\"https://activeclubsolutions.net\">activeclubsolutions.net</a>\r\n\r\n[splitter type=\"solid\" color=\"\" top=\"15\" bottom=\"15\" /]\r\n\r\n[social_links align=\"left\" target=\"_blank\" rss=\"/feed\" facebook=\"http://facebook.com/activeclubsolutions\" youtube=\"http://youtube.com/activeclubsolutions\" /]\r\n\r\n[/one_half]\r\n\r\n[/fullbox]','Contact Us','','publish','open','closed','','contact-active-club-solutions','','','2018-11-03 23:03:36','2018-11-04 06:03:36','',0,'http://micron.ninzio.com/?page_id=508',0,'page','',0),
(848,2,'2014-03-05 14:33:19','2014-03-05 21:33:19','[widebox shadow=\"\" text_color=\"#ffffff\" background_color=\"#F5F5F5\" background_image=\"\" background_repeat=\"\" background_position=\"\" background_attachment=\"\" border_size=\"\" border_color=\"\" padding_top=\"10\" padding_bottom=\"18\"]\r\n<h2 style=\"text-align: center; color: black; font-size: 35px; letter-spacing: 1px;\">Cloud Tasting Room POS/iPad POS, Club Automation, eCommerce, Loyalty,\r\nMarketing, Multi-Location Inventory, Gift Cards, Accounting</h2>\r\n[gap height=\"20\" /]\r\n<h2 style=\"text-align: center; font-size: 41px; letter-spacing: 5px; color: black;\">all in one single system</h2>\r\n[/widebox]\r\n\r\n[colorbox  id=\"\" color=\"\" border_color=\"#ddd\" background_color=\"white\" border_width=\"\" border_radius=\"\" padding=\"0px 0 0 0\"]\r\n[fullbox id=\"\" padding_top=\"\" padding_bottom=\"\"]\r\n[box_container columns=\"1\" version=\"v2\" animate=\"yes\" padding_top=\"0\" padding_bottom=\"0\"]\r\n\r\n[one_half last=\"no\"]\r\n[box target=\"_self _blank\" title=\"\" icon=\"\" icon_color=\"\" icon_back_color=\"\"]\r\n<h1 style=\"letter-spacing: 1px; text-align: left;\">Elevate Service...Maximize Sales</h1>\r\n[gap height=\"15\" /]\r\n<h3>Efficiently manage and grow your direct-to-consumer sales with Activ8\'s powerful, all-in-one solution</h3>\r\n[gap height=\"15\" /]\r\n\r\nActiv8\'s Mobile Tasting Room POS, Club Automation Software and eCommerce Solution all share one common database. Each of these tool sets speak live to your <b>unique and independent master database</b> so they are always current and in sync with your customer and inventory data. With all systems sharing the same data, efficiencies improve, staff sells more and customer service is elevated across your entire operation.\r\n\r\nEliminate the hassle of running multiple systems. We\'re integrated with many shipping &amp; fulfillment, payment, retail, accounting and marketing services. You\'ll have peace of mind knowing that our software features are based specifically on our customers\' need for them.\r\n\r\nActiv8\'s easy iPad POS is designed for busy <b>winery tasting rooms, craft beverage businesses, and retail locations</b>. It includes powerful club features, inventory management, alcohol shipping, tips functionality and kitchen/fulfillment printing built right in. It communicates live with your unique master database so it is always current with customer and inventory data.\r\n\r\nActiv8\'s club automation system will save you hours of time by automating many of the time-consuming tasks. Batch creation of each individual club transaction. Batch processing payments. Emails communication and receipts automatically. Our flexible system allows you to run Standard Package, Member Choice/Allocation and Placeholder Clubs.\r\n\r\nActiv8\'s eCommerce solution inserts right into your current website so there is no re-direct when customers are shopping. The pages have an open style sheet so web designers have full control of the look and feel to carry your brand image through every page. Features include catalog, shopping cart, member choice, club signups and a member portal allowing customers to control their own profile. The solution is connected live to your unique master database so there is never a difference in customer data and inventory data.\r\n\r\n[gap height=\"15\" /]\r\n\r\n[ninzio_button text=\"POS\" size=\"small\" target=\"_self _blank\" icon=\"angle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/ipad-winery-pos\" /]\r\n[ninzio_button text=\"Club\" size=\"small\" target=\"_self _blank\" icon=\"angle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/wine-club-management\" /]\r\n[ninzio_button text=\"eCommerce\" size=\"small\" target=\"_self _blank\" icon=\"angle-right\" back_color=\"\" color=\" href=\"/winery-pos-features/winery-ecommerce\" /]\r\n[ninzio_button text=\"CRM\" size=\"small\" target=\"_self _blank\" icon=\"angle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/marketing-crm-customer-service\" /]\r\n\r\n[/box]\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n<h1>Activ8\'s POS video - 1 minute 30 seconds</h1>\r\n[ACSVimeo id=297431840 width=550 height=343/]\r\n<h1>Activ8\'s digital marketing video - 2 minutes</h1>\r\n[ACSVimeo id=342617291 width=550 height=343/]\r\n[/one_half]\r\n\r\n[/box_container]\r\n[/fullbox]\r\n[/colorbox]\r\n\r\n[gap height=\"0\" /]\r\n\r\n[fullbox id=\"\" padding_top=\"\" padding_bottom=\"\"]\r\n[one_half last=\"no\"]\r\n<h1>Marketing Tools - Email Automation - 14 minutes</h1>\r\n[ACSVimeo id=360452312 width=550 height=343/]\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n<h1>Key Features and Benefits</h1>\r\n<h5>Our tasting room solution includes everything you need to manage and grow your wine, tap room, or distilled spirits sales, from our mobile POS to training and support.</h5>\r\n[gap height=\"0\" /]\r\n<ul>\r\n 	<li><a title=\"iPad Winery/Tasting Room POS\" href=\"/winery-pos-features/ipad-winery-pos/\">iPad Tasting Room POS\r\n<img style=\"float: right; margin-right: 200px; margin-top: -5px;\" src=\"/wp-content/uploads/2017/01/wizard.png\" alt=\"wizard\" width=\"24\" height=\"24\" />\r\n</a></li>\r\n 	<li><a title=\"Customizable Club Automation\" href=\"/winery-pos-features/wine-club-management/\">Customizable Club Automation with Wizard</a></li>\r\n 	<li><a title=\"Responsive eCommerce Apps\" href=\"/winery-pos-features/winery-ecommerce/\">Responsive eCommerce and Account Management Apps</a></li>\r\n 	<li><a title=\"Powerful Database with Live Data Reporting\" href=\"/winery-pos-features/winery-software-technology/\">Powerful Database App with <i>Live Data</i> Reporting</a></li>\r\n 	<li><a title=\"Marketing, CRM &amp; Customer Service\" href=\"/winery-pos-features/marketing-crm-customer-service/\">Marketing and Customer Relations Management (CRM)</a></li>\r\n 	<li><a title=\"Unparalleled Search and Data Mining\" href=\"/winery-pos-features/winery-software-technology/\">Unparalleled Search and Data Mining Capabilities</a></li>\r\n 	<li><a title=\"Web Design Services\" href=\"/winery-pos-features/platform/web-design-portfolio/\">Active performs a broad range of web and website projects as part of our service</a></li>\r\n 	<li><a title=\"Expert Technical Support\" href=\"/winery-pos-features/free-expert-technical-support/\">Expert technical support</a></li>\r\n 	<li><a title=\"Integrated &amp; Certified\" href=\"/winery-pos-features/integrated-certified/\">Integrated and certified</a></li>\r\n</ul>\r\n[ninzio_button text=\"Tasting Room POS\" size=\"small medium large\" target=\"_self _blank\" icon=\"angle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/ipad-winery-pos\" /]\r\n[/one_half]\r\n[/fullbox]\r\n\r\n[fullbox id=\"\" padding_top=\"\" padding_bottom=\"\"]\r\n[one_half last=\"no\"]\r\n<h1>Activ8\'s modern email campaign revenue analysis - 13 minutes</h1>\r\n[ACSVimeo id=325803516 width=550 height=343/]\r\n[/one_half]\r\n[one_half last=\"yes\"]\r\n<h1>Activ8\'s modern shopping cart feature video - 7 minutes</h1>\r\n[ACSVimeo id=294987696 width=550 height=343/]\r\n[/one_half]\r\n[/fullbox]\r\n\r\n[/widebox]','Winery POS and Tasting Room POS Home Page','','private','open','closed','','home','','','2024-06-12 13:24:07','2024-06-12 20:24:07','',0,'http://micron.ninzio.com/?page_id=848',0,'page','',0),
(992,2,'2014-03-06 13:07:32','2014-03-06 20:07:32','[fullbox padding_top=\"0\" padding_bottom=\"45\"]\r\n\r\n[one_third last=\"yes no\"]\r\n<a href=\"/wp-content/uploads/2017/04/mpopandipad-blue.png\">\r\n<img class=\"alignnone size-full wp-image-1611\" src=\"/wp-content/uploads/2017/04/mpopandipad-blue.png\" alt=\"Activ8 Commerce Software\" width=\"589\" height=\"400\" />\r\n</a>\r\n\r\n[/one_third]\r\n\r\n[two_thirds last=\"yes\"]\r\n<h1>About Activ8 Commerce</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[font_size font_size=\"18px\" line_height=\"28px\"]<span style=\"color: #999999;\">Our Mission</span>[/font_size]\r\n[gap height=\"10\" /]\r\n\r\nTo provide a single and comprehensive sales platform for firms selling direct to the consumer.\r\n\r\n[font_size font_size=\"18px\" line_height=\"28px\"]<span style=\"color: #999999;\">The Company</span>[/font_size]\r\n[gap height=\"10\" /]\r\n\r\nActiv8 Commerce publishes a direct sales suite of tools written specifically for the wine &amp; alcohol related industries and offers a complete solution including software for tasting rooms, wholesale, wine/spirits club, shipping, inventory, ecommerce, and accounting.\r\n\r\nFounded in 2003, Activ8 Commerce has been providing a cloud sales database solution to wineries, distilleries, and wine stores. We got our start in wine club software and have been building on market requests ever since. Today the company has an entire suite of sales tools all in one single database.\r\n\r\nActiv8 Commerce is committed to developing and continually improving its sales software and service has made them a leading and well respected provider of direct sales software with a commitment to quality and customer success.\r\n\r\nThe Activ8 Commerce team brings a well-rounded understanding of the unique challenges that face these businesses today.\r\n\r\n[/two_thirds]\r\n\r\n[/fullbox]\r\n\r\n[widebox shadow=\"\" text_color=\"\" background_color=\"#666666\" background_image=\"\" background_repeat=\"\" background_position=\"\" background_attachment=\"\" border_size=\"1\" border_color=\"#888888\" padding_top=\"50\" padding_bottom=\"25\"]\r\n[box_container columns=\"3\" version=\"v2\" animate=\"yes\"]\r\n[box target=\"_self _blank\" title=\"Software\" icon=\"globe\" icon_color=\"\" icon_back_color=\"\"]\r\nMature software\r\n[/box]\r\n[box target=\"_self _blank\" title=\"Cloud\" icon=\"cloud\" icon_color=\"\" icon_back_color=\"\"]\r\nCloud computing\r\n[/box]\r\n[box target=\"_self _blank\" title=\"Mobile\" icon=\"mobile\" icon_color=\"\" icon_back_color=\"\"]\r\nMobile devices\r\n[/box]\r\n[box target=\"_self _blank\" title=\"Service\" icon=\"support\" icon_color=\"\" icon_back_color=\"\"]\r\nRenowned service\r\n[/box]\r\n[/box_container]\r\n[/widebox]','<span style=\"font-size:100%;margin-left:-600px;\">About</span><br><span style=\"font-size:100%;margin-left:-600px;\">Us</span>','Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.','private','open','closed','','about-us','','','2024-06-12 13:27:45','2024-06-12 20:27:45','',0,'http://micron.ninzio.com/?page_id=992',0,'page','',0),
(1427,2,'2014-05-19 23:31:56','2014-05-20 06:31:56','','Active Club Winery & Vineyard Management Software','','inherit','open','open','','home-block1','','','2014-05-19 23:31:56','2014-05-20 06:31:56','',848,'https://activeclubsolutions.net/wp-content/uploads/2014/03/home-block1.jpg',0,'attachment','image/jpeg',0),
(1430,2,'2014-05-21 23:42:09','2014-05-22 06:42:09','<h3>Activ8 Commerce is pleased to announce full integration of its wine club software with Constant Contact and Vertical Response</h3>\r\n\r\nOur wine club software\'s many email marketing features now include full integration with the popular email campaign managers, Constant Contact and Vertical Response.','New Constant Contact & Vertical Response Integration','','pending','closed','open','','new-constant-contact-vertical-response-integration','','','2022-08-14 21:05:00','2022-08-15 04:05:00','',0,'https://activeclubsolutions.net/?p=1430',0,'post','',0),
(1431,2,'2014-05-21 23:42:03','2014-05-22 06:42:03','','sample-blog2','','inherit','open','open','','sample-blog2','','','2014-05-21 23:42:03','2014-05-22 06:42:03','',1430,'https://activeclubsolutions.net/wp-content/uploads/2014/05/sample-blog2.jpg',0,'attachment','image/jpeg',0),
(1432,2,'2014-05-21 23:43:27','2014-05-22 06:43:27','<h3>Manage your wine club members from your iPad or tablet with our new iPad/tablet app.</h3>\r\nActiv8 Commerce\' wine club software comes with the Online Activ8 Manager: a user-friendly interface accessible from any web browser, through a simple link like www.secureclub.net/YOUR DATABASE NAME/asp/aln.aspx. We have now customized this to display beautifully and use all the navigation tools of an iPad or tablet.\r\n\r\nThe following video tutorial shows you how to install the Activ8 iPad app.\r\n\r\n<!-- copy and paste. Modify height and width if desired. --><iframe class=\"tscplayer_inline embeddedObject\" style=\"overflow: hidden;\" src=\"http://www.screencast.com/users/ActiveClubMgmt/folders/Tutorials/media/96417424-446d-4eec-8488-0770690aa0e6/embed\" name=\"tsc_player\" width=\"300\" height=\"150\" frameborder=\"0\" scrolling=\"no\" allowfullscreen=\"allowfullscreen\"></iframe>','The Active Club Mobile App','','pending','closed','open','','the-active-club-ipad-app','','','2022-08-14 21:05:00','2022-08-15 04:05:00','',0,'https://activeclubsolutions.net/?p=1432',0,'post','',0),
(1433,2,'2014-05-21 23:43:22','2014-05-22 06:43:22','','sample-blog','','inherit','open','open','','sample-blog','','','2014-05-21 23:43:22','2014-05-22 06:43:22','',1432,'https://activeclubsolutions.net/wp-content/uploads/2014/05/sample-blog.jpg',0,'attachment','image/jpeg',0),
(1434,2,'2014-05-21 23:49:01','2014-05-22 06:49:01','','News','','publish','open','closed','','wine-club-software-news','','','2017-01-27 10:35:08','2017-01-27 18:35:08','',0,'https://activeclubsolutions.net/?page_id=1434',0,'page','',0),
(1435,2,'2014-05-21 23:54:36','2014-05-22 06:54:36','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h1>All In One DTC/DTT Winery/Distillery Software Features</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nOur all in One DTC Winery Software will help grow your direct to consumer wine sales. We have automated and passed on many of these features to our robot who works night and day for your business.\r\n\r\nOur All in One DTC Winery Software includes <a href=\"https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/\"><span style=\"color: #555555;\">Tasting Room POS</span> </a>, advanced <a href=\"https://activeclubsolutions.net/winery-pos-features/wine-club-management/\"><span style=\"color: #555555;\">Wine/Spirits Club Software Technology </span></a> and <a href=\"https://activeclubsolutions.net/winery-pos-features/winery-ecommerce/\"><span style=\"color: #555555;\">Ecommerce.</span></a>\r\n\r\nWe\'ve integrated with QuickBooks Accounting, FedEx, UPS, GSO, ShipCompliant, and many others to remove the hassle of running multiple systems.\r\n\r\nYou will have peace of mind knowing that all these features have been added because of our customers need for them. We are a truly customer driven company that focuses on their needs above our own.\r\n\r\nClick on the links to the right to learn more about how Activ8 Commerce is the right choice for your tasting room retail sales (using our <a href=\"https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/\"><span style=\"color: #555555;\">Tasting Room POS</span> </a>), wine/spirits club management (using our advanced <a href=\"https://activeclubsolutions.net/winery-pos-features/wine-club-management/\"><span style=\"color: #555555;\">wine/spirits club software technology </span></a>) and ecommerce (using our <a href=\"https://activeclubsolutions.net/winery-pos-features/winery-ecommerce/\"><span style=\"color: #555555;\">ecommerce software</span> </a>) needs.\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"] [icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>Our DTC/DTT Winery/Distillery Software Features</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n 	<li><strong><a title=\"iPad POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n 	<li><strong><a title=\"Automated Wine/Spirits Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n 	<li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n 	<li><strong><a title=\"Integrated &amp; Certified Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated &amp; Certified</a></strong></li>\r\n 	<li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n 	<li><strong><a title=\"Marketing, CRM &amp; Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM &amp; Customer Service</a></strong></li>\r\n 	<li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n 	<li><strong><a title=\"Shopping Cart &amp; Web Interfaces\" href=\"/winery-pos-features/winery-ecommerce/\">Responsive Ecommerce</a></strong></li>\r\n 	<li><strong><a title=\"Wine/Spirits Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n</ul>\r\n[/icon_list] [splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /] [/one_third]\r\n\r\n[/fullbox]','DTC Software Features','','private','open','closed','','winery-pos-features','','','2024-06-12 13:31:24','2024-06-12 20:31:24','',0,'https://activeclubsolutions.net/?page_id=1435',0,'page','',0),
(1436,2,'2014-05-21 23:55:13','2014-05-22 06:55:13','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n<div style=\"margin-top: -60px; margin-left: -250px;\"><img class=\"alignnone size-medium wp-image-2872\" src=\"/wp-content/uploads/2018/01/integrations_13.png\" alt=\"\" width=\"1024\" height=\"498\" /></div>\r\n[gap height=\"35\" /]\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[two_thirds last=\"no\"]\r\n<h1>Increase productivity and functionality</h1>\r\n<h2>with seamless integration of the most popular accounting, online payment, compliance and shipping services.</h2>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nWe recognize that customers often have existing systems in place for accounting, shipping, compliance, email newsletters, etc. We work with most other software solutions on the market and can often seamlessly integrate with them to provide our customers with the best of all worlds. Activ8 Commerce works cooperatively with partners to provide our customers with the best solution for their businesses.\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h2>Featured Partners</h2>\r\nThe following is a sampling of our more frequently used Partner services - resources about which our customers speak highly. To view all Partners for a particular function, just click one of the buttons to the right.\r\n\r\n[carousel columns=\"4\" autoplay=\"yes\"]\r\n\r\n[item]<a href=\"/active-club-solutions-partners/shipping-fulfillment-partners/\"><img class=\"alignnone wp-image-1548 size-full\" src=\"/wp-content/uploads/2014/05/partner-fedex1.jpg\" alt=\"wine club management solution partner with fedex\" width=\"232\" height=\"150\" /></a>[/item]\r\n\r\n[item]<a href=\"/active-club-solutions-partners/shipping-fulfillment-partners/\"><img class=\"alignnone wp-image-1549 size-full\" src=\"/wp-content/uploads/2014/05/partner-ups1.jpg\" alt=\"ups wine shipping partner\" width=\"232\" height=\"150\" /></a>[/item]\r\n\r\n[item]<a href=\"/active-club-solutions-partners/shipping-fulfillment-partners/\"><img class=\"alignnone wp-image-1550 size-full\" src=\"/wp-content/uploads/2017/01/GSOLogoFinal.png\" alt=\"golden state overnight wine shipping partner\" width=\"232\" height=\"150\" /></a>[/item]\r\n\r\n[item]<a href=\"/active-club-solutions-partners/payment-processing-partners/\"><img class=\"alignnone size-medium\" src=\"/wp-content/uploads/2017/03/EVO_Logo.png\" alt=\"wine sales website payment gateway evopayments.com\" width=\"300\" height=\"168\" /></a>[/item]\r\n\r\n[item]<a href=\"/active-club-solutions-partners/payment-processing-partners/\"><img class=\"alignnone wp-image-1736 size-medium\" src=\"/wp-content/uploads/2014/11/openedge-300x168.jpg\" alt=\"wine sales website payment gateway openedge\" width=\"300\" height=\"168\" /></a>[/item]\r\n\r\n[item]<a href=\"/winery-pos-features/accounting/\"><img class=\"alignnone wp-image-1582 size-full\" src=\"/wp-content/uploads/2014/05/partner-intuit.jpg\" alt=\"wine online store intuit quickbooks integration\" width=\"232\" height=\"150\" /></a>[/item]\r\n\r\n[item]<a href=\"/active-club-solutions-partners/compliance-providers/\"><img class=\"alignnone wp-image-1586 size-full\" src=\"/wp-content/uploads/2014/05/partner-shipc.jpg\" alt=\"ship compliant wine website partner\" width=\"232\" height=\"150\" /></a>[/item]\r\n\r\n[item]<a href=\"/active-club-solutions-partners/website-marketing-media/\"><img class=\"alignnone wp-image-1581 size-full\" src=\"/wp-content/uploads/2014/05/partner-cc.jpg\" alt=\"constant contact integration wine sales website\" width=\"232\" height=\"150\" /></a>[/item]\r\n\r\n[item]<a href=\"/active-club-solutions-partners/website-marketing-media/\"><img class=\"alignnone size-full\" src=\"/wp-content/uploads/2017/07/MailChimpNLogo.png\" alt=\"constant contact integration wine sales website\" width=\"232\" height=\"150\" /></a>[/item]\r\n\r\n[item]<a href=\"/active-club-solutions-partners/website-marketing-media/\"><img class=\"alignnone size-full wp-image-2875\" src=\"/wp-content/uploads/2017/10/socketlabs-medium.png\" alt=\"\" width=\"150\" height=\"20\" /></a>[/item]\r\n\r\n[item]<a href=\"/active-club-solutions-partners/website-marketing-media/\"><img class=\"alignnone size-full wp-image-2874\" src=\"/wp-content/uploads/2017/10/verticalresponse.png\" alt=\"\" width=\"200\" height=\"74\" /></a>[/item]\r\n\r\n[item]<a href=\"/active-club-solutions-partners/misc-integrated-services/\"><img class=\"alignnone wp-image-1579 size-full\" src=\"/wp-content/uploads/2014/05/partner-noaa.jpg\" alt=\"noaa wine website partner\" width=\"232\" height=\"150\" /></a>[/item]\r\n\r\n[/carousel]\r\n\r\n[/two_thirds]\r\n\r\n[one_quarter last=\"yes\"]\r\n<h1>View All Partners</h1>\r\n[ninzio_button text=\"Accounting Systems\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/accounting\" /]\r\n\r\n[ninzio_button text=\"Compliance Providers\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/compliance-providers\" /]\r\n\r\n[ninzio_button text=\"Misc Integrated Services\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/misc-integrated-services\" /]\r\n\r\n[ninzio_button text=\"Payment Processing\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/payment-processing-partners\" /]\r\n\r\n[ninzio_button text=\"Shipping &amp; Fulfillment\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/shipping-fulfillment-partners\" /]\r\n\r\n[ninzio_button text=\"Marketing Services\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/website-marketing-media\" /]\r\n\r\n[/one_quarter]\r\n\r\n[/fullbox]','Partners','','private','open','closed','','active-club-solutions-partners','','','2024-06-12 13:31:52','2024-06-12 20:31:52','',0,'https://activeclubsolutions.net/?page_id=1436',0,'page','',0),
(1438,2,'2014-05-21 23:56:05','2014-05-22 06:56:05','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"20\"]\r\n[one_half last=\"no\"]\r\n<h1>Activ8 Commerce Demo</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nTo schedule your personal guided tour of Activ8 POS, Wine Club and eCommerce solutions, just fill out the form to the right and click \"Send\"\r\n\r\n<h5>Be sure to include a valid, working email address so we can respond.</h5>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<strong>If you\'d prefer to contact us via phone, please call us at</strong>\r\n<h3>1-877-441-2582 (option 1)</h3>\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[contact-form-7 id=\"1474\" title=\"Request a Demo\"]\r\n\r\n[/one_half]\r\n\r\n[/fullbox]\r\n\r\n&nbsp;','Request a Demo','','publish','open','open','','winery-pos-wine-club-software-demo','','','2018-11-03 14:32:06','2018-11-03 21:32:06','',0,'https://activeclubsolutions.net/?page_id=1438',0,'page','',0),
(1442,2,'2014-05-22 00:02:48','2014-05-22 07:02:48',' ','','','publish','open','closed','','1442','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1442',22,'nav_menu_item','',0),
(1443,2,'2014-05-22 00:02:48','2014-05-22 07:02:48',' ','','','publish','open','closed','','1443','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1443',25,'nav_menu_item','',0),
(1444,2,'2014-05-22 00:02:48','2014-05-22 07:02:48','','Platform','','publish','open','closed','','1444','','','2020-09-18 11:18:18','2020-09-18 18:18:18','',0,'https://activeclubsolutions.net/?p=1444',2,'nav_menu_item','',0),
(1446,2,'2014-05-22 00:02:48','2014-05-22 07:02:48',' ','','','publish','open','closed','','1446','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1446',14,'nav_menu_item','',0),
(1448,2,'2014-05-22 00:02:48','2014-05-22 07:02:48','','Demo','','publish','open','closed','','1448','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1448',21,'nav_menu_item','',0),
(1450,2,'2014-05-22 00:03:37','2014-05-22 07:03:37','','Home','','publish','open','closed','','home','','','2020-09-18 11:18:18','2020-09-18 18:18:18','',0,'https://activeclubsolutions.net/?p=1450',1,'nav_menu_item','',0),
(1455,2,'2014-05-26 22:50:23','2014-05-27 05:50:23','','Activ8 Commerce Wine Club Management','','inherit','open','open','','logo-4002x','','','2014-05-26 22:50:23','2014-05-27 05:50:23','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/logo-400@2x.png',0,'attachment','image/png',0),
(1459,2,'2014-05-29 20:51:31','2014-05-30 03:51:31','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"20\"]\r\n<div style=\"margin-top: -80px; margin-left: 0px;\"><img class=\"alignnone size-medium\" src=\"/wp-content/uploads/2017/10/picewithmagnifyingglass.png\" alt=\"\" /></div>\r\n[gap height=\"30\" /]\r\n<h1>Ecommerce Add-On</h1>\r\n<strong>The Activ8 eCommerce toolkit can be hosted on Activ8 servers or be self-hosted - embedded into your existing website.  Both options are fully an extension of your Activ8 Manager software.</strong>\r\n\r\n[gap height=\"25\" /]\r\n\r\n[box_container columns=\"1\" version=\"v2\" animate=\"yes\"]\r\n[box target=\"_self _blank\" title=\"Ecommerce Add On\" icon=\"angle-right\" icon_color=\"#ffffff\" icon_back_color=\"\"]\r\n<h4></h4>\r\n<h4>Hosted Ecommerce Add-On Solutions</h4>\r\n<strong>$450 </strong>one-time setup fee\r\n\r\n<strong>$50</strong> per month\r\n\r\nUnlimited number of transactions each month\r\n<ul>\r\n	<li>Select from one of Activ8’s pre-designed templates</li>\r\n	<li>Personalized header image available</li>\r\n</ul>\r\n<h4>Self-Hosted Ecommerce Add-On</h4>\r\n<strong>Setup fee is quoted </strong>as design fees will vary based on scope of work\r\n\r\n<strong>$100</strong> per month\r\n\r\nUnlimited number of transactions each month\r\n<ul>\r\n	<li>Select from one of Activ8’s pre-designed templates as a starting design point</li>\r\n	<li>Contract with Activ8’s UX Designer to customize pages</li>\r\n</ul>\r\n[gap height=\"5\" /]\r\n\r\nShopping Cart Add-On Features\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"\" background_color=\"#ffffff\"]\r\n<ul>\r\n	<li>shopping cart, club signup, account management, and member choice</li>\r\n	<li>hosted or embedded into your website</li>\r\n	<li>recognizes your club members, and assigns club discounts (where applicable)</li>\r\n	<li>fully responsive - mobile ready</li>\r\n	<li>social sharing for every product and event</li>\r\n	<li>full inventory &amp; package display control</li>\r\n	<li>full control of catalog and categories</li>\r\n	<li>always visible shopping basket widget</li>\r\n	<li>guest and registered shopper checkout</li>\r\n	<li>calculates taxes, shipping fees, discounts instantly</li>\r\n	<li>sends automatic order confirmations and receipt</li>\r\n	<li>integrated UPS, FedEx, GSO shipping and tracking</li>\r\n	<li>up to 5 hours of free initial training at setup</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/box]\r\n[/box_container]\r\n\r\n[gap height=\"25\" /]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/fullbox]','Winery/Distillery Ecommerce Pricing','','publish','open','open','','winery-website-shopping-cart','','','2019-09-02 21:47:08','2019-09-03 04:47:08','',1867,'https://activeclubsolutions.net/?page_id=1459',0,'page','',0),
(1467,2,'2014-05-29 21:16:55','2014-05-30 04:16:55','','header2','','inherit','open','open','','header2','','','2014-05-29 21:16:55','2014-05-30 04:16:55','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header2.jpg',0,'attachment','image/jpeg',0),
(1474,2,'2014-06-01 20:18:09','2014-06-02 03:18:09','<p>Name (required)<br>\r\n    [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br />\r\n    [email* your-email] </p>\r\n\r\n<p>Phone (required)<br />\r\n    [text* phone] </p>\r\n\r\n<p>Company (required)<br />\r\n    [text* company] </p>\r\n\r\n<p>Where did you find us<br/>\r\n    [select* source include_blank \"Advertisement\" \"Google\" \"Mailing\" \"Referral\" \"Rep Visit\" \"Social Media\" \"Trade Show\" \"Other\"]\r\n</p>\r\n\r\n<p>[submit \"Send\"]</p>\n1\nActive Club Solutions: DEMO REQUEST\n[_site_title] <wordpress@activeclubsolutions.net>\nsales@activeclubsolutions.net\n<span style=\"font-family: Calibri; font-size: 18px;\">\r\n\r\nSubject: Demo Request\r\n\r\nFrom: [your-name] <[your-email]>\r\n\r\nEmail: [your-email]\r\n\r\nCompany: [company]\r\n\r\nPhone: [phone]\r\n\r\nSource: [source]\r\n\r\nThe above person requests a demo.\r\n\r\n<hr>\r\n\r\nThis e-mail was sent from the ActiveClubSolutions.com \"Demo Request\" form\r\n\r\n<img src=\"http://secureclub.net/images/activeclubmgmt/Signupinwinery150.png\" />\r\n\r\n</span>\n\n\n1\n\n\n\n\n\n\n\n\n\n\nThank you! We will contact you shortly.\nMessage Failed. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm all fields are correct and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.','Request a Demo','','publish','open','open','','request-a-demo','','','2021-08-31 14:55:25','2021-08-31 21:55:25','',0,'https://activeclubsolutions.net/?post_type=wpcf7_contact_form&#038;p=1474',0,'wpcf7_contact_form','',0),
(1476,2,'2014-06-01 20:57:52','2014-06-02 03:57:52','','header3','','inherit','open','open','','header3','','','2014-06-01 20:57:52','2014-06-02 03:57:52','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header3.jpg',0,'attachment','image/jpeg',0),
(1477,2,'2014-06-01 20:57:54','2014-06-02 03:57:54','','header4','','inherit','open','open','','header4','','','2014-06-01 20:57:54','2014-06-02 03:57:54','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header4.jpg',0,'attachment','image/jpeg',0),
(1478,2,'2014-06-01 20:57:56','2014-06-02 03:57:56','','header5','','inherit','open','open','','header5','','','2014-06-01 20:57:56','2014-06-02 03:57:56','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header5.jpg',0,'attachment','image/jpeg',0),
(1479,2,'2014-06-01 21:02:55','2014-06-02 04:02:55','','header6','','inherit','open','open','','header6','','','2014-06-01 21:02:55','2014-06-02 04:02:55','',1459,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header6.jpg',0,'attachment','image/jpeg',0),
(1488,2,'2014-07-26 22:43:34','2014-07-27 05:43:34','','wine club management software demo','','inherit','open','open','','header7-2','','','2014-07-26 22:43:34','2014-07-27 05:43:34','',1438,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header71.jpg',0,'attachment','image/jpeg',0),
(1491,2,'2014-07-27 23:29:25','2014-07-28 06:29:25','','contact active club solutions wine club management software','','inherit','open','open','','header8','','','2014-07-27 23:29:25','2014-07-28 06:29:25','',508,'https://activeclubsolutions.net/wp-content/uploads/2014/02/header8.jpg',0,'attachment','image/jpeg',0),
(1493,2,'2014-07-27 23:58:49','2014-07-28 06:58:49','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n\r\n<h1>Club & Database Software</h1>\r\n\r\nBe a power  club manager with the most powerful and customizable  club software in the specialty crafted beverage industry.[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nWe at Activ8 Commerce have developed the ultimate customizable  club software. Our robot works for you 7/24! It is able to complete tasks in seconds that would take the average person hours to complete.\r\n\r\nSome of our club software features:\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n<li>extensive Customer data features</li>\r\n<li>gift and prepaid membership features</li>\r\n<li>membership in multiple clubs</li>\r\n<li>club automation wizard - customizable steps</li>\r\n<li>address validation, email address validation, proximity calculation</li>\r\n<li>calculates package weights, custom discounts, handling fees, shipping fees, origin and destination taxes instantly</li>\r\n<li>fully integrated shipping, real-time rates, label printing and tracking</li>\r\n<li>the latest and smartest in member choice / allocation systems allows wine club members to select their own wines for shipment</a></li>\r\n<li>placeholder clubs - reusable abstracts can greatly simplify a club program</li>\r\n<li>automated assistant for declined credit card and revenue recovery</li>\r\n<li>easy personalized Customer emails sent from where your working</li>\r\n<li>customizable club software handles company specific exceptions</li>\r\n<li>employee incentive system</li>\r\n<li>automated anniversary (2) and birthdate emails (2)</li>\r\n<li>automated weather</li>\r\n<li>automated club management tools</li>\r\n<li>unparalleled search provides an astonishing set of query tools - like,... show: members with a non-payment history</i>\r\n<li>database change tracking and job queue with log</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<h1>Powerful Web Tools</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<span style=\"color: #2d3038;\">Giving your club members access to their information online and through mobile interfaces allows you to easily build your winery into your members lives.</span>\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n<li>member sign up</li>\r\n<li>member account management</li>\r\n<li>Member choice / allocations / futures</li>\r\n<li>integrated into your website seamlessly</li>\r\n<li>integrated into your facebook page</li>\r\n</ul>\r\n\r\n[/icon_list]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Shopping Cart & Web Interfaces\" href=\"/winery-pos-features/winery-ecommerce/\">Responsive Ecommerce</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<img src=\"https://activeclubsolutions.net/wp-content/uploads/2017/01/PCmonitorWithACM_1.png\" alt=\"pcmonitorwithacm_1\" width=\"547\" height=\"378\" class=\"aligncenter size-full wp-image-2259\" />\r\n[gap height=\"25\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[box title=\"Club Wizard - Club Package - VIDEO DEMO\"][ACSVimeo id=277589741/][/box]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[box title=\"Club Wizard - Member Choice / Allocation - VIDEO DEMO\" icon=\"\"][ACSVimeo id=277589790/][/box]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[box title=\"Club Wizard - Placeholder Member Choice / Allocation VIDEO DEMO\"][ACSVimeo id=277589838/][/box]\r\n\r\n[/one_third]\r\n\r\n[/fullbox]','Advanced Club System','','publish','open','closed','','wine-club-management','','','2018-06-29 22:06:17','2018-06-30 05:06:17','',1435,'https://activeclubsolutions.net/?page_id=1493',0,'page','',0),
(1494,2,'2014-07-27 23:59:11','2014-07-28 06:59:11','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n\r\n<h1>E-mail Tracking</h1>\r\n\r\nBuilt right into Activ8 Manager is the tracking of all e-mail events. This is not just a benefit designed for e-mail marketing but for all e-mails whether marketing, member communication, internal communication or organizational processes. Unlike other systems, Activ8 links these events to customers, transactions, processes, organizations, and staff for superior reporting and visibility.\r\n\r\n<div style=\"margin-left: -100px; margin-top: -20px;\">\r\n<img src=\"/wp-content/uploads/2017/08/emailwheel_5.png\" alt=\"\" width=\"300\" height=\"246\" class=\"aligncenter size-full\" />\r\n</div>\r\n[gap height=\"25\" /]\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n   <li>dive into the details of all the outbound messages delivered, opened, clicked, and failed</li>\r\n   <li>up-to-the-minute updates in real-time built into the software</li>\r\n   <li>tracks complaints, unsubscribes, and critical bounce processing information</li>\r\n   <li>tracks revenue generation resulting from e-mail marketing campaigns</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<h1>Customer Relationship Management (CRM)</h1>\r\n\r\nCustomer communication, relationship management and reporting is vital to growing and managing your business, so we provide you with a wide range of important tools.  Activ8 Manager allows you to search customers, transactions, inventory and email event more thoroughly than any other CRM/DTC Sales System. Choose the table, build the search, spin the view in multiple ways and know your business and customers inside and out.\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>CUSTOMIZED E-MAILS</h3>\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n   <li>easy personalized customer e-mails sent from where you\'re working</li>\r\n   <li>integrated and automated e-mail communication with customers</li>\r\n   <li>e-mail templates with full access to database fields</li>\r\n   <li>schedule email delivery</li>\r\n   <li>email to a list that is based on search criteria rather than static data</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>AUTOMATED E-MAILS</h3>\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n   <li>automated welcome letters</li>\r\n   <li>automated birthday cards (member and spouse)</li>\r\n   <li>automated membership anniversary cards</li>\r\n   <li>automated wedding anniversary cards</li>\r\n   <li>automated financial reporting </li>\r\n   <li>shipping problem notifications</li>\r\n   <li>package delivered e-mails</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>CRM & LIST BUILDING TOOLS</h3>\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n   <li>proximity determination</li>\r\n   <li>delivery address and e-mail address validation</li>\r\n   <li>customer advanced gift and promo features</li>\r\n   <li>club cancellation tracking, automated expiration and suspension features</li>\r\n   <li>built-in customer source tracking</li>\r\n   <li>customer preference tracking</li>\r\n   <li>membership statistics snapshots</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>REPORTING TOOLS</h3>\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n   <li>all reports and e-mails are extensively customizable </li>\r\n   <li>numerous real-time dashboards</li>\r\n   <li>built-in employee incentive system</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Shopping Cart & Web Interfaces\" href=\"/winery-pos-features/winery-ecommerce/\">Responsive Ecommerce</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[box title=\"Email Tracking\"][ACSVimeo id=277588967/][/box]\r\n[box title=\"Marketing Tools - Email Campaign Analysis\"][ACSVimeo id=312341194/][/box]\r\n[box title=\"Marketing Tools - Revenue Analysis\"][ACSVimeo id=325803516/][/box]\r\n[box title=\"Marketing Tools - Email Automation\"][ACSVimeo id=360452312/][/box]\r\n[box title=\"Digital Marketing on Mobile\"][ACSVimeo id=342617291/][/box] \r\n[box title=\"Email Compose & Send\"][ACSVimeo id=277589305/][/box]\r\n[box title=\"Using Activ8 HTML Editor\"][ACSVimeo id=277589372/][/box]\r\n[box title=\"Marketing Tools - Email Unsubscribe\"][ACSVimeo id=305177473/][/box]\r\n[box title=\"Using Activ8 HTML Templates\"][ACSVimeo id=277589451/][/box]\r\n[box title=\"Using Activ8 HTML Report Templates Part 1\"][ACSVimeo id=277589474/][/box]\r\n[box title=\"Using Activ8 HTML Report Templates Part 2\"][ACSVimeo id=277589514/][/box]\r\n[splitter type=\"textured\" color=\"\" top=\"1\" bottom=\"25\" /]\r\n[box title=\"Using Constant Contact\"][ACSVimeo id=277589282/][/box]\r\n[box title=\"Using MailChimp\"][ACSVimeo id=277589350/][/box]\r\n[box title=\"Using SocketLabs\"][ACSVimeo id=277589297/][/box]\r\n[box title=\"Using Vertical Response\"][ACSVimeo id=277589266/][/box]\r\n\r\n[/one_third]\r\n\r\n[/fullbox]\r\n','E-mailing, Marketing, and CRM','','publish','open','open','','marketing-crm-customer-service','','','2019-09-16 22:08:52','2019-09-17 05:08:52','',1435,'https://activeclubsolutions.net/?page_id=1494',0,'page','',0),
(1495,2,'2014-07-27 23:59:25','2014-07-28 06:59:25','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h2>Integrated &amp; Certified Partners for our All in One DTC Solution</h2>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nThere are so many players involved in winery <a href=\"https://activeclubsolutions.net/winery-pos-features\"><font color=\"#555555\">DTC (direct to consumer)</font> </a> sales. We understand this so we have several Integrated & Certified partners for our All in One DTC Solution. These partners are key players in their areas. The goal is to bring you a tasting room solution that can easily provide you with real time shipping, address validation, accounting integration and more.\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n 	<li>PCI compliant with multiple credit card payment processing options.</li>\r\n        <li>Tokenized cards on file.</li>\r\n 	<li>FedEx, UPS, GSO integration.</li>\r\n 	<li>Fullfillment warehouses.</li>\r\n 	<li>ShipCompliant integration.</li>\r\n 	<li>Automated compliance reporting.</li>\r\n 	<li>QuickBooks Accounting &amp; Manufacturing.</li>\r\n 	<li>Wine Club Membership Cards.</li>\r\n 	<li>NOAA</li>\r\n 	<li>Developer Web Services available for custom integration.</li>\r\n 	<li>View all of our <a title=\"Partners\" href=\"/active-club-solutions-partners/\">Partners</a>.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Shopping Cart & Web Interfaces\" href=\"/winery-pos-features/winery-ecommerce/\">Responsive Ecommerce</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/one_third]\r\n\r\n[/fullbox]','Integrated & Certified','','publish','open','open','','integrated-certified','','','2018-11-03 23:26:56','2018-11-04 06:26:56','',1435,'https://activeclubsolutions.net/?page_id=1495',0,'page','',0),
(1496,2,'2014-07-27 23:59:44','2014-07-28 06:59:44','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h1>Experienced Technical Support</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nActiv8 Commerce have created the ultimate customizable winery DTC software. It features the Activ8 Robot, a virtual winery administrator. Our robot works for you 24/7 and is able to complete tasks in seconds that would take the average person hours to complete.  She never has time off.\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n<li>Full Team of Specialists and Engineers.</li>\r\n<li>Customization of your software to your business needs and design</li>\r\n<li>Experienced Training and Support.</li>\r\n<li>Migration of customer data.</li>\r\n<li>Accounting Setup support.</li>\r\n<li>Accurate and timely customer service.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[gap height=\"25\" /]\r\n<h1>Our Infrastructure &amp; Systems</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n 	<li><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a>.</li>\r\n 	<li>Rely on our IT infrastructure, not yours.</li>\r\n 	<li>Multiple Data Centers, nationwide.</li>\r\n 	<li>Full Data backup daily.</li>\r\n 	<li>Ask us about our ROBOT, who works for you 24/7/365.</li>\r\n 	<li>Remote access for Mac users and businesses with poor internet connection: <a title=\"Remote Active Manager\" href=\"/active-club-solutions-is-proud-to-present-remote-active-club-manager/\">Remote Activ8 Manager</a>.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Shopping Cart & Web Interfaces\" href=\"/winery-pos-features/winery-ecommerce/\">Responsive Ecommerce</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/one_third]\r\n\r\n[/fullbox]','Technical Support','','publish','open','open','','free-expert-technical-support','','','2017-04-26 22:42:35','2017-04-27 05:42:35','',1435,'https://activeclubsolutions.net/?page_id=1496',0,'page','',0),
(1497,2,'2014-07-28 00:00:06','2014-07-28 07:00:06','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h2 style=\"text-transform: uppercase;\"><strong>Phone, Tablet, Desktop Designed ECOMMERCE PLATFORMS</strong></h2>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nEcommerce is an essential arm of any DTC sales program.  Solutions run the gamut from simple yet personalized to extremely complex and highly customized.  Activ8 offers the best of both worlds because what works for your neighbor may not be right for you.\r\n\r\nActiv8 offers an easy, personalized hosted solution as well as fully customizable self-hosted solution.  Both solutions are tied directly to your existing, single Activ8 database, eliminating redundancy and providing:\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n<li>Elevated efficiency</li>\r\n<li>Elevated insight to your total DTC sales performance.</li>\r\n</ul>\r\n[/icon_list]\r\nBoth solutions offer the following features:\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n<li>Digital store and secure, single page checkout</li>\r\n<li>Shopper login and profile self-management</li>\r\n<li>Club registration or signups</li>\r\n<li>Member choice or allocation club selection pages</li>\r\n<li>Newsletter subscription</li>\r\n<li>Unsubscribe</li>\r\n<li>Forgot Password assistance</li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h2><strong>HOSTED VS. SELF-HOSTED?</strong></h2>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nMany of the strongest eCommerce solutions on the market re-direct your shoppers away from your website to shopping, club and profile web pages hosted on the solution provider’s website.  These are called “Hosted” solutions.\r\n\r\nA hosted solution is best if you want shorter launch times, simple designs and are not worried about granular customization. You find the solution that speeds your customers through the checkout process, and you launch your store.  Activ8 offers all the features listed above in our hosted solution format.\r\n\r\nChoose from the design templates listed below. You’ll provide us with your logo or header image, and we will set it up quickly.  Once we have the pages setup on our server, we will setup the web configuration in your Activ8 database and supply the re-direct links to your web manager.  We will also teach you how to personalize several other items on each page.\r\n\r\nOn the other hand, many businesses spend tens of thousands of dollars on their brand image and they want to carry that brand image, in granular detail, through the catalog, shopping cart, club registration and member portal to provide a seamless user experience.  Rather than the shopping cart being hosted on our server, or other server, we add to your website our innovative <u>‘cookieless’</u> <em>iframes</em> (creating our pages within your pages – embedded).\r\n\r\nActiv8’s advanced eCommerce offers iFrame plugins for WordPress sites or full HTML coding for businesses using SquareSpace, WIX, Weebly, Shopify and other content management systems (CMS). This allows you to contract with our in-house <u>web design team</u> to modify the CSS and carry fonts, colors, imagery, animation and more throughout the pages your customers will use to interact with your Activ8 database.\r\n\r\nYour branded web site is then connected directly to your customer records, inventory records, product images and sales transactions for a flawless experience for both you and your customers.\r\n\r\nThe key to the solution that is right for you is to determine the weight of branding, speed of launch and your budget. Let your customers enjoy a full, state of the art online shopping experience and catapult your wine sales to the next level.\r\n\r\nActiv8’s eCommerce toolkit can breathe life into your existing website and is a direct extension of your Activ8 Commerce’ <a href=\"https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/\"> POS </a>, and <a href=\"https://activeclubsolutions.net/winery-pos-features/wine-club-management/\">Club Software</a>. It is one, end-to-end solution\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<h2><strong>EXPLORE OUR ECOMMERCE FEATURES</strong></h2>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nBoth solutions offer a catalog and shopping cart.  But they also offer so much more.\r\n<ul>\r\n<li>Basic catalog is laid out in a grid for easy viewing</li>\r\n<li>Product details are visible with a single click on a product image</li>\r\n<li>Add to Cart buttons are on both views to ease and speed up the shopping experience</li>\r\n<li>Shoppers will enjoy a refreshing and easy shopping experience with single page checkout</li>\r\n<li>Single page checkout will also reduce abandoned carts and increase your sales</li>\r\n<li>Customers can benefit from our abandoned cart feature</li>\r\n<li>Activ8 offers URL parameters for marketing campaigns to specify catalog entry points</li>\r\n<li>Activ8 <strong>gift cards</strong>, which include a security code, can be used on the shopping cart.</li>\r\n<li>Multiple brands and shopping carts within one database are supported</li>\r\n<li>Our templates are designed for phone, tablet and desktop devices.</li>\r\n<li>All online orders and updated customer data automatically flow into Activ8 – <strong>Manager </strong>for customer record creation, payment card, order, and shipment processing, keeping all your sales in one single system.</li>\r\n<li>Activ8 <strong>gift cards</strong>, which include a security code, can be used on the shopping cart.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<h2 id=\"templates\"><strong>EXPLORE OUR DESIGN TEMPLATES</strong></h2>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<ul>\r\n<li>Below are various Activ8 design templates showing what your online store might look like and how it would function.</li>\r\n<li>The examples shown here are running in WordPress which provides our web design team full flexibility and a universe of themes and plugins.</li>\r\n<li>Environments like Facebook, SquareSpace, and WIX, to varying degrees, have many limitations to what can be accomplished.</li>\r\n<li>Activ8 specializes in customizing the design templates to suit your particular needs.</li>\r\n<li>Activ8 specializes in a service to move existing Coldfusion, SquareSpace, and WIX web sites to WordPress… at an affordable price – without a redesign – a transfer.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<h2><strong>Try all these designs on a phone, tablet in both orientations, and desktop</strong></h2>\r\n[gap height=\"10\" /]\r\n\r\n[one_half last=no]\r\n<h3>Calistoga</h3>\r\n<a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-7\"><img src=\"/wp-content/uploads/2018/07/DesignCalistoga.png\" /></a>\r\n[/one_half]\r\n[one_half last=yes]\r\n<h3>Columbia</h3>\r\n<a href=\"/winery-pos-features/winery-ecommerce/online-example-store-columbia\"><img src=\"/wp-content/uploads/2019/07/DesignColumbia.png\" /></a>\r\n[/one_half]\r\n\r\n[one_half last=no]\r\n<h3>Dundee</h3>\r\n<a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-5\"><img src=\"/wp-content/uploads/2018/07/DesignDundee.png\" /></a>\r\n[/one_half]\r\n[one_half last=yes]\r\n<h3>Elk Grove</h3>\r\n<a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-2\"><img src=\"/wp-content/uploads/2018/07/DesignElkgrove.png\" /></a>\r\n[/one_half]\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[one_half last=no]\r\n<h3>Finger Lakes</h3>\r\n<a href=\"/winery-pos-features/winery-ecommerce/online-example-store-finger-lakes\"><img src=\"/wp-content/uploads/2019/07/DesignFingerLakes.png\" /></a>\r\n[/one_half]\r\n[one_half last=yes]\r\n<h3>Livermore</h3>\r\n<a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-1\"><img src=\"/wp-content/uploads/2019/07/DesignLivermore2.png\" /></a>\r\n[/one_half]\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[one_half last=no]\r\n<h3>Napa</h3>\r\n<a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-6\"><img src=\"/wp-content/uploads/2018/07/DesignNapa.png\" /></a>\r\n[/one_half]\r\n[one_half last=yes]\r\n<h3>Paso Robles</h3>\r\n<a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-8\"><img src=\"/wp-content/uploads/2018/07/DesignPasoRobles.png\" /></a>\r\n[/one_half]\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[one_half last=no]\r\n<h3>Sonoma</h3>\r\n<a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-9\"><img src=\"/wp-content/uploads/2018/07/DesignSonoma.png\" /></a>\r\n[/one_half]\r\n[one_half last=yes]\r\n<h3>Urban Mist</h3>\r\n<a href=\"/winery-pos-features/winery-ecommerce/online-example-store-urban\"><img style=\"margin-left:20px\" src=\"/wp-content/uploads/2019/07/DesignUrban6.png\" width=\"80%\"/></a>\r\n[/one_half]\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[one_half last=yes]\r\n<h3>Walla Walla</h3>\r\n<a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-4\"><img src=\"/wp-content/uploads/2018/07/DesignWallaWalla.png\" /></a>\r\n[/one_half]\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<a title=\"Shopping Cart Add-On\" href=\"/wine-club-software-pricing/winery-website-shopping-cart/\">View Winery Ecommerce Pricing</a>.\r\n\r\n[gap height=\"25\" /]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h1>Club Signup and Account Management</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<span style=\"color: #2d3038;\">Giving your customers access to their information online and through mobile interfaces allows them to easily view their purchase history, track orders, and update their information. These customer interfaces are vital for revenue recovery and customer visibility.</span>\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n	<li>The software includes <b>club signup, member choice / allocation, and account management</b>.</li>\r\n	<li>Customer sign up and login web pages that are integrated into your website to appear seamlessly with your site design.</li>\r\n	<li>Tablet and mobile ready customer login and shopping pages.</li>\r\n	<li>Make club signup a breeze with our tablet signup <b>kiosk</b>.</li>\r\n	<li>Below are links to these various components.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[ninzio_button text=\"Club Signup\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/winery-pos-features/winery-ecommerce/club-signup/\" /]\r\n\r\n[ninzio_button text=\"Manage Account\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/winery-pos-features/winery-ecommerce/manage-account/\" /]\r\n\r\n[ninzio_button text=\"Member Choice / Allocation\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/winery-pos-features/winery-ecommerce/member-choice/\" /]\r\n\r\n[ninzio_button text=\"Wholesale\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/winery-pos-features/winery-ecommerce/wholesale/\" /]\r\n\r\n[gap height=\"25\" /]\r\nFacebook pages are supported.\r\n\r\n[ninzio_button text=\"Activ8 Facebook Page showing Web Tools\" size=\"small\" target=\"_blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"http://www.facebook.com/activeclubsolutions\" /]\r\n\r\n[gap height=\"25\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h1>Combine the <i>iframes</i></h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<span style=\"color: #2d3038;\">The <i>iframes</i> can be combined on one page to create an elegant user experience. Create pages on your web site for members to manage their account, view and track orders (even tasting room purchases), member choice club selection, and even shop at the same time.</span>\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n	<li>Below are links to the combinations of <i>iframes</i> the Activ8 Web Tools supports.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[ninzio_button text=\"Manage Account &amp; Member Choice / Allocation Combined\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/winery-pos-features/winery-ecommerce/account-memberchoice/\" /]\r\n\r\n[ninzio_button text=\"Online Store &amp; Manage Account Combined\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/winery-pos-features/winery-ecommerce/cart-manage/\" /]\r\n\r\n[ninzio_button text=\"Manage Account &amp; Online Store Combined\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/winery-pos-features/winery-ecommerce/manage-cart/\" /]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n	<li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n	<li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n	<li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n	<li><strong><a title=\"Integrated &amp; Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated &amp; Certified</a></strong></li>\r\n	<li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n	<li><strong><a title=\"Marketing, CRM &amp; Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM &amp; Customer Service</a></strong></li>\r\n	<li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n	<li><strong><a title=\"Web Design Services\" href=\"/winery-pos-features/platform/web-design-portfolio/\">Web Design Services</a></strong></li>\r\n	<li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<h1>Learn about the Application Scenarios</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[one_half last=\"yes\"]\r\n[box title=\"Club Signup - Account Management\"][ACSVimeo id=277588857 width=\"370\" height=\"209\"/][/box]\r\n[/one_half]\r\n[one_half last=\"yes\"]\r\n[box title=\"Member Choice / Allocation / Futures\"][ACSVimeo id=277588884 width=\"370\" height=\"209\"/][/box]\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n[box title=\"Digital Marketing on Mobile\"][ACSVimeo id=342617291 width=\"370\" height=\"209\"/][/box]\r\n[/one_half]\r\n[one_half last=\"yes\"]\r\n[box title=\"Online Shopping - Guest &amp; Member\"][ACSVimeo id=277588911 width=\"370\" height=\"209\"/][/box]\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n[box title=\"Page Persistence\"][ACSVimeo id=301422527 width=\"370\" height=\"209\"/][/box]\r\n[/one_half]\r\n[one_half last=\"yes\"]\r\n[box title=\"Online Shopping - Gift Cards\"][ACSVimeo id=294987696 width=\"370\" height=\"209\"/][/box]\r\n[/one_half]\r\n[one_half last=\"yes\"]\r\n[box title=\"Design Templates\"][ACSVimeo id=346750007 width=\"370\" height=\"209\"/][/box]\r\n[/one_half]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"5\" bottom=\"5\" /]\r\n\r\n<img class=\"alignnone aligncenter\" src=\"/wp-content/uploads/2017/02/Signupinwinery_2.png\" alt=\"Activ8 club solutions signup kiosk registration account management ipad tablet\" width=\"650\" height=\"433\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-2277\" src=\"/wp-content/uploads/2017/01/manage-shipping2.png\" alt=\"manage-shipping2\" width=\"1373\" height=\"1593\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-2276\" src=\"/wp-content/uploads/2017/01/manage-orders2.png\" alt=\"manage-orders2\" width=\"1297\" height=\"1593\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-2275\" src=\"/wp-content/uploads/2017/01/manage-orderlist2.png\" alt=\"manage-orderlist2\" width=\"1373\" height=\"1594\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-2472\" src=\"/wp-content/uploads/2017/03/FacebookCatalog.png\" alt=\"FacebookCatalog\" width=\"723\" height=\"985\" />\r\n\r\n<img class=\"aligncenter size-full wp-image-2464\" src=\"/wp-content/uploads/2017/03/FacebookSignup.png\" alt=\"FacebookSignup\" width=\"716\" height=\"955\" />\r\n[/one_third]\r\n\r\n[/fullbox]\r\n\r\n','Phone, Tablet, Desktop Designed Ecommerce','','publish','open','open','','winery-ecommerce','','','2019-12-15 20:53:22','2019-12-16 04:53:22','',1435,'https://activeclubsolutions.net/?page_id=1497',0,'page','',0),
(1498,2,'2014-07-28 00:00:23','2014-07-28 07:00:23','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"] [two_thirds last=\"no\"]\r\n<h1>Winery Software Technology</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nActiv8 Commerce\'winery POS and wine club software system includes:\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n 	<li><strong>Activ8 POS: </strong>a powerful mobile native app</li>\r\n 	<li><strong>Activ8 Manager</strong>: a powerful database management system</li>\r\n 	<li><strong>Activ8 online registration and member login</strong>: customized web interface for club members</li>\r\n</ul>\r\n[/icon_list]\r\n\r\nTogether with these standard components, Activ8 Commerce offers the optional <strong><a title=\"Shopping Cart &amp; Web Interfaces\" href=\"/wine-club-software-features/winery-ecommerce/\">Activ8 Winery Ecommerce Web Tools</a></strong>.\r\n\r\n<strong>Activ8\'s Manager</strong> searching, display, and reporting features are built on more than fifteen years of experience in advanced, patented database management technology. Activ8 Manager is built and customized for each client according to their business needs and structure. It is the most powerful and customizable administrative interface of the winery DTC industry in its class.\r\n\r\nThe Activ8 Manager application works in the cloud, but is feature-rich and offers an enhanced user experience and control compared with browser-based applications.\r\n\r\nThe<strong> Activ8 POS native app</strong> offers an enhanced user experience and control compared with web base apps.\r\n\r\nThe<strong> web interfaces</strong> (registration web pages, club member secure login web page, club administrative web page, shopping cart) are optimized to making customers\' and administrative web pages fast and efficient. All pages have a responsive design for optimal mobile use.\r\n\r\nActiv8 POS, wine club software and Ecommerce are built in one single database. There is no import or export between applications. Any change or action happens accurately and instantly across all systems and locations.\r\n\r\n[gap height=\"25\" /]\r\n<h1>Infrastructure &amp; Security</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nActiv8 Manager uses <strong>secure cloud computing technology</strong>. Every client gets its own database manager, on its own computers, and its own separate, fully secure database.\r\n\r\nActiv8 Commerce\' <strong>data centers</strong> in California, Washington, Virginia and Texas ensure that data travels the shortest distance to and from clients throughout North America.\r\n\r\nFor Mac users and businesses with limited internet connection, Activ8 Commerce offers <strong><a title=\"Remote Active Manager\" href=\"/active-club-solutions-is-proud-to-present-remote-active-club-manager/\">Remote Activ8 Manager</a></strong>.\r\n\r\nIn addition to traditional security and firewalls, Activ8 Commerce has invested in a <strong>managed firewall service</strong> from a leading security specialist. The application and the entire infrastructure are PCI compliant and certified. All data is backed up daily.\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"] \r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Shopping Cart & Web Interfaces\" href=\"/winery-pos-features/winery-ecommerce/\">Responsive Ecommerce</a></strong></li>\r\n</ul>\r\n[/icon_list] [splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /] [/one_third] [/fullbox]','<span style=\"font-size:100%;margin-left:-600px;\">Software</span><br><span style=\"font-size:100%;margin-left:-600px;\">Technology</span>','','publish','open','open','','winery-software-technology','','','2019-09-02 21:30:28','2019-09-03 04:30:28','',1435,'https://activeclubsolutions.net/?page_id=1498',0,'page','',0),
(1500,2,'2014-07-28 00:05:18','2014-07-28 07:05:18','','Software Technology','','publish','open','closed','','1500','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',1435,'https://activeclubsolutions.net/?p=1500',12,'nav_menu_item','',0),
(1501,2,'2014-07-28 00:05:18','2014-07-28 07:05:18',' ','','','publish','open','closed','','1501','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',1435,'https://activeclubsolutions.net/?p=1501',11,'nav_menu_item','',0),
(1502,2,'2014-07-28 00:05:18','2014-07-28 07:05:18',' ','','','publish','open','closed','','1502','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',1435,'https://activeclubsolutions.net/?p=1502',13,'nav_menu_item','',0),
(1503,2,'2014-07-28 00:05:18','2014-07-28 07:05:18',' ','','','publish','open','closed','','1503','','','2020-09-18 11:18:18','2020-09-18 18:18:18','',1435,'https://activeclubsolutions.net/?p=1503',6,'nav_menu_item','',0),
(1504,2,'2014-07-28 00:05:18','2014-07-28 07:05:18',' ','','','publish','open','closed','','1504','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',1435,'https://activeclubsolutions.net/?p=1504',8,'nav_menu_item','',0),
(1505,2,'2014-07-28 00:05:18','2014-07-28 07:05:18',' ','','','publish','open','closed','','1505','','','2020-09-18 11:18:18','2020-09-18 18:18:18','',1435,'https://activeclubsolutions.net/?p=1505',5,'nav_menu_item','',0),
(1513,2,'2014-07-28 00:59:52','2014-07-28 07:59:52','','active club solutions wine software app for ipad tablet','','inherit','open','open','','news1','','','2014-07-28 00:59:52','2014-07-28 07:59:52','',1432,'https://activeclubsolutions.net/wp-content/uploads/2014/05/news1.jpg',0,'attachment','image/jpeg',0),
(1514,2,'2014-07-28 01:07:45','2014-07-28 08:07:45','','Activ8 Commerce Wine Club Software Vertical Response Constant Contact','','inherit','open','open','','news2','','','2014-07-28 01:07:45','2014-07-28 08:07:45','',1430,'https://activeclubsolutions.net/wp-content/uploads/2014/05/news2.jpg',0,'attachment','image/jpeg',0),
(1516,2,'2014-07-28 01:16:22','2014-07-28 08:16:22','','wine online shopping cart software','','inherit','open','open','','news3','','','2014-07-28 01:16:22','2014-07-28 08:16:22','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news3.jpg',0,'attachment','image/jpeg',0),
(1517,2,'2014-07-28 01:21:36','2014-07-28 08:21:36','<h3>Start managing wine club and e-commerce inventory and allocations better.</h3>\r\nWatch how it works... and what it will look like to your customers.\r\n\r\n<!-- copy and paste. Modify height and width if desired. --><iframe class=\"tscplayer_inline embeddedObject\" name=\"tsc_player\" scrolling=\"no\" frameborder=\"0\" type=\"text/html\" style=\"overflow:hidden;\" src=\"http://www.screencast.com/users/ActiveClubMgmt/folders/Tutorials/media/6290294b-f055-4cec-b514-8e3026aec1ba/embed\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>\r\n\r\nIf a wine club or shopping cart transaction is created, the inventory in the transaction is \"allocated”. The quantity available is reduced and equal to the quantity on hand minus the quantity allocated.\r\n\r\nIf a transaction is removed, the inventory allocation is reversed which affects the stock available.\r\n\r\nIf a transaction is modified, the inventory allocation is modified which affects the stock available.The allocation gets adjusted accordingly when orders are \"picked up\", \"shipped\" or returned or a shipment is voided.\r\n\r\nThis new feature will show \"real time\" inventory status on the Selection tab of the wine club member secure login page, and on the shopping cart catalog.The Web Pages use the \"available\" quantity.The Activ8 Web Pages can display \"Sold Out\", \"Only 1 in Stock\", \"Only X in Stock\" (for up to 12) for each item.\r\n\r\n<a title=\"Contact Us\" href=\"/contact-active-club-solutions/\">Contact Us</a> for assistance with inventory tracking. ','New Inventory Tracking Features','','pending','closed','open','','new-inventory-tracking-features','','','2022-08-14 21:05:00','2022-08-15 04:05:00','',0,'https://activeclubsolutions.net/?p=1517',0,'post','',0),
(1518,2,'2014-07-28 01:24:51','2014-07-28 08:24:51','','wine online store ecommerce inventory tracking','','inherit','open','open','','news4','','','2014-07-28 01:24:51','2014-07-28 08:24:51','',1517,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news4.jpg',0,'attachment','image/jpeg',0),
(1519,2,'2014-07-28 01:28:17','2014-07-28 08:28:17','Dan has years of experience as a leader in the winery industry. His knowledge, charisma, and expertise in brand management and winery direct-to-consumer strategies make him an exceptional addition to our company. We look forward to giving all our clients and partners the opportunity to meet Dan and work with him.\r\n\r\nYou may contact Dan at <a href=\"mailto:dan@activeclubsolutions.net\">dan@activeclubsolutions.net</a>, or by phone at 877-441-2582 (441-CLUB), ext. 56','Dan Nechemias is joining our team as National Sales Manager','','pending','closed','open','','dan-nechemias-is-joining-our-team-as-national-sales-manager','','','2022-08-14 21:05:00','2022-08-15 04:05:00','',0,'https://activeclubsolutions.net/?p=1519',0,'post','',0),
(1520,2,'2014-07-28 01:28:01','2014-07-28 08:28:01','','Dan Nechemias active club solutions national sales manager','','inherit','open','open','','news5','','','2014-07-28 01:28:01','2014-07-28 08:28:01','',1519,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news5.jpg',0,'attachment','image/jpeg',0),
(1521,2,'2014-07-28 01:39:27','2014-07-28 08:39:27','<h3>Activ8 Commerce is proud to present Remote Activ8 Manager</h3>\r\n\r\n<img class=\"alignright  wp-image-1523\" src=\"https://activeclubsolutions.net/wp-content/uploads/2014/07/news7-300x300.jpg\" alt=\"wine club software for mac\" width=\"206\" height=\"206\" />Remote Activ8 Manager offers new access to its cloud-based wine club management system, from PCs or Macs, via the Internet over almost any type of connection, including satellite.\r\n\r\nThis is another step toward a fully universal system. Online Activ8 Manager already offers great features for Mac, iPad, tablet, or mobile phone users. Remote Activ8 Manager is the solution for any \"full operator\" with a slow internet connection or a Mac.\r\n\r\nRemote Activ8 Manager is an add-on to Activ8 Manager, available with the <a title=\"Activ8 Pro\" href=\"/wine-club-software-pricing/pro-wine-club-software-pricing/\">Activ8 PRO</a> and <a title=\"Activ8 Enterprise\" href=\"/wine-club-software-pricing/enterprise-wine-club-software-pricing/\">Enterprise</a> packages. We are currently offering a three-month free trial. To try Remote Activ8 Manager, <a title=\"Contact Us\" href=\"/contact-active-club-solutions/\">Email Us</a>, or call 877-441-2582 (441-CLUB).','Remote Active Club Manager','','pending','closed','open','','remote-active-club-manager','','','2022-08-14 21:05:00','2022-08-15 04:05:00','',0,'https://activeclubsolutions.net/?p=1521',0,'post','',0),
(1522,2,'2014-07-28 01:38:56','2014-07-28 08:38:56','','wine club software for macs','','inherit','open','open','','news6','','','2014-07-28 01:38:56','2014-07-28 08:38:56','',1521,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news6.jpg',0,'attachment','image/jpeg',0),
(1523,2,'2014-07-28 01:38:58','2014-07-28 08:38:58','','wine club software for mac','','inherit','open','open','','news7','','','2014-07-28 01:38:58','2014-07-28 08:38:58','',1521,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news7.jpg',0,'attachment','image/jpeg',0),
(1524,2,'2014-07-28 01:47:26','2014-07-28 08:47:26','<h3>NEW! The Latest and smartest in customer selections: Customized Winemaker\'s Selection Club</h3>\r\n\r\nThis feature pre-assigns the winemaker\'s selection to all club members. They can then log on to their online account, review it, and make substitutions and/or add to it.\r\n\r\n<!-- copy and paste. Modify height and width if desired. --><iframe class=\"tscplayer_inline embeddedObject\" name=\"tsc_player\" scrolling=\"no\" frameborder=\"0\" type=\"text/html\" style=\"overflow:hidden;\" src=\"http://www.screencast.com/users/ActiveClubMgmt/folders/Tutorials/media/3c8e9b05-dfa3-486b-b314-2ab8dd2c36b2/embed\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> ','NEW! The Latest and Smartest in Customer Selections','','pending','closed','open','','new-the-latest-and-smartest-in-customer-selections','','','2022-08-14 21:05:00','2022-08-15 04:05:00','',0,'https://activeclubsolutions.net/?p=1524',0,'post','',0),
(1525,2,'2014-07-28 01:46:34','2014-07-28 08:46:34','','wine club custom selection winemaker\'s selection','','inherit','open','open','','news8','','','2014-07-28 01:46:34','2014-07-28 08:46:34','',1524,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news8.jpg',0,'attachment','image/jpeg',0),
(1526,2,'2014-07-28 01:53:25','2014-07-28 08:53:25','<h3>Who is this from? You get to choose.</h3>\r\nWe have introduced nicknames in our system emails. Nicknames allow you to customize the \"from\" field in system emails sent to your customers.\r\n\r\nWatch how to set it up.\r\n\r\n<!-- copy and paste. Modify height and width if desired. --><iframe class=\"tscplayer_inline embeddedObject\" name=\"tsc_player\" scrolling=\"no\" frameborder=\"0\" type=\"text/html\" style=\"overflow:hidden;\" src=\"http://www.screencast.com/users/ActiveClubMgmt/folders/Tutorials/media/4c5f69ba-0bc9-4c9c-bb93-2e9e00fa57b4/embed\" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> \r\n\r\n','Email Nicknames','','pending','closed','open','','email-nicknames','','','2022-08-14 21:05:00','2022-08-15 04:05:00','',0,'https://activeclubsolutions.net/?p=1526',0,'post','',0),
(1527,2,'2014-07-28 01:53:02','2014-07-28 08:53:02','','custom from field wine club software','','inherit','open','open','','news9','','','2014-07-28 01:53:02','2014-07-28 08:53:02','',1526,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news9.jpg',0,'attachment','image/jpeg',0),
(1528,2,'2014-07-28 01:56:08','2014-07-28 08:56:08','<h3>Use Activ8 Manager\'s attractive and personalized email communications to better serve your customers.</h3>\r\nActiv8 Commerce built-in email features are unique. Automated emails and available templates are key to great club member and customer service and communication.\r\n\r\nWe have enhanced the HTML capabilities of our system email to offer even more flexibility for your design, make your email friendlier, easy to read on any email engine or devices and skip the need for an attachment.\r\n\r\nAs always, your emails can include pictures, and web links and more importantly direct live links to your customer\'s online account and references to their personal profile and orders.\r\n\r\n[icon_list size=\"small medium large\" type=\"circle square\" icon=\"arrow-right\" icon_color=\"\" background_color=\"\"]\r\n<ul>\r\n	<li>Welcome emails (welcome, gift welcome, shopping cart welcome)</li>\r\n	<li>Announcement emails (email membership data email)</li>\r\n	<li>Selection Confirmation</li>\r\n	<li>Sales Receipts</li>\r\n	<li>Order Confirmation (cart confirmation email)</li>\r\n	<li>Sales Receipts (Sales/Credit receipt, gift receipt)</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n<span style=\"color: #2d3038;\">For assistance improving your email templates and system emails, please <a title=\"Contact Us\" href=\"/contact-active-club-solutions/\">Contact Us</a>.</span>','New HTML System Emails','','pending','closed','open','','new-html-system-emails','','','2022-08-14 21:05:00','2022-08-15 04:05:00','',0,'https://activeclubsolutions.net/?p=1528',0,'post','',0),
(1529,2,'2014-07-28 02:28:00','2014-07-28 09:28:00','','custom wine club email templates','','inherit','open','open','','news10','','','2014-07-28 02:28:00','2014-07-28 09:28:00','',1528,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news10.jpg',0,'attachment','image/jpeg',0),
(1530,2,'2014-07-29 00:02:46','2014-07-29 07:02:46','<h3>Acknowledge your customers on their birthday, without remembering or doing a thing!</h3>\r\n\r\nOur robot sends you notifications for:\r\n\r\n[icon_list size=\"small medium large\" type=\"circle square\" icon=\"angle-right\" icon_color=\"\" background_color=\"\"]\r\n<ul>\r\n	<li>customers birthdays</li>\r\n	<li>spouses birthdays</li>\r\n	<li>wedding anniversaries</li>\r\n	<li>and club membership anniversary!</li>\r\n</ul>\r\n[/icon_list]\r\n\r\nWe have taken this a step further, Activ8 Manager can send an automated email to your customers on these dates.\r\n\r\nWhat you make of this email is up to you. It can be a simple HTML greeting card, or an invitation, a special offer.','New Automated Birthday Recognition','','pending','closed','open','','new-automated-birthday-recognition','','','2022-08-14 21:05:00','2022-08-15 04:05:00','',0,'https://activeclubsolutions.net/?p=1530',0,'post','',0),
(1531,2,'2014-07-29 00:31:19','2014-07-29 07:31:19','Wine clubs and e-commerce are powerful tools that can help increase a winery\'s bottom line. These high-profit direct-to-consumer channels play an important part in improving the business\'s cash flow.\r\n\r\nActiv8 Manager\'s features help wine club and e-commerce managers control their costs.\r\n\r\nToday we are adding an important tool: multilocation inventory management.\r\n\r\nWhether the business has several tasting rooms or stores; or is simply moving from a storage location to a store, the tasting bar, or a virtual reserve for e-commerce; the manager can use Activ8 Manager to plan and control stock accordingly.','New Multilocation Inventory Management','','pending','closed','open','','new-multilocation-inventory-management','','','2022-08-14 21:04:41','2022-08-15 04:04:41','',0,'https://activeclubsolutions.net/?p=1531',0,'post','',0),
(1532,2,'2014-07-29 00:37:26','2014-07-29 07:37:26','Activ8 Manager\'s searching and reporting capabilities make it a unique and powerful club management system.\r\n\r\nSmart searches make it possible to manage large clubs efficiently. We have added many useful saved searches in Activ8 Manager and made them easy to access with a new saved search display at the top of your data list.\r\n\r\nFor a short tutorial, watch video above.','New Quick Search Feature','','pending','closed','open','','new-quick-search-feature','','','2022-08-14 21:04:41','2022-08-15 04:04:41','',0,'https://activeclubsolutions.net/?p=1532',0,'post','',0),
(1533,2,'2014-07-29 00:36:24','2014-07-29 07:36:24','','quick search active club manager wine club search','','inherit','open','open','','news11','','','2014-07-29 00:36:24','2014-07-29 07:36:24','',1532,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news11.jpg',0,'attachment','image/jpeg',0),
(1534,2,'2014-07-29 00:41:03','2014-07-29 07:41:03','Activ8 Commerce integrates seamlessly with GSO, UPS, Ship Compliant as well as many fulfillment warehouses. (<a title=\"Wine Shipping &amp; Fulfillment Partners\" href=\"/active-club-solutions-partners/\">Shipping and Fulfillment Partners</a>)\r\n\r\nActiv8 Commerce is THE ONLY wine club and e-commerce software provider fully integrated and certified with FedEx. No import or export!\r\n\r\nCore FedEx functionality is built in to Activ8 Commerce, so accessing the shipping and delivery services you need, from Activ8 Manager is simple and streamlined. Most importantly again, the administrator is not required to import and export.\r\n\r\nFedEx ensures that Activ8 clients can:\r\n\r\n[icon_list size=\"small medium large\" type=\"circle square\" icon=\"angle-right\" icon_color=\"\" background_color=\"\"]\r\n<ul>\r\n	<li><strong>Enjoy the peace of mind that a successful, marketplace-tested solution brings.</strong></li>\r\n	<li><strong>Ship within Activ8 Manager.</strong></li>\r\n	<li><strong>Reduce costly keystroke errors.</strong></li>\r\n	<li><strong>Access shipping options and rates for FedEx and other featured carriers without having to switch programs or re-enter information.</strong></li>\r\n	<li><strong>FedEx tests the shipping functionality of each solution to make sure it provides the reliability you expect from FedEx — with fast processing, powerful tracking and a broad array of services.</strong></li>\r\n</ul>\r\n[/icon_list]\r\n\r\nActiv8 Commerce periodically upgrades to the latest FedEx Compatible program giving Activ8 users access to all new great FedEx services and features.','FedEx Integration Update','','pending','closed','open','','fedex-integration-update','','','2022-08-14 21:04:41','2022-08-15 04:04:41','',0,'https://activeclubsolutions.net/?p=1534',0,'post','',0),
(1536,2,'2014-07-29 00:46:06','2014-07-29 07:46:06','','FedEx wine delivery','','inherit','open','open','','news12','','','2014-07-29 00:46:06','2014-07-29 07:46:06','',1534,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news121.jpg',0,'attachment','image/jpeg',0),
(1537,2,'2014-07-29 00:53:01','2014-07-29 07:53:01','<h3>Increase your wine sales by making gifting easy, personalized, and attractive!</h3>\r\nA special bottle of wine or a wine club membership makes a great gift for birthdays, anniversaries, Christmas, and especially Father\'s Day.\r\n\r\nActiv8 Commerce\' wine club software and e-commerce system comes with powerful automated gift features.\r\n<h2>Gift club memberships and online gift purchases</h2>\r\n[icon_list size=\"small medium large\" type=\"circle square\" icon=\"angle-right\" icon_color=\"\" background_color=\"\"]\r\n<ul>\r\n	<li><strong>Gift givers are billed and received detailed receipts, while gift recipients receive customized gift receipts without prices.</strong></li>\r\n	<li><strong>Customized, automated welcome e-mails are sent separately to the customer paying for the gift and the customer receiving the gift.</strong></li>\r\n	<li><strong>Gift messages are automatically included with the gift welcome e-mail and gift receipts.</strong></li>\r\n	<li><strong>Gift recipients can track their own shipments with a tracking link included in the gift receipt.</strong></li>\r\n	<li><strong>Gift givers can manage the membership and duration of the gift online.</strong></li>\r\n</ul>\r\n[/icon_list]\r\n<h2>New! Activ8 gift message card printing</h2>\r\nIncluding an attractive, personalized gift card in a wine shipment is as easy as one click!\r\n\r\nPrint all personal gift messages on Avery 5389-format cards, with your choice of designs from the store or on your own stationery.\r\n\r\nThe gift card will include: From: (gift giver name), To: (gift recipient name), and a personal message to the customer.\r\n\r\n<strong>To print gift notes:</strong>\r\n<ol>\r\n	<li>Load your printer with Avery 5389 sheets.</li>\r\n	<li>In the Transaction list, choose Gift-Avery 5389 from the View menu.</li>\r\n	<li>Select the desired transaction records.</li>\r\n	<li>Click Print.</li>\r\n</ol>','New! Active Club Gift Message Cards','','pending','closed','open','','new-active-club-gift-message-card-printing','','','2022-08-14 21:04:41','2022-08-15 04:04:41','',0,'https://activeclubsolutions.net/?p=1537',0,'post','',0),
(1538,2,'2014-07-29 00:52:43','2014-07-29 07:52:43','','wine club subscription gift','','inherit','open','open','','news13','','','2014-07-29 00:52:43','2014-07-29 07:52:43','',1537,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news13.jpg',0,'attachment','image/jpeg',0),
(1539,2,'2014-07-29 00:56:35','2014-07-29 07:56:35','','multilocation wine inventory control','','inherit','open','open','','news14','','','2014-07-29 00:56:35','2014-07-29 07:56:35','',1531,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news14.jpg',0,'attachment','image/jpeg',0),
(1540,2,'2014-07-29 01:31:33','2014-07-29 08:31:33','','automated wine club birthdays and anniversary notifications','','inherit','open','open','','news15','','','2014-07-29 01:31:33','2014-07-29 08:31:33','',1530,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news15.jpg',0,'attachment','image/jpeg',0),
(1542,2,'2014-07-29 01:38:45','2014-07-29 08:38:45','','custom from field wine club software','','inherit','open','open','','news16-2','','','2014-07-29 01:38:45','2014-07-29 08:38:45','',1526,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news161.jpg',0,'attachment','image/jpeg',0),
(1544,2,'2014-07-31 00:05:50','2014-07-31 07:05:50','','wine club management solution partner with fedex','','inherit','open','open','','partner-fedex','','','2014-07-31 00:05:50','2014-07-31 07:05:50','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-fedex.jpg',0,'attachment','image/jpeg',0),
(1548,2,'2014-07-31 00:18:48','2014-07-31 07:18:48','','wine club management solution partner with fedex','','inherit','open','open','','partner-fedex-2','','','2014-07-31 00:18:48','2014-07-31 07:18:48','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-fedex1.jpg',0,'attachment','image/jpeg',0),
(1549,2,'2014-07-31 00:19:16','2014-07-31 07:19:16','','ups wine shipping partner','','inherit','open','open','','partner-ups-2','','','2014-07-31 00:19:16','2014-07-31 07:19:16','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-ups1.jpg',0,'attachment','image/jpeg',0),
(1551,2,'2014-07-31 00:20:10','2014-07-31 07:20:10','','wine ecommerce sales partner safe haven wine services','','inherit','open','open','','partner-safehaven','','','2014-07-31 00:20:10','2014-07-31 07:20:10','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-safehaven.jpg',0,'attachment','image/jpeg',0),
(1552,2,'2014-07-31 01:25:40','2014-07-31 08:25:40','','alexander valley cellars','','inherit','open','open','','partner-avc','','','2014-07-31 01:25:40','2014-07-31 08:25:40','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-avc.jpg',0,'attachment','image/jpeg',0),
(1553,2,'2014-07-31 01:25:41','2014-07-31 08:25:41','','Pack N Ship Direct ','','inherit','open','open','','partner-pns','','','2014-07-31 01:25:41','2014-07-31 08:25:41','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-pns.jpg',0,'attachment','image/jpeg',0),
(1554,2,'2014-07-31 01:25:42','2014-07-31 08:25:42','','Bacchus Fulfillment','','inherit','open','open','','partner-bacchus','','','2014-07-31 01:25:42','2014-07-31 08:25:42','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-bacchus.jpg',0,'attachment','image/jpeg',0),
(1555,2,'2014-07-31 01:25:42','2014-07-31 08:25:42','','Wine Shipping','','inherit','open','open','','partner-ws','','','2014-07-31 01:25:42','2014-07-31 08:25:42','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-ws.jpg',0,'attachment','image/jpeg',0),
(1556,2,'2014-07-31 01:25:43','2014-07-31 08:25:43','','Copper Peak Logistics ','','inherit','open','open','','partner-copper','','','2014-07-31 01:25:43','2014-07-31 08:25:43','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-copper.jpg',0,'attachment','image/jpeg',0),
(1557,2,'2014-07-31 01:25:43','2014-07-31 08:25:43','','WineCo LLC','','inherit','open','open','','partner-wineco','','','2014-07-31 01:25:43','2014-07-31 08:25:43','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-wineco.jpg',0,'attachment','image/jpeg',0),
(1558,2,'2014-07-31 01:25:43','2014-07-31 08:25:43','','Wine Country Shipping','','inherit','open','open','','partner-wcs','','','2014-07-31 01:25:43','2014-07-31 08:25:43','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-wcs.jpg',0,'attachment','image/jpeg',0),
(1559,2,'2014-07-31 01:25:44','2014-07-31 08:25:44','','Oregon Wine Services and Storage','','inherit','open','open','','partner-oregon','','','2014-07-31 01:25:44','2014-07-31 08:25:44','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-oregon.jpg',0,'attachment','image/jpeg',0),
(1560,2,'2014-07-31 01:25:44','2014-07-31 08:25:44','','WSC Direct ','','inherit','open','open','','partner-wsc','','','2014-07-31 01:25:44','2014-07-31 08:25:44','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-wsc.jpg',0,'attachment','image/jpeg',0),
(1561,2,'2014-07-31 01:25:45','2014-07-31 08:25:45','','solutrix','','inherit','open','open','','partner-solu','','','2014-07-31 01:25:45','2014-07-31 08:25:45','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-solu.jpg',0,'attachment','image/jpeg',0),
(1562,2,'2014-07-31 01:25:45','2014-07-31 08:25:45','','compli wine software','','inherit','open','open','','partner-compli','','','2014-07-31 01:25:45','2014-07-31 08:25:45','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-compli.jpg',0,'attachment','image/jpeg',0),
(1563,2,'2014-07-31 01:25:45','2014-07-31 08:25:45','','compli_logo','','inherit','open','open','','compli_logo','','','2014-07-31 01:25:45','2014-07-31 08:25:45','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/compli_logo.png',0,'attachment','image/png',0),
(1564,2,'2014-07-31 01:25:46','2014-07-31 08:25:46','','wine compliance pro','','inherit','open','open','','partner-wcp','','','2014-07-31 01:25:46','2014-07-31 08:25:46','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-wcp.jpg',0,'attachment','image/jpeg',0),
(1565,2,'2014-07-31 01:25:46','2014-07-31 08:25:46','','baril compliance service','','inherit','open','open','','partner-baril','','','2014-07-31 01:25:46','2014-07-31 08:25:46','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-baril.jpg',0,'attachment','image/jpeg',0),
(1567,2,'2014-07-31 01:25:47','2014-07-31 08:25:47','','Intuit Quickbooks POS','','inherit','open','open','','partner-intuitpos','','','2014-07-31 01:25:47','2014-07-31 08:25:47','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-intuitpos.jpg',0,'attachment','image/jpeg',0),
(1569,2,'2014-07-31 01:25:48','2014-07-31 08:25:48','','intuit small business solutions','','inherit','open','open','','partner-intuitsb','','','2014-07-31 01:25:48','2014-07-31 08:25:48','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-intuitsb.jpg',0,'attachment','image/jpeg',0),
(1570,2,'2014-07-31 01:25:49','2014-07-31 08:25:49','','English Management Solutions','','inherit','open','open','','partners-english','','','2014-07-31 01:25:49','2014-07-31 08:25:49','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partners-english.jpg',0,'attachment','image/jpeg',0),
(1571,2,'2014-07-31 01:25:49','2014-07-31 08:25:49','','SDG Business Solutions integration','','inherit','open','open','','partners-sdg','','','2014-07-31 01:25:49','2014-07-31 08:25:49','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partners-sdg.jpg',0,'attachment','image/jpeg',0),
(1572,2,'2014-07-31 01:25:49','2014-07-31 08:25:49','','pivotal payments','','inherit','open','open','','partner-pivotal','','','2014-07-31 01:25:49','2014-07-31 08:25:49','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-pivotal.jpg',0,'attachment','image/jpeg',0),
(1574,2,'2014-07-31 01:25:50','2014-07-31 08:25:50','','Intuit quickbooks payment gateway','','inherit','open','open','','partner-intuitpay','','','2014-07-31 01:25:50','2014-07-31 08:25:50','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-intuitpay.jpg',0,'attachment','image/jpeg',0),
(1575,2,'2014-07-31 01:25:51','2014-07-31 08:25:51','','Gravity payments gateway','','inherit','open','open','','partner-gravity','','','2014-07-31 01:25:51','2014-07-31 08:25:51','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-gravity.jpg',0,'attachment','image/jpeg',0),
(1577,2,'2014-07-31 01:25:52','2014-07-31 08:25:52','','winery advisor website integration','','inherit','open','open','','partner-wa','','','2014-07-31 01:25:52','2014-07-31 08:25:52','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-wa.jpg',0,'attachment','image/jpeg',0),
(1578,2,'2014-07-31 01:25:52','2014-07-31 08:25:52','','vertical response integration winery website','','inherit','open','open','','partner-vr','','','2014-07-31 01:25:52','2014-07-31 08:25:52','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-vr.jpg',0,'attachment','image/jpeg',0),
(1579,2,'2014-07-31 01:25:52','2014-07-31 08:25:52','','noaa wine website partner','','inherit','open','open','','partner-noaa','','','2014-07-31 01:25:52','2014-07-31 08:25:52','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-noaa.jpg',0,'attachment','image/jpeg',0),
(1581,2,'2014-07-31 01:25:54','2014-07-31 08:25:54','','constant contact integration wine sales website','','inherit','open','open','','partner-cc','','','2014-07-31 01:25:54','2014-07-31 08:25:54','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-cc.jpg',0,'attachment','image/jpeg',0),
(1582,2,'2014-07-31 01:25:54','2014-07-31 08:25:54','','wine online store intuit quickbooks integration','','inherit','open','open','','partner-intuit','','','2014-07-31 01:25:54','2014-07-31 08:25:54','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-intuit.jpg',0,'attachment','image/jpeg',0),
(1583,2,'2014-07-31 01:25:55','2014-07-31 08:25:55','','qb_intuitlogo_horiz_rgb','','inherit','open','open','','qb_intuitlogo_horiz_rgb','','','2014-07-31 01:25:55','2014-07-31 08:25:55','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/qb_intuitlogo_horiz_rgb.png',0,'attachment','image/png',0),
(1585,2,'2014-07-31 01:25:57','2014-07-31 08:25:57','','wine website payment gateway partner paypros','','inherit','open','open','','partner-paypros','','','2014-07-31 01:25:57','2014-07-31 08:25:57','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-paypros.jpg',0,'attachment','image/jpeg',0),
(1586,2,'2014-07-31 01:25:58','2014-07-31 08:25:58','','ship compliant wine website partner','','inherit','open','open','','partner-shipc','','','2014-07-31 01:25:58','2014-07-31 08:25:58','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/partner-shipc.jpg',0,'attachment','image/jpeg',0),
(1587,2,'2014-07-31 01:38:06','2014-07-31 08:38:06','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"] [two_thirds last=\"no\"]\r\n<h1>Shipping &amp; Fulfillment Partners</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nActiv8 Commerce is certified by the following shippers and provides seamless integration for creating labels, tracking shipments, voiding labels, canceling shipments, rate, quotes and other shipping needs. The shipping tracking numbers are logged into each customer transactions and included in the sales receipts as the receipts are emailed and/or printed.\r\n\r\n[gap height=\"25\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<img class=\"alignnone size-full wp-image-1548\" src=\"/wp-content/uploads/2014/05/partner-fedex1.jpg\" alt=\"wine club management solution partner with fedex\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"25\" /]\r\n<h3>FedEx</h3>\r\nWebsite: <a title=\"FedEx Wine Shipping Partner\" href=\"http://www.fedex.com/us/international/wine-shipping/get-started/index.html\" target=\"_blank\" rel=\"nofollow\">fedex.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<img class=\"alignnone wp-image-1549 size-full\" src=\"/wp-content/uploads/2014/05/partner-ups1.jpg\" alt=\"ups wine shipping partner\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"25\" /]\r\n<h3>UPS</h3>\r\nWebsite: <a title=\"UPS Wine Shipment Partner\" href=\"http://www.ups.com/\" target=\"_blank\">ups.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<img class=\"alignnone wp-image-1550 size-full\" src=\"/wp-content/uploads/2017/01/GSOLogoFinal.png\" alt=\"GSO wine shipping partner\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"15\" /]\r\n<h3>GSO</h3>\r\nContact: <strong>Troy Ruffing</strong>\r\n714-423-4391 - <a href=\"mailto:truffing@gso.com\">truffing@gso.com</a>\r\nWebsite: <a title=\"GSO Wine Shipping\" href=\"http://www.gso.com/\" target=\"_blank\">gso.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"40\" /]\r\n<h1>Fulfillment Warehouses</h1>\r\n[gap height=\"25\" /]\r\n\r\n[one_third last=\"no\"]\r\n\r\n<a href=\"http://www.alexandervalleycellars.com\"><img class=\"alignnone size-full wp-image-1552\" src=\"/wp-content/uploads/2014/05/partner-avc.jpg\" alt=\"alexander valley cellars\" width=\"150\" height=\"97\" /></a>\r\n\r\n[/one_third]\r\n\r\n[one_third last=\"no\"]\r\n\r\n<a href=\"http://www.bacchusfulfillment.com\"><img class=\"alignnone size-full wp-image-1554\" src=\"/wp-content/uploads/2014/05/partner-bacchus.jpg\" alt=\"Bacchus Fulfillment\" width=\"150\" height=\"97\" /></a>\r\n\r\n[/one_third]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n<a href=\"http://www.copperpeaklogistics.com\"><img class=\"alignnone size-full wp-image-1556\" src=\"/wp-content/uploads/2014/05/partner-copper.jpg\" alt=\"Copper Peak Logistics \" width=\"150\" height=\"97\" /></a>\r\n\r\n[/one_third]\r\n\r\n[one_third last=\"no\"]\r\n\r\n<a href=\"http://www.oregonwineservices.com\"><img class=\"alignnone size-full wp-image-1559\" src=\"/wp-content/uploads/2014/05/partner-oregon.jpg\" alt=\"Oregon Wine Services and Storage\" width=\"150\" height=\"97\" /></a>\r\n\r\n[/one_third]\r\n\r\n[one_third last=\"no\"]\r\n\r\n<a href=\"http://www.winedirect.com\"><img class=\"alignnone size-full\" src=\"/wp-content/uploads/2017/04/WineDirect_2.png\" alt=\"Wine Direct \" width=\"150\" height=\"97\" /></a>\r\n\r\n[/one_third]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n<a href=\"http://www.vynapse.com\"><img class=\"alignnone size-full wp-image-1553\" src=\"/wp-content/uploads/2014/05/partner-pns.jpg\" alt=\"Pack N Ship Direct \" width=\"150\" height=\"97\" /></a>\r\n\r\n[/one_third]\r\n\r\n[one_third last=\"no\"]\r\n\r\n<a href=\"http://wineshipping.com\"><img class=\"alignnone size-full wp-image-1555\" src=\"/wp-content/uploads/2014/05/partner-ws.jpg\" alt=\"Wine Shipping\" width=\"150\" height=\"97\" /></a>\r\n\r\n[/one_third]\r\n\r\n[one_third last=\"no\"]\r\n\r\n<a href=\"http://www.winecollc.com\"><img class=\"alignnone size-full wp-image-1557\" src=\"/wp-content/uploads/2014/05/partner-wineco.jpg\" alt=\"WineCo LLC\" width=\"150\" height=\"97\" /></a>\r\n\r\n[/one_third]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n<a href=\"www.winecountryshipping.com\"><img class=\"alignnone size-full wp-image-1558\" src=\"/wp-content/uploads/2014/05/partner-wcs.jpg\" alt=\"Wine Country Shipping\" width=\"150\" height=\"97\" /></a>\r\n\r\n[/one_third]\r\n\r\n[/two_thirds]\r\n\r\n[one_quarter last=\"yes\"]\r\n<h1>View All Partners</h1>\r\n\r\n[ninzio_button text=\"Accounting Systems\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/accounting\" /]\r\n\r\n[ninzio_button text=\"Compliance Providers\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/compliance-providers\" /]\r\n\r\n[ninzio_button text=\"Misc Integrated Services\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/misc-integrated-services\" /]\r\n\r\n[ninzio_button text=\"Payment Processing\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/payment-processing-partners\" /]\r\n\r\n[ninzio_button text=\"Website Marketing &amp; Media\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/website-marketing-media\" /]\r\n\r\n[/one_quarter]\r\n\r\n[/fullbox]','Shipping & Fulfillment','','publish','open','open','','shipping-fulfillment-partners','','','2018-10-31 22:31:37','2018-11-01 05:31:37','',1436,'https://activeclubsolutions.net/?page_id=1587',0,'page','',0),
(1588,2,'2014-07-31 01:38:20','2014-07-31 08:38:20','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"] [two_thirds last=\"no\"]\r\n<h3>Activ8 Commerce has partnered with OpenEdge to bring you an integrated payment processing solution loaded with time and money-saving benefits for you!</h3>\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2014/07/OpenedgeH.jpg\"><img class=\"alignnone wp-image-1737 \" src=\"https://activeclubsolutions.net/wp-content/uploads/2014/07/OpenedgeH-1024x576.jpg\" alt=\"OpenedgeH\" width=\"656\" height=\"369\" /></a>\r\n<h2>Get integrated payment processing with OpenEdge and receive:</h2>\r\n[gap height=\"20\" /]\r\n\r\n[icon_list size=\"small medium large\" type=\"circle square\" icon=\"angle-right\" icon_color=\"\" background_color=\"\"]\r\n<ul>\r\n	<li><strong>PCI compliant OpenEdge Innovo platform with features:</strong>\r\n<ul>\r\n	<li>One-step payment processing.</li>\r\n	<li>No payment gateway software costs.</li>\r\n	<li>Online payment acceptance.</li>\r\n</ul>\r\n</li>\r\n	<li><strong><strong><span class=\"primaryColor\">FREE OpenEdge CustomerCare</span> – </strong></strong>Dedicated specialists who are available by phone, email and online 24/7/365.[gap height=\"15\" /]</li>\r\n	<li><strong><span class=\"primaryColor\">FREE OpenEdge Account Analysis with price guarantee.</span></strong></li>\r\n	<li>OpenEdge pricing experts have analyzed thousands of merchant accounts! The analysis will provide you with everything you need to know about your rates and how OpenEdge can save you money. OpenEdge will beat your current rates or any other published offer you have in hand or you receive a $50 gift card.*</li>\r\n</ul>\r\n[/icon_list]\r\n<h3><a title=\"Get set up with OpenEdge today!\" href=\"http://www.paypros.com/landing/activeclubsolutions.asp\" target=\"_blank\">[ninzio_button text=\"Get set up with OpenEdge today!\" size=\"small\" target=\"_self _blank\" icon=\"angle-right\" back_color=\"\" color=\"\" href=\"http://www.paypros.com/landing/activeclubsolutions.asp\" /]</a></h3>\r\nWebsite: <a title=\"PayPros payment gateway for wine websites\" href=\"http://www.paypros.com/landing/activeclubsolutions.asp\" target=\"_blank\" rel=\"nofollow\">http://www.openedgepay.com</a>\r\nContact: (866) 841-9790, <a href=\"mailto:Solutions@openedgepay.com\">Solutions@openedgepay.com</a>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<em>* If OpenEdge cannot beat the merchant\'s effective rate, only one $50 gift card is awarded per merchant, not per location. Businesses outside the U.S. do not qualify.</em>\r\n\r\n[/two_thirds]\r\n\r\n[one_quarter last=\"yes\"]\r\n<h1>View All Partners</h1>\r\n[ninzio_button text=\"Shipping &amp; Fulfillment\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/shipping-fulfillment-partners\" /]\r\n\r\n[ninzio_button text=\"Preferred Payment Gateway\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/paypros-payment-gateway\" /]\r\n\r\n[ninzio_button text=\"Payment Gateways\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/payment-gateway-partners\" /]\r\n\r\n[ninzio_button text=\"Accounting Systems\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/accounting\" /]\r\n\r\n[ninzio_button text=\"Compliance Providers\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/compliance-providers\" /]\r\n\r\n[ninzio_button text=\"Website Marketing &amp; Media\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/website-marketing-media\" /]\r\n\r\n[ninzio_button text=\"Mobile POS Equipment\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/pos-portal\" /]\r\n\r\n[ninzio_button text=\"Misc Integrated Services\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/misc-integrated-services\" /]\r\n\r\n[/one_quarter]\r\n\r\n[/fullbox]','OpenEdge Payment Gateway','','private','open','open','','paypros-payment-gateway','','','2017-01-10 18:28:42','2017-01-11 02:28:42','',1436,'https://activeclubsolutions.net/?page_id=1588',0,'page','',0),
(1589,2,'2014-07-31 01:38:35','2014-07-31 08:38:35','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"] [two_thirds last=\"no\"]\r\n<h1>Payment Processing Partners</h1>\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"0\" /]\r\n[gap height=\"25\" /]\r\n[one_half last=\"no\"]\r\n<img class=\"wp-image-1859 alignnone\" src=\"https://secureclub.net/images/activeclubmgmt/worldpay-logo.png\" alt=\"WorldPay\" width=\"200\" />\r\n[/one_half]\r\n[one_half last=\"yes\"]\r\n<h3>WorldPay</h3>\r\nWorldPay from FIS\r\n<a href=\"mailto:Channelsupport@worldpay.com\" rel=\"nofollow\">Channelsupport@worldpay.com</a>\r\nWebsite: <a href=\"http://www.worldpay.com\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">www.worldpay.com</a>\r\nPhone: 800-846-4472\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"25\" /]\r\n[one_half last=\"no\"]\r\n<img class=\"alignnone wp-image-1736 \" src=\"/wp-content/uploads/2014/11/openedge-150x150.jpg\" alt=\"\" width=\"170\" height=\"170\" />\r\n[/one_half]\r\n[one_half last=\"yes\"]\r\n<h3>OpenEdge</h3>\r\n<a href=\"mailto:startnow@openedgepay.com\" rel=\"nofollow\">startnow@openedgepay.com</a>\r\nWebsite: <a title=\"OpenEdge payment gateway for wine websites\" href=\"http://www.openedgepayment.com\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">www.openedgepayment.com</a>\r\n[/one_half]\r\n\r\n\r\n\r\n[/two_thirds]\r\n\r\n[one_quarter last=\"yes\"]\r\n<h1>View All Partners</h1>\r\n[ninzio_button text=\"Accounting Systems\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/accounting\" /]\r\n\r\n[ninzio_button text=\"Compliance Providers\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/compliance-providers\" /]\r\n\r\n[ninzio_button text=\"Misc Integrated Services\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/misc-integrated-services\" /]\r\n\r\n[ninzio_button text=\"Shipping &amp; Fulfillment\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/shipping-fulfillment-partners\" /]\r\n\r\n[ninzio_button text=\"Website Marketing &amp; Media\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/website-marketing-media\" /]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n\r\n[/one_quarter]\r\n\r\n[/fullbox]','Payment Processing','','publish','open','closed','','payment-processing-partners','','','2020-10-26 16:00:16','2020-10-26 23:00:16','',1436,'https://activeclubsolutions.net/?page_id=1589',0,'page','',0),
(1590,2,'2014-07-31 01:39:18','2014-07-31 08:39:18','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"] [two_thirds last=\"no\"]\r\n<h1>Accounting Solutions</h1>\r\n<h2>Activ8 Commerce\' DTC Winery Software integration with Quickbooks Accounting</h2>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"40\" /]\r\n\r\n<h4>Intuit QuickBooks Accounting Software</h4>\r\nWebsite: <a title=\"Intuit Quickbooks online store integration for wine sales\" href=\"http://quickbooks.intuit.com/\" target=\"_blank\" rel=\"noopener noreferrer\">www.quickbooks.intuit.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"10\" /]\r\nActiv8\'s DTC Winery Software integration with Quickbooks Accounting is explained with image below:\r\n<img class=\"aligncenter size-full wp-image-2202\" src=\"https://activeclubsolutions.net/wp-content/uploads/2016/12/QuickBooks.png\" alt=\"Activ8 Commerce\' DTC Winery Software integration with quickbooks accounting\" width=\"980\" height=\"756\" />\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[box title=\"Activ8 Commerce QuickBooks Interface Setup VIDEO DEMO\"][ACSVimeo id=277593044 width=800 height=500/][/box]\r\n[gap height=\"40\" /]\r\n[box title=\"Activ8 Commerce QuickBooks Inventory Grouping VIDEO DEMO\"][ACSVimeo id=277590131 width=800 height=500/][/box]\r\n[/two_thirds]\r\n\r\n[one_quarter last=\"yes\"]\r\n<h3>Integration features</h3>\r\n\r\nWhen integrated with the QuickBooks Accounting system, Activ8 Manager can:\r\n<ul>\r\n<li>transfer sales receipts and credit memos to QuickBooks</li>\r\n<li>transfer invoices and payments to QuickBooks</li>\r\n<li>transfer payments received on invoices</li>\r\n<li>read payments received in QuickBooks on invoices</li>\r\n</ul>\r\n<ul>\r\n<li>unearned revenue - charged but not shipped or pickup up (QuickBooks Item Other Charge)</li>\r\n<li>origin taxes (QuickBooks Item Sales Tax or Other Charge)</li>\r\n<li>destination taxes (QuickBooks Item Sales Tax or Other Charge)</li>\r\n<li>freight and handling (QuickBooks Other Charge)</li>\r\n<li>taxable freight and handling (QuickBooks Other Charge)</li>\r\n<li>journal entries for COGS when using inventory grouping</li>\r\n</ul>\r\n<ul>\r\n<li>all possible sales receipt fields are filled in; several using definable rules</li>\r\n<li>customers and inventory missing from accounting database are inserted automatically</li>\r\n</ul>\r\n<ul>\r\n<li>read the Chart of Accounts from QuickBooks</li>\r\n<li>read sales tax structure from QuickBooks, including item sales taxes and tax codes (automatically mapped to Manager’s layout)</li>\r\n<li>read/write (insert/update) customer records - one to one with QuickBooks or grouped to 4 customer records</li>\r\n<li>read/write (insert/update) inventory records - one to one with QuickBooks or grouped to summary inventory</li>\r\n<li>read/write (insert/update) vendor records</li>\r\n<li>synchronize existing QuickBooks customer IDs from with customers in Manager</li>\r\n<li>write error and warning messages to the Job Log</li>\r\n</ul>\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n<h1>View All Partners</h1>\r\n\r\n[ninzio_button text=\"Compliance Providers\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/compliance-providers\" /]\r\n\r\n[ninzio_button text=\"Misc Integrated Services\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/misc-integrated-services\" /]\r\n\r\n[ninzio_button text=\"Mobile POS Equipment\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/pos-portal\" /]\r\n\r\n[ninzio_button text=\"Payment Processing\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/payment-processing-partners\" /]\r\n\r\n[ninzio_button text=\"Shipping &amp; Fulfillment\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/shipping-fulfillment-partners\" /]\r\n\r\n[ninzio_button text=\"Web Design Agencies\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/web-design-agencies\" /]\r\n\r\n[ninzio_button text=\"Website Marketing &amp; Media\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/website-marketing-media\" /]\r\n\r\n\r\n[/one_quarter]\r\n\r\n[/fullbox]','Integration with Quickbooks Accounting','','publish','open','closed','','accounting','','','2019-09-02 18:31:29','2019-09-03 01:31:29','',1435,'https://activeclubsolutions.net/?page_id=1590',0,'page','',0),
(1591,2,'2014-07-31 01:39:31','2014-07-31 08:39:31','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"] \r\n<div style=\"margin-top: -60px; margin-left: -60px;\">\r\n<img src=\"/wp-content/uploads/2017/10/compliancebackground_2.png\" alt=\"\" width=\"1600\" height=\"500\" class=\"alignnone size-medium wp-image-2879\" />\r\n</div>\r\n[gap height=\"30\" /]\r\n[two_thirds last=\"no\"]\r\n<h1>Compliance Providers</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<img class=\"alignnone wp-image-1586 size-full\" src=\"/wp-content/uploads/2014/05/partner-shipc.jpg\" alt=\"ship compliant wine website partner\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"10\" /]\r\n<h3>ShipCompliant</h3>\r\n<em>\"ShipCompliant is a software-as-a-service (SaaS) compliance and reporting solution that enables wine &amp; spirits producers to efficiently distribute their products within the U.S. market.\"</em>\r\n\r\n2465 Central Ave, Suite 110, Boulder, CO 80301\r\n(888) 449-5285, <a href=\"mailto:info@shipcompliant.com\">info@shipcompliant.com\r\n</a>Website: <a title=\"shipcompliant\" href=\"http://www.shipcompliant.com/\" target=\"_blank\">www.shipcompliant.com</a>\r\n\r\n&nbsp;\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<img class=\"alignnone wp-image-1565 size-full\" src=\"/wp-content/uploads/2014/05/partner-baril.jpg\" alt=\"baril compliance service\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"30\" /]\r\n<h3>Baril Compliance Service</h3>\r\nContact: <strong>Katherine Little</strong>\r\n(707) 587-7807, <a href=\"mailto:info@complianceservice.com\">info@complianceservice.com</a>\r\nWebsite: <a title=\"baril compliance service\" href=\"http://www.complianceservice.com/\" target=\"_blank\">www.complianceservice.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<img class=\"alignnone wp-image-1564 size-full\" src=\"/wp-content/uploads/2014/05/partner-wcp.jpg\" alt=\"wine compliance pro\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"25\" /]\r\n<h3>Wine Compliance Pro</h3>\r\n145 Legacy Ct, Napa, CA 94559\r\nContact: <strong>Eva Bedolla</strong>\r\n(707) 252-4725, <a href=\"mailto:info@winecompliancepro.com\" target=\"_blank\">info@winecompliancepro.com</a><a href=\"mailto:info@shipcompliant.com\">\r\n</a>Contact: <strong>Leroy Lucas</strong>\r\n(510) 388-9449, <a href=\"mailto:support@winecompliancepro.com\" target=\"_blank\">support@winecompliancepro.com</a> (tech support)\r\nWebsite: <a title=\"wine compliance pro\" href=\"http://www.winecompliancepro.com\" target=\"_blank\">www.winecompliancepro.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<img class=\"alignnone wp-image-1562 size-full\" src=\"/wp-content/uploads/2014/05/partner-compli.jpg\" alt=\"compli wine software\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"25\" /]\r\n<h3>Compli</h3>\r\nPO Box 3617, Paso Robles, CA 93447\r\nContact: <strong>Kristin Carlton</strong>\r\n(877) 255-1440, (805) 239-4502, <a href=\"mailto:info@compli-beverage.com\">info@compli-beverage.com</a>\r\nWebsite: <a title=\"compli beverage compliance\" href=\"http://info@compli-beverage.com\" target=\"_blank\">www.compli-beverage.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_quarter last=\"yes\"]\r\n<h1>View All Partners</h1>\r\n[ninzio_button text=\"Accounting Systems\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/accounting\" /]\r\n\r\n[ninzio_button text=\"Misc Integrated Services\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/misc-integrated-services\" /]\r\n\r\n[ninzio_button text=\"Payment Processing\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/payment-processing-partners\" /]\r\n\r\n[ninzio_button text=\"Shipping &amp; Fulfillment\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/shipping-fulfillment-partners\" /]\r\n\r\n[ninzio_button text=\"Website Marketing &amp; Media\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/website-marketing-media\" /]\r\n\r\n[/one_quarter]\r\n\r\n[/fullbox]','Compliance Providers','','publish','open','open','','compliance-providers','','','2018-10-31 22:22:57','2018-11-01 05:22:57','',1436,'https://activeclubsolutions.net/?page_id=1591',0,'page','',0),
(1592,2,'2014-07-31 01:59:40','2014-07-31 08:59:40','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"] [two_thirds last=\"no\"]\r\n\r\n<h1>Winery Marketing Services</h1>\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"10\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n[gap height=\"10\" /]\r\n<img class=\"alignnone\" src=\"/wp-content/uploads/2017/07/constantcontact.png\" alt=\"constant contact integration wine sales website\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"30\" /]\r\n<h3>Constant Contact Email Marketing</h3>\r\nWebsite: <a title=\"constant contact\" href=\"http://www.constantcontact.com/\" target=\"_blank\">www.constantcontact.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n[gap height=\"20\" /]\r\n<img class=\"alignnone size-full\" src=\"/wp-content/uploads/2017/07/MailChimpNLogo.png\" alt=\"mail chimp integration wine sales website\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"30\" /]\r\n<h3>Mail Chimp Email Marketing</h3>\r\nWebsite: <a title=\"Mail Chimp\" href=\"http://www.mailchimp.com/\" target=\"_blank\">www.mailchimp.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n[gap height=\"30\" /]\r\n<img class=\"alignnone wp-image-1578 size-full\" src=\"/wp-content/uploads/2017/10/socketlabs-medium.png\" alt=\"socketlabs integration winery website\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"30\" /]\r\n<h3>SocketLabs Email Marketing</h3>\r\nWebsite: <a title=\"socketlabs\" href=\"http://www.socketlabs.com/\" target=\"_blank\">www.socketlabs.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n[gap height=\"10\" /]\r\n<img class=\"alignnone wp-image-1578 size-full\" src=\"/wp-content/uploads/2017/10/verticalresponse.png\" alt=\"vertical response integration winery website\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"30\" /]\r\n<h3>Vertical Response Email Marketing</h3>\r\nWebsite: <a title=\"vertical response\" href=\"http://www.verticalresponse.com/\" target=\"_blank\">www.verticalresponse.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_quarter last=\"yes\"]\r\n<h1>View All Partners</h1>\r\n\r\n[ninzio_button text=\"Accounting Systems\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/accounting\" /]\r\n\r\n[ninzio_button text=\"Compliance Providers\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/compliance-providers\" /]\r\n\r\n[ninzio_button text=\"Misc Integrated Services\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/misc-integrated-services\" /]\r\n\r\n[ninzio_button text=\"Payment Processing\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/payment-processing-partners\" /]\r\n\r\n[ninzio_button text=\"Shipping &amp; Fulfillment\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/shipping-fulfillment-partners\" /]\r\n\r\n[/one_quarter]\r\n\r\n[/fullbox]','Winery Marketing Services','','publish','open','open','','website-marketing-media','','','2018-10-31 22:33:22','2018-11-01 05:33:22','',1436,'https://activeclubsolutions.net/?page_id=1592',0,'page','',0),
(1593,2,'2014-07-31 01:59:55','2014-07-31 08:59:55','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"] [two_thirds last=\"no\"]\r\n<h1>Miscellaneous Integrated Services</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<img class=\"alignnone wp-image-1561 size-full\" src=\"/wp-content/uploads/2014/05/partner-solu.jpg\" alt=\"solutrix\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"10\" /]\r\n<h3>Solutrix</h3>\r\n<em>\"Professional Website Design, Website Relocation, Workflow Imaging Solutions, IT Security Services, Remote Data Backup\"</em>\r\n\r\n(888) 551-5453, (757) 233-3300, <a href=\"mailto:sales@solutrix.com\">sales@solutrix.com\r\n</a>Website: <a title=\"solutrix\" href=\"http://www.solutrix.com\" target=\"_blank\">www.solutrix.com</a>\r\n\r\n&nbsp;\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<img class=\"alignnone wp-image-1579 size-full\" src=\"/wp-content/uploads/2014/05/partner-noaa.jpg\" alt=\"noaa wine website partner\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"40\" /]\r\n<h3>NOAA</h3>\r\nWebsite: <a title=\"noaa integration\" href=\"http://www.noaa.gov/\" target=\"_blank\">www.noaa.gov</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<img class=\"alignnone wp-image-1609 size-full\" src=\"/wp-content/uploads/2014/07/partner-zebra.jpg\" alt=\"zebra technologies\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"40\" /]\r\n<h3>Zebra Technologies</h3>\r\nWebsite: <a title=\"zebra print technologies\" href=\"http://www.zebra.com/\" target=\"_blank\">www.zebra.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_quarter last=\"yes\"]\r\n<h1>View All Partners</h1>\r\n[ninzio_button text=\"Accounting Systems\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/accounting\" /]\r\n\r\n[ninzio_button text=\"Compliance Providers\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/compliance-providers\" /]\r\n\r\n[ninzio_button text=\"Card Printing Providers\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/loyalty-gift-card-printing\" /]\r\n\r\n[ninzio_button text=\"Payment Processing\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/payment-processing-partners\" /]\r\n\r\n[ninzio_button text=\"Shipping &amp; Fulfillment\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/shipping-fulfillment-partners\" /]\r\n\r\n[ninzio_button text=\"Website Marketing &amp; Media\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/website-marketing-media\" /]\r\n\r\n[/one_quarter]\r\n\r\n[/fullbox]','Misc Integrated Services','','publish','open','open','','misc-integrated-services','','','2018-10-31 22:28:00','2018-11-01 05:28:00','',1436,'https://activeclubsolutions.net/?page_id=1593',0,'page','',0),
(1594,2,'2014-07-31 02:02:30','2014-07-31 09:02:30',' ','','','publish','open','closed','','1594','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',1436,'https://activeclubsolutions.net/?p=1594',17,'nav_menu_item','',0),
(1595,2,'2014-07-31 02:02:30','2014-07-31 09:02:30','','Winery/Distillery Marketing Services','','publish','open','closed','','1595','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',1436,'https://activeclubsolutions.net/?p=1595',20,'nav_menu_item','',0),
(1596,2,'2014-07-31 02:02:30','2014-07-31 09:02:30',' ','','','publish','open','closed','','1596','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',1436,'https://activeclubsolutions.net/?p=1596',15,'nav_menu_item','',0),
(1597,2,'2014-07-31 02:02:30','2014-07-31 09:02:30',' ','','','publish','open','closed','','1597','','','2020-09-18 11:18:18','2020-09-18 18:18:18','',1435,'https://activeclubsolutions.net/?p=1597',7,'nav_menu_item','',0),
(1598,2,'2014-07-31 02:02:30','2014-07-31 09:02:30',' ','','','publish','open','closed','','1598','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',1436,'https://activeclubsolutions.net/?p=1598',18,'nav_menu_item','',0),
(1600,2,'2014-07-31 02:02:30','2014-07-31 09:02:30',' ','','','publish','open','closed','','1600','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',1436,'https://activeclubsolutions.net/?p=1600',19,'nav_menu_item','',0),
(1608,2,'2014-08-01 02:49:39','2014-08-01 09:49:39','','ci solutions','','inherit','open','open','','partner-ci','','','2014-08-01 02:49:39','2014-08-01 09:49:39','',1593,'https://activeclubsolutions.net/wp-content/uploads/2014/07/partner-ci.jpg',0,'attachment','image/jpeg',0),
(1609,2,'2014-08-01 02:49:40','2014-08-01 09:49:40','','zebra technologies','','inherit','open','open','','partner-zebra','','','2014-08-01 02:49:40','2014-08-01 09:49:40','',1593,'https://activeclubsolutions.net/wp-content/uploads/2014/07/partner-zebra.jpg',0,'attachment','image/jpeg',0),
(1611,2,'2014-08-02 01:54:56','2014-08-02 08:54:56','','Active Club Winery & Vineyard Management Software','','inherit','open','open','','home-block1-2','','','2014-08-02 01:54:56','2014-08-02 08:54:56','',848,'https://activeclubsolutions.net/wp-content/uploads/2014/03/home-block11.jpg',0,'attachment','image/jpeg',0),
(1612,2,'2014-08-02 02:01:04','2014-08-02 09:01:04','','leader in wine club software since 2003','','inherit','open','open','','slide2','','','2014-08-02 02:01:04','2014-08-02 09:01:04','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/08/slide2.jpg',0,'attachment','image/jpeg',0),
(1621,2,'2014-05-23 03:02:56','2014-05-23 10:02:56','','Main Screen','','publish','closed','closed','','main-screen','','','2019-06-17 11:29:28','2019-06-17 18:29:28','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=1621',0,'ninzio-slider','',0),
(1624,2,'2014-08-23 03:08:13','2014-08-23 10:08:13','','1-1','','inherit','open','open','','1-1-3','','','2014-08-23 03:08:13','2014-08-23 10:08:13','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/08/1-12.png',0,'attachment','image/png',0),
(1625,2,'2014-08-23 03:09:04','2014-08-23 10:09:04','','1-2','','inherit','open','open','','1-2','','','2014-08-23 03:09:04','2014-08-23 10:09:04','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/08/1-2.png',0,'attachment','image/png',0),
(1626,2,'2014-08-23 03:09:06','2014-08-23 10:09:06','','1-3','','inherit','open','open','','1-3','','','2014-08-23 03:09:06','2014-08-23 10:09:06','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/08/1-3.png',0,'attachment','image/png',0),
(1627,2,'2014-08-23 03:34:23','2014-08-23 10:34:23','','1-bg','','inherit','open','open','','1-bg-2','','','2014-08-23 03:34:23','2014-08-23 10:34:23','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/08/1-bg.png',0,'attachment','image/png',0),
(1628,2,'2017-01-11 01:45:54','2017-01-11 09:45:54','','Club Processing','','publish','closed','closed','','club-processing','','','2018-10-31 20:55:25','2018-11-01 03:55:25','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=1628',5,'ninzio-slider','',0),
(1629,2,'2014-08-24 01:44:42','2014-08-24 08:44:42','','2-2','','inherit','open','open','','2-2','','','2014-08-24 01:44:42','2014-08-24 08:44:42','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/08/2-2.png',0,'attachment','image/png',0),
(1630,2,'2014-08-24 01:44:44','2014-08-24 08:44:44','','2-bg','','inherit','open','open','','2-bg','','','2014-08-24 01:44:44','2014-08-24 08:44:44','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/08/2-bg.jpg',0,'attachment','image/jpeg',0),
(1631,2,'2014-08-24 01:44:46','2014-08-24 08:44:46','','3-1','','inherit','open','open','','3-1','','','2014-08-24 01:44:46','2014-08-24 08:44:46','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/08/3-1.png',0,'attachment','image/png',0),
(1632,2,'2014-08-24 01:44:47','2014-08-24 08:44:47','','3-bg','','inherit','open','open','','3-bg','','','2014-08-24 01:44:47','2014-08-24 08:44:47','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/08/3-bg.jpg',0,'attachment','image/jpeg',0),
(1633,2,'2014-08-24 01:44:48','2014-08-24 08:44:48','','4-bg','','inherit','open','open','','4-bg','','','2017-12-15 16:12:49','2017-12-16 00:12:49','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/08/4-bg.jpg',0,'attachment','image/jpeg',0),
(1634,2,'2017-01-12 02:25:19','2017-01-12 10:25:19','','Search, Marketing & CRM','','publish','closed','closed','','marketing-crm','','','2018-10-31 20:18:59','2018-11-01 03:18:59','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=1634',7,'ninzio-slider','',0),
(1636,2,'2014-08-24 03:12:50','2014-08-24 10:12:50','','Shopping Cart','','publish','closed','closed','','shopping-cart','','','2018-10-31 20:52:38','2018-11-01 03:52:38','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=1636',2,'ninzio-slider','',0),
(1639,2,'2017-01-11 06:13:38','2017-01-11 14:13:38','','Shipping','','publish','closed','closed','','shipping','','','2018-11-03 14:25:53','2018-11-03 21:25:53','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=1639',9,'ninzio-slider','',0),
(1644,2,'2014-08-25 02:14:40','2014-08-25 09:14:40','','header9','','inherit','open','open','','header9','','','2014-08-25 02:14:40','2014-08-25 09:14:40','',1493,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header9.jpg',0,'attachment','image/jpeg',0),
(1645,2,'2014-08-25 02:17:42','2014-08-25 09:17:42','','header10','','inherit','open','open','','header10','','','2014-08-25 02:17:42','2014-08-25 09:17:42','',1494,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header10.jpg',0,'attachment','image/jpeg',0),
(1646,2,'2014-08-25 02:25:51','2014-08-25 09:25:51','','header11','','inherit','open','open','','header11','','','2014-08-25 02:25:51','2014-08-25 09:25:51','',1495,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header11.jpg',0,'attachment','image/jpeg',0),
(1648,2,'2014-08-25 02:38:41','2014-08-25 09:38:41','','header12','','inherit','open','open','','header12','','','2014-08-25 02:38:41','2014-08-25 09:38:41','',1496,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header12.jpg',0,'attachment','image/jpeg',0),
(1651,2,'2014-08-25 02:43:56','2014-08-25 09:43:56','','header13','','inherit','open','open','','header13','','','2014-08-25 02:43:56','2014-08-25 09:43:56','',1494,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header13.jpg',0,'attachment','image/jpeg',0),
(1652,2,'2014-08-25 02:53:52','2014-08-25 09:53:52','','header15','','inherit','open','open','','header15','','','2014-08-25 02:53:52','2014-08-25 09:53:52','',1497,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header15.jpg',0,'attachment','image/jpeg',0),
(1653,2,'2014-08-25 02:53:54','2014-08-25 09:53:54','','header14','','inherit','open','open','','header14','','','2014-08-25 02:53:54','2014-08-25 09:53:54','',1497,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header14.jpg',0,'attachment','image/jpeg',0),
(1654,2,'2014-08-25 03:16:00','2014-08-25 10:16:00','','header16','','inherit','open','open','','header16','','','2014-08-25 03:16:00','2014-08-25 10:16:00','',1498,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header16.jpg',0,'attachment','image/jpeg',0),
(1655,2,'2014-08-25 04:30:10','2014-08-25 11:30:10','','header23','','inherit','open','open','','header23','','','2014-08-25 04:30:10','2014-08-25 11:30:10','',1591,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header23.jpg',0,'attachment','image/jpeg',0),
(1656,2,'2014-08-25 04:30:12','2014-08-25 11:30:12','','header22','','inherit','open','open','','header22','','','2014-08-25 04:30:12','2014-08-25 11:30:12','',1591,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header22.jpg',0,'attachment','image/jpeg',0),
(1657,2,'2014-08-25 04:30:13','2014-08-25 11:30:13','','header21','','inherit','open','open','','header21','','','2014-08-25 04:30:13','2014-08-25 11:30:13','',1591,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header21.jpg',0,'attachment','image/jpeg',0),
(1659,2,'2014-08-25 04:30:15','2014-08-25 11:30:15','','header19','','inherit','open','open','','header19','','','2014-08-25 04:30:15','2014-08-25 11:30:15','',1591,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header19.jpg',0,'attachment','image/jpeg',0),
(1660,2,'2014-08-25 04:30:16','2014-08-25 11:30:16','','header18','','inherit','open','open','','header18','','','2014-08-25 04:30:16','2014-08-25 11:30:16','',1591,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header18.jpg',0,'attachment','image/jpeg',0),
(1661,2,'2014-08-25 04:30:17','2014-08-25 11:30:17','','header17','','inherit','open','open','','header17','','','2014-08-25 04:30:17','2014-08-25 11:30:17','',1591,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header17.jpg',0,'attachment','image/jpeg',0),
(1662,2,'2014-08-25 04:33:36','2014-08-25 11:33:36','','header24','','inherit','open','open','','header24','','','2014-08-25 04:33:36','2014-08-25 11:33:36','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header24.jpg',0,'attachment','image/jpeg',0),
(1663,2,'2014-08-25 04:40:36','2014-08-25 11:40:36','','header20','','inherit','open','open','','header20-2','','','2014-08-25 04:40:36','2014-08-25 11:40:36','',1590,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header201.jpg',0,'attachment','image/jpeg',0),
(1664,2,'2014-08-25 04:45:15','2014-08-25 11:45:15','','header25','','inherit','open','open','','header25','','','2014-08-25 04:45:15','2014-08-25 11:45:15','',1593,'https://activeclubsolutions.net/wp-content/uploads/2014/07/header25.jpg',0,'attachment','image/jpeg',0),
(1665,2,'2014-08-25 04:51:14','2014-08-25 11:51:14','','header3','','inherit','open','open','','header3-2','','','2014-08-25 04:51:14','2014-08-25 11:51:14','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header31.jpg',0,'attachment','image/jpeg',0),
(1666,2,'2014-08-25 04:51:16','2014-08-25 11:51:16','','header5','','inherit','open','open','','header5-2','','','2014-08-25 04:51:16','2014-08-25 11:51:16','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header51.jpg',0,'attachment','image/jpeg',0),
(1667,2,'2014-08-25 04:51:17','2014-08-25 11:51:17','','header4','','inherit','open','open','','header4-2','','','2014-08-25 04:51:17','2014-08-25 11:51:17','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header41.jpg',0,'attachment','image/jpeg',0),
(1669,2,'2014-08-25 04:59:05','2014-08-25 11:59:05','','header26','','inherit','open','open','','header26','','','2014-08-25 04:59:05','2014-08-25 11:59:05','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header26.jpg',0,'attachment','image/jpeg',0),
(1670,2,'2014-08-25 05:04:40','2014-08-25 12:04:40','','header27','','inherit','open','open','','header27','','','2014-08-25 05:04:40','2014-08-25 12:04:40','',1435,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header27.jpg',0,'attachment','image/jpeg',0),
(1671,2,'2014-08-25 05:08:25','2014-08-25 12:08:25','','header28','','inherit','open','open','','header28','','','2014-08-25 05:08:25','2014-08-25 12:08:25','',1435,'https://activeclubsolutions.net/wp-content/uploads/2014/05/header28.jpg',0,'attachment','image/jpeg',0),
(1672,2,'2014-08-27 21:02:15','2014-08-28 04:02:15','<strong>Why Wine Clubs need OpenEdge Decline Minimizer</strong>\r\n\r\nHave you ever had to deal with expired or re-issued cards? Well Activ8 Commerce and OpenEdge have a solution for you!\r\n\r\nOpenEdge Decline Minimizer automatically updates credit and debit cards…so you don’t have to!\r\n\r\n<strong>Decline Minimizer Benefits:</strong>\r\n\r\n[icon_list size=\"small medium large\" type=\"circle square\" icon=\"angle-right\" icon_color=\"\" background_color=\"\"]\r\n<ul>\r\n	<li>Sell more – increase revenue by decreasing wine club cancellations.</li>\r\n	<li>Get paid quicker – improve your cash flow.</li>\r\n	<li>Save on card updating costs – use your staff’s time to grow your business instead.</li>\r\n	<li>Improve customer satisfaction – deliver wine without delays.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n<strong>Features:</strong>\r\n\r\n[icon_list size=\"small medium large\" type=\"circle square\" icon=\"angle-right\" icon_color=\"\" background_color=\"\"]\r\n<ul>\r\n	<li>OpenEdge updates your stored cards daily and automatically.</li>\r\n	<li>When you run transactions, the updated card data is used.</li>\r\n	<li>No set-up fee or any work on your part to use this service.</li>\r\n	<li>Just tell OpenEdge that you want your cards updated and that’s it.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n<strong>Wine Club Use Cases – Impact of Card Declines:</strong>\r\n\r\nWhen businesses call customers to update cards, there’s the risk of customers cancelling, realizing they don’t truly need the service.\r\n\r\n<strong>For Example:</strong>\r\n<ul>\r\n	<li>You have 20 quarterly cancellations that are an average $135 per order, totaling $2,700 in lost revenue per quarter, and that’s $10,800 per year!</li>\r\n	<li>66% of declined cards are prevented by OpenEdge Decline Minimizer, meaning your bottom line could increase by $7,128!</li>\r\n</ul>\r\n<strong>Its Simple:</strong>\r\n\r\n<strong>Call or email us today!</strong>\r\n877-441-2582 ext 56, <a href=\"mailto:Dan@activeclubsolutions.net\">Dan@activeclubsolutions.net</a>\r\n\r\n<strong>Or contact OpenEdge directly for more information:</strong>\r\n866-841-9790 or email <a href=\"mailto:Solutions@OpenEdgePay.com\">Solutions@OpenEdgePay.com</a>','Paypros Decline Minimizer','','pending','closed','open','','paypros-decline-minimizer','','','2022-08-14 21:04:41','2022-08-15 04:04:41','',0,'https://activeclubsolutions.net/?p=1672',0,'post','',0),
(1679,2,'2014-09-11 21:12:02','2014-09-12 04:12:02','','3-1','','inherit','open','open','','3-1-2','','','2014-09-11 21:12:02','2014-09-12 04:12:02','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/09/3-1.png',0,'attachment','image/png',0),
(1691,2,'2014-10-30 13:47:56','2014-10-30 20:47:56','Activ8 Commerce now offers multi-location inventory management features.\r\n\r\nThese features help manage wine club and e-commerce inventory and create reports to assist with general inventory management and accounting.\r\n\r\n&nbsp;\r\n\r\nWhen using our advanced multi location inventory management feature, your Activ8 Manager will display new inventory icons.\r\n\r\nInventory: as before allows you to easily add and edit your product information, including descriptions and pictures for your shopping cart.\r\n\r\nInventory Location: allows you to add and edit physical and virtual locations you wish to use to organize your stock.\r\n\r\nInventory Stock: displays all stock level related information and allows you to make manual stock level adjustments\r\n\r\nInventory transactions: allows to manage purchase orders, transfers, move and allocate stocks to your various locations.\r\n\r\n&nbsp;','Powerful Inventory Management','','pending','open','open','','powerful-inventory-management','','','2022-08-14 21:04:41','2022-08-15 04:04:41','',0,'https://activeclubsolutions.net/?p=1691',0,'post','',0),
(1692,2,'2014-10-30 15:43:41','2014-10-30 22:43:41','Activ8 Commerce offers true, certified integrations with UPS, FedEx and GSO. This means no more manually importing or exporting data.\r\n\r\nAll addresses are validated and all shipments can be created, billed, and tracked in Activ8 Manager. Notifications are automatically sent to the club manager and the customers. Rates are instantly calculated, including negotiated discounts. Fewer exceptions means noticeable savings in shipping costs for wineries that use Activ8 Commerce.\r\n\r\nFor example, Activ8 Commerce is integrated with the very latest version of the UPS software, making us among the first to offer great new UPS shipping features like <em>Smart Pickup</em>. The <strong>UPS Smart Pickup</strong> option uses innovative technology to automatically arrange a pickup only when you need it.\r\n\r\nWhen a winery processes a UPS shipment using Activ8 Manager, the system automatically notifies a UPS driver to make a <strong>UPS Smart Pickup</strong> that same day to pick up all prepared packages. Wineries using this feature can save on the new UPS pickup fees.','Over-the-top shipping integrations','','pending','closed','open','','over-the-top-shipping-integrations','','','2022-08-14 21:04:41','2022-08-15 04:04:41','',0,'https://activeclubsolutions.net/?p=1692',0,'post','',0),
(1694,2,'2014-10-30 15:02:02','2014-10-30 22:02:02','Activ8 Commerce’ wine club software comes with web pages to insert on your website: a wine club registration page and a secure member login page. Designed to look like your existing website, they are built with a “responsive” layout, meaning that they will look great whether you look at them on a large computer screen, a small one, a tablet, or a smartphone. They make it a breeze for your customers to join clubs and maintain their membership information, especially their credit card and shipping details. Club members can even view their previous orders, payment, and shipping and pickup status on line.\r\n\r\nActiv8 Commerce web pages and shopping cart are designed to look like your website. Our design options include:\r\n<ul>\r\n	<li>Duplicating the design theme of your original website.</li>\r\n	<li>Duplicating fonts and colors for your content, titles and tabs. Duplicating your background design, including a transparency effect.</li>\r\n	<li>Displaying 3 level of headers at the top of your Activ8 Pages, this allows for instance to display your original website header image, top menu and an additional header designed for your wine club.</li>\r\n</ul>','The Best Branded Club Registration and Member Login Webpages','','pending','closed','open','','new-beautifully-branded-club-registration-and-member-login-webpages','','','2022-08-14 21:04:41','2022-08-15 04:04:41','',0,'https://activeclubsolutions.net/?p=1694',0,'post','',0),
(1695,2,'2014-10-30 15:00:38','2014-10-30 22:00:38','','rubino webpage','','inherit','closed','open','','rubino-webpage','','','2014-10-30 15:00:38','2014-10-30 22:00:38','',1694,'https://activeclubsolutions.net/wp-content/uploads/2014/10/rubino-webpage.jpg',0,'attachment','image/jpeg',0),
(1696,2,'2014-10-30 15:25:21','2014-10-30 22:25:21','','integratedshipping','Shipping Integration','inherit','closed','open','','integratedshipping','','','2014-10-30 15:25:37','2014-10-30 22:25:37','',1692,'https://activeclubsolutions.net/wp-content/uploads/2014/10/integratedshipping.jpg',0,'attachment','image/jpeg',0),
(1697,2,'2014-10-31 13:26:24','2014-10-31 20:26:24','Our winery ecommerce solution just got better. Our integrated shopping cart is intelligent: it recognizes club members and instantly calculates the proper discounts and shipping fees. You can have separate cart catalogs for your club members and the rest of your shoppers. Maybe these library wines are for members only! You can also have a separate cart to sell event tickets.\r\n\r\nDisplaying your basket while you shop has been a known feature of the active club shopping cart since the beginning. Unlike the vast majority of e-commerce solutions, our baskets instantly displays discounts, special offer discounts, correct S&amp;H fees.\r\n\r\nTo make the content of the basket visible at a glance while shopping, we have added a <strong>mini shopping basket</strong> widget, on the corner of the shopping pages.','Intelligent, Mobile Friendly Branded Winery Ecommerce : New Feature!','','pending','closed','open','','intelligent-mobile-friendly-branded-shopping-cart-new-feature','','','2022-08-14 21:04:20','2022-08-15 04:04:20','',0,'https://activeclubsolutions.net/?p=1697',0,'post','',0),
(1698,2,'2014-10-31 11:50:17','2014-10-31 18:50:17','','mini basket','','inherit','closed','open','','mini-basket','','','2014-10-31 11:50:17','2014-10-31 18:50:17','',1697,'https://activeclubsolutions.net/wp-content/uploads/2014/10/mini-basket.jpg',0,'attachment','image/jpeg',0),
(1700,2,'2014-10-31 12:57:30','2014-10-31 19:57:30','<strong>December 4<sup>th</sup>, Sonoma County Fairgrounds.</strong>\r\n\r\nJoin us at booth #821.\r\n\r\nUse the promo code ACT228 for free access to the trade show. Use it to register at <a href=\"http://wineindustryexpo.us5.list-manage.com/track/click?u=4514823c73394431c2c9a58f3&amp;id=7de8323af7&amp;e=9b3389cc15\">www.wineindustryexpo.com/registration</a>.','2014 North Coast Winery Expo','','pending','closed','open','','2014-north-coast-winery-expo','','','2022-08-14 21:04:41','2022-08-15 04:04:41','',0,'https://activeclubsolutions.net/?p=1700',0,'post','',0),
(1701,2,'2014-10-31 12:47:42','2014-10-31 19:47:42','','NCWIE','','inherit','closed','open','','ncwie','','','2014-10-31 12:47:42','2014-10-31 19:47:42','',1700,'https://activeclubsolutions.net/wp-content/uploads/2014/10/NCWIE.jpg',0,'attachment','image/jpeg',0),
(1702,2,'2014-10-31 13:06:18','2014-10-31 20:06:18','<strong>January 28-29, Sacramento Convention Center</strong>\r\n\r\nJoin us at booth #1615. Contact us at <a href=\"mailto:info@activeclubsolutions.net\">info@activeclubsolutions.net</a> for free Activ8 guest tickets to the trade show.','2015 Unified Wine and Grape Symposium','','pending','closed','open','','2015-unified-wine-and-grape-symposium','','','2022-08-14 21:04:40','2022-08-15 04:04:40','',0,'https://activeclubsolutions.net/?p=1702',0,'post','',0),
(1703,2,'2014-10-31 13:05:33','2014-10-31 20:05:33','','download','','inherit','closed','open','','download','','','2014-10-31 13:05:33','2014-10-31 20:05:33','',1702,'https://activeclubsolutions.net/wp-content/uploads/2014/10/download.jpg',0,'attachment','image/jpeg',0),
(1713,2,'2014-11-11 15:08:39','2014-11-11 22:08:39','','Activ8 Commerce','','publish','closed','closed','','active-club-solutions','','','2014-11-12 16:27:04','2014-11-12 23:27:04','',0,'https://activeclubsolutions.net/?post_type=wprss_feed&#038;p=1713',0,'wprss_feed','',0),
(1714,0,'2014-10-31 20:26:24','2014-10-31 20:26:24','','Intelligent, Mobile Friendly Branded Shopping cart : New Feature!','','publish','closed','open','','intelligent-mobile-friendly-branded-shopping-cart-new-feature','','','2014-10-31 20:26:24','2014-10-31 20:26:24','',0,'https://activeclubsolutions.net/feeds/items/intelligent-mobile-friendly-branded-shopping-cart-new-feature/',0,'wprss_feed_item','',0),
(1715,0,'2014-10-31 20:06:18','2014-10-31 20:06:18','','2015 Unified Wine and Grape Symposium','','publish','closed','open','','2015-unified-wine-and-grape-symposium','','','2014-10-31 20:06:18','2014-10-31 20:06:18','',0,'https://activeclubsolutions.net/feeds/items/2015-unified-wine-and-grape-symposium/',0,'wprss_feed_item','',0),
(1716,0,'2014-10-31 19:57:30','2014-10-31 19:57:30','','2014 North Coast Winery Expo','','publish','closed','open','','2014-north-coast-winery-expo','','','2014-10-31 19:57:30','2014-10-31 19:57:30','',0,'https://activeclubsolutions.net/feeds/items/2014-north-coast-winery-expo/',0,'wprss_feed_item','',0),
(1717,0,'2014-10-30 22:43:41','2014-10-30 22:43:41','','Over-the-top shipping integrations','','publish','closed','open','','over-the-top-shipping-integrations','','','2014-10-30 22:43:41','2014-10-30 22:43:41','',0,'https://activeclubsolutions.net/feeds/items/over-the-top-shipping-integrations/',0,'wprss_feed_item','',0),
(1718,0,'2014-10-30 22:02:02','2014-10-30 22:02:02','','The Best Branded Club Registration and Member Login Webpages','','publish','closed','open','','the-best-branded-club-registration-and-member-login-webpages','','','2014-10-30 22:02:02','2014-10-30 22:02:02','',0,'https://activeclubsolutions.net/feeds/items/the-best-branded-club-registration-and-member-login-webpages/',0,'wprss_feed_item','',0),
(1719,0,'2014-10-30 20:47:56','2014-10-30 20:47:56','','Powerful Inventory Management','','publish','closed','open','','powerful-inventory-management','','','2014-10-30 20:47:56','2014-10-30 20:47:56','',0,'https://activeclubsolutions.net/feeds/items/powerful-inventory-management/',0,'wprss_feed_item','',0),
(1720,0,'2014-08-28 04:02:15','2014-08-28 04:02:15','','Paypros Decline Minimizer','','publish','closed','open','','paypros-decline-minimizer','','','2014-08-28 04:02:15','2014-08-28 04:02:15','',0,'https://activeclubsolutions.net/feeds/items/paypros-decline-minimizer/',0,'wprss_feed_item','',0),
(1721,0,'2014-07-29 07:53:01','2014-07-29 07:53:01','','New! Active Club Gift Message Cards','','publish','closed','open','','new-active-club-gift-message-cards','','','2014-07-29 07:53:01','2014-07-29 07:53:01','',0,'https://activeclubsolutions.net/feeds/items/new-active-club-gift-message-cards/',0,'wprss_feed_item','',0),
(1722,0,'2014-07-29 07:41:03','2014-07-29 07:41:03','','FedEx Integration Update','','publish','closed','open','','fedex-integration-update','','','2014-07-29 07:41:03','2014-07-29 07:41:03','',0,'https://activeclubsolutions.net/feeds/items/fedex-integration-update/',0,'wprss_feed_item','',0),
(1723,0,'2014-07-29 07:37:26','2014-07-29 07:37:26','','New Quick Search Feature','','publish','closed','open','','new-quick-search-feature','','','2014-07-29 07:37:26','2014-07-29 07:37:26','',0,'https://activeclubsolutions.net/feeds/items/new-quick-search-feature/',0,'wprss_feed_item','',0),
(1727,2,'2014-11-13 12:56:13','2014-11-13 19:56:13','','OpenEdge','','inherit','closed','open','','openedge','','','2014-11-13 12:56:13','2014-11-13 19:56:13','',1436,'https://activeclubsolutions.net/wp-content/uploads/2014/05/OpenEdge.png',0,'attachment','image/png',0),
(1736,2,'2014-11-21 13:31:11','2014-11-21 20:31:11','','openedge','','inherit','closed','open','','openedge-2','','','2014-11-21 13:31:11','2014-11-21 20:31:11','',0,'https://activeclubsolutions.net/wp-content/uploads/2014/11/openedge.jpg',0,'attachment','image/jpeg',0),
(1737,2,'2014-11-21 13:34:59','2014-11-21 20:34:59','','OpenedgeH','','inherit','closed','open','','openedgeh','','','2014-11-21 13:35:35','2014-11-21 20:35:35','',1588,'https://activeclubsolutions.net/wp-content/uploads/2014/07/OpenedgeH.jpg',0,'attachment','image/jpeg',0),
(1742,2,'2014-12-18 12:10:00','2014-12-18 19:10:00','You may be skeptical of QuickBooks interfaces. You have every right to be skeptical because it is sold by everyone and rarely works.  With an accounting interface the devil is in the details and there are a lot of details to make it work properly.\r\n\r\nI have been writing accounting software for 30 years.  I have written interfaces to large corporate systems like Sage, Accura and Solomon.   I started interfacing with QuickBooks in 1987.\r\n\r\nWe would be most happy to show you the system in action and you could ask detailed questions at that time.  It makes me very happy when a winery takes accounting seriously.  It means all the efforts we have put into this feature actually gets used.\r\n\r\nHere are the highlights.\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n 	<li>Transfer Sales Receipts to QuickBooks.\r\n<ul>\r\n 	<li>Origin taxes using QuickBooks Item Sales Tax</li>\r\n 	<li>Destinations taxes using QuickBooks Item Sales Tax</li>\r\n 	<li>Freight and handling uses QuickBooks Other Charge</li>\r\n 	<li>Taxable freight and handling uses QuickBooks Other Charge</li>\r\n 	<li>All possible Sales Receipt fields are filled in - several using definable Rules</li>\r\n 	<li>Class definition of sales by state or transaction type.</li>\r\n</ul>\r\n</li>\r\n 	<li>Automatic insertion of customers missing from accounting database</li>\r\n 	<li>Automatic insertion of inventory missing from accounting database</li>\r\n 	<li>Transfer of Credit Memos to QuickBooks.</li>\r\n 	<li>Read Sales Tax Structure from QuickBooks, including Item Sales Taxes and Tax Codes.  Automatically map to ACM layout.</li>\r\n 	<li>Read Chart of Accounts from QuickBooks.</li>\r\n 	<li>Read/Write (insert/update) customers records.</li>\r\n 	<li>Read/Write (insert/update) inventory or assembly records.</li>\r\n 	<li>Synchronization of customer ids from QuickBooks to ACM.</li>\r\n 	<li>Support for QuickBooks inventory “sites”.</li>\r\n 	<li>Superior error messaging to Job Log (No hunting and pecking to find the cause of errors on transfers).</li>\r\n 	<li>Detailed instruction manual.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\nIf you are interested in pursuing this further please let us know.\r\n\r\n&nbsp;\r\n\r\nArne Haugland','A word from  the President on QuickBooks Integrations','','pending','closed','open','','a-word-from-the-president-on-quickbooks-integrations','','','2022-08-14 21:04:20','2022-08-15 04:04:20','',0,'https://activeclubsolutions.net/?p=1742',0,'post','',0),
(1743,0,'2014-12-18 19:10:00','2014-12-18 19:10:00','','A word from  the President on QuickBooks Integrations','','publish','closed','open','','a-word-from-the-president-on-quickbooks-integrations','','','2014-12-18 19:10:00','2014-12-18 19:10:00','',0,'https://activeclubsolutions.net/feed-items/a-word-from-the-president-on-quickbooks-integrations/',0,'wprss_feed_item','',0),
(1744,2,'2014-12-24 10:46:19','2014-12-24 17:46:19','Visit us at the 2015 Eastern Winery Expo, booth 821, the Oncenter, Syracuse New York March 18-19, 2015.\r\n\r\nFor a free pass as our guest, register at <a title=\"http://www.easternwineryexposition.com/registration/\" href=\"http://www.easternwineryexposition.com/registration/\" target=\"_blank\" rel=\"noopener\">http://www.easternwineryexposition.com/registration/</a> and use the code EWE15VIP.','2015 Eastern Winery Expo','','pending','closed','open','','2015-eastern-winery-expo','','','2022-08-14 21:04:20','2022-08-15 04:04:20','',0,'https://activeclubsolutions.net/?p=1744',0,'post','',0),
(1745,2,'2014-12-24 10:39:03','2014-12-24 17:39:03','','2015EWE','','inherit','closed','open','','2015ewe','','','2014-12-24 10:39:03','2014-12-24 17:39:03','',1744,'https://activeclubsolutions.net/wp-content/uploads/2014/12/2015EWE.jpg',0,'attachment','image/jpeg',0),
(1746,0,'2014-12-24 17:46:19','2014-12-24 17:46:19','','2015 Eastern Winery Expo','','publish','closed','open','','2015-eastern-winery-expo','','','2014-12-24 17:46:19','2014-12-24 17:46:19','',0,'https://activeclubsolutions.net/feed-items/2015-eastern-winery-expo/',0,'wprss_feed_item','',0),
(1753,2,'2015-01-02 04:29:28','2015-01-02 12:29:28','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"20\"]\r\n\r\n<div style=\"margin-top: -80px; margin-left: 0px;\">\r\n<img src=\"/wp-content/uploads/2017/10/picewithmagnifyingglass.png\" alt=\"\" class=\"alignnone size-medium\" />\r\n</div>\r\n[gap height=\"30\" /]\r\n\r\n<h1><a href=\"/winery-pos-features/ipad-winery-pos/\"><font color=\"#555555\">Tasting Room POS only</font> </a></h1>\r\n<h3>Experience the power of Activ8 Commerce with our mobile winery <a href=\"/winery-pos-features/ipad-winery-pos/\"><font color=\"#555555\">Tasting Room POS.</font> </a></h3>\r\n\r\n[gap height=\"25\" /]\r\n\r\n<h4>Use <strong><a href=\"/winery-pos-features/ipad-winery-pos/\"><font color=\"#555555\">Activ8 Tasting Room POS</font> </a></strong> on its own. Get it today and add our wine/spirits club software and ecommerce modules later, as needed.</h4>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<h2>Package Pricing</h2>\r\n\r\n[fullbox padding_top=\"2\" padding_bottom=\"40\"] \r\n\r\n[box_container columns=\"1\" version=\"v2\" animate=\"yes\"]\r\n[box target=\"_self _blank\" title=\"Tasting Room POS Only\" icon=\"angle-right\" icon_color=\"#ffffff\" icon_back_color=\"\"]\r\n\r\n<strong>$1,250</strong> one time license and implementation fee.\r\n\r\n<h4>$90/month.</h4>\r\n\r\nNo transaction fees for the first 500 transactions.  Additional transactions are billed at $0.50 each.\r\n\r\nAffordable, easy, and powerful solution for starter and small wineries.\r\n\r\n[gap height=\"5\" /]\r\n\r\n[/box]\r\n[/box_container]\r\n\r\n[splitter type=\"solid\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h2>Package Features</h2>\r\n[gap height=\"25\" /]\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"\" background_color=\"#ffffff\"]\r\n<ul>\r\n<li>User friendly.</li>\r\n<li>Easy and powerful return, void, swap, pending order changes, discounts, tax and S&amp;H features.</li>\r\n<li>Affordable, with minimum equipment investment.</li>\r\n<li>Integrated with an extremely secure payment processor, with encryption at card swipe.</li>\r\n<li>Comes with multi location POS and inventory management.</li>\r\n<li>Add users or POS stations at no additional license cost.</li>\r\n<li>Full back office system (Activ8 Manager) accessible from a PC, Mac or your mobile device.</li>\r\n<li>Free expert support and free upgrades to new versions.</li>\r\n<li>Advanced interoperation with <a href=\"/winery-pos-features/accounting/\">QuickBooks</a>.</li>\r\n<li>Wholesale: mobile invoicing and payments, inventory affected in real time.</li>\r\n<li>Remote printing: For kitchen or warehouse orders.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n<h3>Sample Checkout<h3><br>\r\n<img class=\" wp-image-1770 alignleft\" src=\"/wp-content/uploads/2017/01/iPadCheckout-1024x768.png\" alt=\"iPad screenshot\" width=\"671\" height=\"503\" />\r\n[gap height=\"25\" /]\r\n\r\n<h3>Sample Order History<h3><br>\r\n<img class=\" wp-image-1770 alignleft\" src=\"/wp-content/uploads/2017/01/iPadOrderHistory-1024x768.png\" alt=\"iPad screenshot\" width=\"671\" height=\"503\" />\r\n[gap height=\"25\" /]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n&nbsp;\r\n\r\n[/fullbox]','Tasting Room POS Pricing','','publish','closed','closed','','activeclub-winery-pos','','','2019-09-02 21:53:47','2019-09-03 04:53:47','',1867,'https://activeclubsolutions.net/?page_id=1753',0,'page','',0),
(1768,2,'2015-01-02 19:15:31','2015-01-03 02:15:31','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"20\"]\r\n<h1>Activ8 Pro</h1>\r\n<h2>Mobile Winery POS</h2>\r\n<h3>[gap height=\"25\" /]</h3>\r\n<h3>Experience the full power of Activ8 Commerce every day in your tasting room. Add Activ8 wine club software and ecommerce modules later, as needed.</h3>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nUse <strong>Activ8 Pro</strong> mobile winery POS to increase efficiency, productivity, save time, errors, and costs.\r\n\r\n[gap height=\"25\" /]\r\n<h2>Package Features</h2>\r\n[gap height=\"25\" /]\r\n\r\n[accordion collapsible=\"yes no\"][toggle title=\"Package Cost\" open=\"yes\"]\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"chevron-right\" icon_color=\"#ffffff\" background_color=\"\"]\r\n<ul>\r\n	<li>\r\n<h4>$1,500.00 one-time license and implementation fee</h4>\r\n</li>\r\n	<li>\r\n<h4>$90.00 Monthly</h4>\r\n</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/toggle][toggle title=\"Mobile Winery POS\" open=\"no\"]\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"\" background_color=\"#ffffff\"]\r\n<ul>\r\n	<li>Add users or POS stations at no additional license cost.</li>\r\n	<li><strong>Add new POS locations (Physical retail sales locations) as needed.</strong></li>\r\n	<li><strong>Easily charge and ship up to 1,000 POS transactions per month at no extra cost*.</strong></li>\r\n	<li>Process credit cards, with OpenEdge payment processing with encryption at entry/swipe point, the most secure credit card payment processing system in the mobile POS industry.</li>\r\n	<li>Multi location POS and inventory management.</li>\r\n	<li>Comes with a full back office system (Activ8 Manager) accessible from your mobile device.</li>\r\n	<li>Comes with free expert support and free upgrades to new versions.</li>\r\n	<li>Free Integration with Intuit QuickBooks.</li>\r\n	<li>Fully integrated shipping with real time shipping rates, label printing, and tracking.</li>\r\n	<li>Shipping weather tracking and alerts.</li>\r\n	<li>Automated failed delivery and confirmed delivery email notifications.</li>\r\n	<li>Custom shipping and handling fees, origin, and destination sales tax programming at setup.</li>\r\n	<li><strong>Extremely advanced discount options:</strong> Custom customers, inventory discounts, multiple level discounts, loyalty discounts, S&amp;H discount programming.</li>\r\n	<li>Instant and automated S&amp;H, shipping preferences, tax rates, and discount calculations when processing your sales.</li>\r\n	<li>Automated end of day, financial, accounting, revenue recovery, and statistics reports.</li>\r\n	<li><strong>Compliance reports.</strong></li>\r\n	<li>Hundreds of always-available on-demand customer, inventory, and sales transaction reports to print, email, or sent to excel spreadsheets.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/toggle][toggle title=\"Marketing &amp; CRM\" open=\"no\"]\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"\" background_color=\"#ffffff\"]\r\n<ul>\r\n	<li>Built-in automated \"compose and send\" HTML email communications for your customers, and marketing purposes.</li>\r\n	<li>Automated statistics reports.</li>\r\n	<li>Wine club registration source and club cancellation reason tracking.</li>\r\n	<li>Automated membership expiration and suspension tracking.</li>\r\n	<li><strong>Built-in employee incentive program.</strong></li>\r\n	<li><strong>Loyalty Card Integration.</strong></li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/toggle]\r\n\r\n[toggle title=\"Powerful Web Interface\" open=\"no\"]\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"\" background_color=\"#ffffff\"]\r\n<ul>\r\n	<li>Mobile and web interfaces for newsletter registration integrated with your website.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/toggle]\r\n\r\n[toggle title=\"Integrated &amp; Certified\" open=\"no\"]\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"\" background_color=\"#ffffff\"]\r\n<ul>\r\n	<li>PCI compliant and validated with multiple credit card payment processing options.</li>\r\n	<li>FULL integration with FedEx, UPS, and GSO. Use your real time discounted shipping rates, print labels, and easily track your packages from Activ8 Manager - No double entries, no export necessary.</li>\r\n	<li>Easy third-party shipper or fulfillment warehouse export.</li>\r\n	<li>Standard QuickBooks Accounting integration, setup, and training available for a one-time fee of $350.00, or use our free accounting reports for QuickBooks Accounting entries.</li>\r\n	<li>NOAH &amp; MapQuest.</li>\r\n	<li><strong>Free ShipCompliant integration.</strong></li>\r\n	<li><strong>Free QuickBooks Accounting integration and one time setup.</strong></li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/toggle]\r\n\r\n[toggle title=\"Expert Support\" open=\"no\"]\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"\" background_color=\"#ffffff\"]\r\n<ul>\r\n	<li><strong>Free initial customer data import.</strong></li>\r\n	<li>Free setup technical support.</li>\r\n	<li><strong>Free ongoing unlimited technical support.</strong></li>\r\n	<li>Free wine club software initial training. Unlimited access to up-to-date online documentation, help, training manual, and tutorials.</li>\r\n	<li>Free automatic POS app and winery software product updates.</li>\r\n	<li>Full data backup twice daily.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/toggle]\r\n\r\n[toggle title=\"Upgrades\" open=\"no\"]\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"\" background_color=\"#ffffff\"]\r\n<ul>\r\n	<li>Upgrade to <a title=\"Enterprise Winery POS\" href=\"https://activeclubsolutions.net/wine-club-software-pricing/winery-pos/enterprise-winery-pos/\"><strong>Activ8 Enterprise POS </strong></a>as your tasting room volume grows.<strong> </strong> No upgrade fee for POS upgrade only. Enterprise monthly fees apply upon upgrade.</li>\r\n	<li><strong>Add <a title=\"Activ8 Pro\" href=\"https://activeclubsolutions.net/wine-club-software-pricing/pro-wine-club-software-pricing/\">Activ8 PRO wine club software.</a></strong></li>\r\n	<li><strong>Add on the <a title=\"Shopping Cart Add-On\" href=\"https://activeclubsolutions.net/wine-club-software-pricing/winery-website-shopping-cart/\">Activ8 Winery Ecommerce</a> for a one-time setup fee of $450.00</strong></li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/toggle][toggle title=\"Winery Ecommerce Add-on\" open=\"no\"]\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"\" background_color=\"#ffffff\"]\r\n<ul>\r\n	<li>Available and fully integrated as a tasting room solution, one single database.</li>\r\n	<li><a title=\"Shopping Cart Add-On\" href=\"https://activeclubsolutions.net/wine-club-software-pricing/winery-website-shopping-cart/\">See details.</a></li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/toggle]\r\n\r\n[/accordion]\r\n\r\n[gap height=\"25\" /]\r\n\r\n*<em>Low charged transaction fees only apply for POS transactions in excess of 1000 in one month.</em>\r\n\r\n[/fullbox]','PRO Winery POS','','publish','closed','open','','pro-winery-pos','','','2016-03-16 10:05:25','2016-03-16 17:05:25','',0,'https://activeclubsolutions.net/?page_id=1768',0,'page','',0),
(1770,2,'2015-01-02 18:20:31','2015-01-03 01:20:31','','winery POS','','inherit','closed','open','','ipad-screenshot','','','2015-01-15 12:03:18','2015-01-15 19:03:18','',1753,'https://activeclubsolutions.net/wp-content/uploads/2015/01/iPad-screenshot.png',0,'attachment','image/png',0),
(1772,2,'2015-01-07 23:50:21','2015-01-08 07:50:21','','Mobile App','','publish','closed','closed','','mobile-app','','','2018-10-31 20:54:22','2018-11-01 03:54:22','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=1772',1,'ninzio-slider','',0),
(1774,2,'2015-01-02 23:45:39','2015-01-03 06:45:39','','winery POS and wine club software','','inherit','closed','open','','6-bg','','','2015-01-15 12:02:59','2015-01-15 19:02:59','',0,'https://activeclubsolutions.net/wp-content/uploads/2015/01/6-bg.jpg',0,'attachment','image/jpeg',0),
(1776,2,'2015-01-02 23:53:04','2015-01-03 06:53:04','','winery POS','','inherit','closed','open','','6-1','','','2015-01-15 12:02:42','2015-01-15 19:02:42','',0,'https://activeclubsolutions.net/wp-content/uploads/2015/01/6-1.png',0,'attachment','image/png',0),
(1777,2,'2015-01-03 11:06:18','2015-01-03 19:06:18','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"] [two_thirds last=\"no\"]\r\n<h1>POS Equipment Partner</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nActiv8 Commerce has partnered with POS Portal to help you find the best mobile POS equipment, at the best value with the level of customer service and technical support Activ8 Commerce clients are accustomed to.\r\n\r\n[gap height=\"25\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2015/01/POS-portal.jpg\"><img class=\"alignnone size-full wp-image-1779\" src=\"https://activeclubsolutions.net/wp-content/uploads/2015/01/POS-portal.jpg\" alt=\"POS portal\" width=\"225\" height=\"225\" /></a>\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"25\" /]\r\n<h3>POS Portal</h3>\r\n(855)838-4611\r\n\r\nEquipment for Activ8 POS:\r\n\r\n<a href=\"http://partner.posportal.com/activeclubsolutions/acs/\">posportal.com</a>\r\n\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n&nbsp;\r\n\r\n[/two_thirds]\r\n\r\n[one_quarter last=\"yes\"]\r\n<h1>View All Partners</h1>\r\n[ninzio_button text=\"Accounting Systems\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/accounting\" /]\r\n\r\n[ninzio_button text=\"Compliance Providers\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/compliance-providers\" /]\r\n\r\n[ninzio_button text=\"Misc Integrated Services\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/misc-integrated-services\" /]\r\n\r\n[ninzio_button text=\"Payment Processing\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/payment-processing-partners\" /]\r\n\r\n[ninzio_button text=\"Shipping &amp; Fulfillment\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/shipping-fulfillment-partners\" /]\r\n\r\n[ninzio_button text=\"Web Design Agencies\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/web-design-agencies\" /]\r\n\r\n[ninzio_button text=\"Website Marketing &amp; Media\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/website-marketing-media\" /]\r\n\r\n\r\n[/one_quarter]\r\n\r\n[/fullbox]','POS Equipment','','draft','closed','closed','','pos-portal','','','2019-05-21 15:25:53','2019-05-21 22:25:53','',1436,'https://activeclubsolutions.net/?page_id=1777',0,'page','',0),
(1779,2,'2015-01-03 11:12:47','2015-01-03 18:12:47','','POS portal','','inherit','closed','open','','pos-portal-2','','','2015-01-03 11:12:47','2015-01-03 18:12:47','',1777,'https://activeclubsolutions.net/wp-content/uploads/2015/01/POS-portal.jpg',0,'attachment','image/jpeg',0),
(1780,2,'2015-01-05 12:10:57','2015-01-05 20:10:57','Visit us at craft Beverages Unlimited in Richmond, Virginia on March 4th and 5th, 2015.\r\n\r\nFREE TRADE SHOW PASS\r\n\r\nWe want you to be our guest at the 2015 Craft Beverages Unlimited Trade Show this March!\r\n\r\n• Click here to register:\r\n\r\n<a href=\"http://www.registrationboss.com/accounts/login/?next=/craft-beverages-unlimited-2015\">Register with code FREEPASS</a>\r\n\r\n• Be sure to enter Discount Code: FREEPASS at checkout.\r\n\r\n• On Wednesday, lunch and beverage tastings are included with your ticket.\r\nWhen:\r\nWednesday, March 4 from 10:00 a.m. – 6:00 p.m.\r\nThursday, March 5 from 10:00 a.m. – 2:00 p.m.\r\n\r\nWhere:\r\nGreater Richmond Convention Center\r\n403 North 3rd Street\r\nRichmond, VA 23219\r\nConveniently located off I-95\r\n\r\n<a href=\"http://www.google.com/maps/place/Greater+Richmond+Convention+Center/@37.545124,-77.436664,17z/data=!3m1!4b1!4m2!3m1!1s0x89b1113b6edba73d:0xbd961feff3048a15\">Directions</a>\r\n\r\nFor More Info:\r\n\r\nwww.craftbeveragesunlimited.com or call 888.273.4533\r\n\r\nWe look forward to meeting you in person this March.\r\n\r\n&nbsp;','2015 Craft Beverages Unlimited','','pending','closed','open','','2015-craft-beverages-unlimited','','','2022-08-14 21:04:20','2022-08-15 04:04:20','',0,'https://activeclubsolutions.net/?p=1780',0,'post','',0),
(1781,2,'2015-01-05 12:06:24','2015-01-05 19:06:24','','richmond2015','','inherit','closed','open','','richmond2015','','','2015-01-05 12:06:24','2015-01-05 19:06:24','',1780,'https://activeclubsolutions.net/wp-content/uploads/2015/01/richmond2015.jpg',0,'attachment','image/jpeg',0),
(1782,2,'2015-01-05 12:16:32','2015-01-05 20:16:32','Visit us at the 2015 Midwest Grape and Wine Expo, March 11 &amp; 12, 2015 in Saint Charles, Missouri.\r\n\r\nFREE TRADE SHOW PASS\r\n\r\nWe want you to be our guest at the 2015 Midwest Grape &amp; Wine + Craft Brew Trade Show this March!\r\n\r\n* Click here to register:\r\n\r\n<a href=\"http://www.registrationboss.com/accounts/login/?next=/midwest-grape-and-wine-craft-brew-2015\" target=\"_blank\" rel=\"noopener\">Registration with code FREEPASS at checkout.</a>\r\n\r\n* Be sure to enter Discount Code: FREEPASS at checkout.\r\n\r\n* On Wednesday, lunch and beverage tastings are included with your ticket.\r\n\r\nWhen:\r\nWednesday, March 11 from 10:00 a.m. - 6:00 p.m.\r\nThursday, March 12 from 10:00 a.m. - 2:00 p.m.\r\n\r\nWhere:\r\nSt. Charles Convention Center\r\n1 Convention Center Plaza\r\nSt. Charles, MO 63303\r\nConveniently located off I-70\r\n\r\n<a href=\"http://www.google.com/maps/place/St.+Charles+Convention+Center/@38.76979,-90.502853,17z/data=!3m1!4b1!4m2!3m1!1s0x87df2ee681ccb085:0x1031c683ef729bd6\" target=\"_blank\" rel=\"noopener\">Directions</a>\r\n\r\nFor More Info:\r\nwww.midwestgrape.com or call 888.273.4533\r\nWe look forward to meeting you in person this March.','2015 Midwest Grape and Wine Expo','','pending','closed','open','','2015-midwest-grape-and-wine-expo','','','2022-08-14 21:04:20','2022-08-15 04:04:20','',0,'https://activeclubsolutions.net/?p=1782',0,'post','',0),
(1783,2,'2015-01-05 12:16:11','2015-01-05 19:16:11','','midwest','','inherit','closed','open','','midwest','','','2015-01-05 12:16:11','2015-01-05 19:16:11','',1782,'https://activeclubsolutions.net/wp-content/uploads/2015/01/midwest.jpg',0,'attachment','image/jpeg',0),
(1784,0,'2015-01-05 19:16:32','2015-01-05 19:16:32','','2015 Midwest Grape and Wine Expo','','publish','closed','open','','2015-midwest-grape-and-wine-expo','','','2015-01-05 19:16:32','2015-01-05 19:16:32','',0,'https://activeclubsolutions.net/feed-items/2015-midwest-grape-and-wine-expo/',0,'wprss_feed_item','',0),
(1785,0,'2015-01-05 19:10:57','2015-01-05 19:10:57','','2015 Craft Beverages Unlimited','','publish','closed','open','','2015-craft-beverages-unlimited','','','2015-01-05 19:10:57','2015-01-05 19:10:57','',0,'https://activeclubsolutions.net/feed-items/2015-craft-beverages-unlimited/',0,'wprss_feed_item','',0),
(1786,2,'2015-01-05 12:50:55','2015-01-05 19:50:55','Wineries, distilleries, breweries, wine shops and wine bar are fun vibrant busy places where processing sales, managing club members, taking special orders and shipping instructions should to be mobile, easy, quick and interactive.\r\n\r\nOur mobile winery POS native app is all that.\r\n\r\nThe backend of our solution offers a unique level of powerful control, inventory management and accounting integration.\r\n<h4>With our leading wine club software and E-commerce options, we offer a truly integrated tasting room direct to consumer solution, in one single database.</h4>\r\n&nbsp;\r\n<h2>The Activ8 Mobile Winery POS native app:</h2>\r\n[icon_list size=\"small medium large\" type=\"circle square\" icon=\"icon name\" icon_color=\"\" background_color=\"\"]\r\n<ul>\r\n	<li>Is part of a true integration in one database: information gets updated across systems and locations fully and in real time.</li>\r\n	<li>Is user friendly.</li>\r\n	<li>Has easy and powerful return, void, pending order changes, discounts, tax and S&amp;H features.</li>\r\n	<li>Is affordable, with minimum equipment investment.</li>\r\n	<li>Is integrated with an extremely secure payment processor, with encryption at entry or card swipe.</li>\r\n	<li>Comes with multi location POS and inventory management.</li>\r\n	<li>Allows you to add users or POS stations at no additional license cost.</li>\r\n	<li>Allows you to add or edit club members at the POS.</li>\r\n	<li>Has handy Wine Club pickup features, with iPad signature, \"swap out\" and payment info update capabilities.</li>\r\n	<li>Comes with a full back office system (Activ8 Manager) accessible from your mobile device.</li>\r\n	<li>Comes with free expert support and free upgrades to new versions.</li>\r\n	<li>Is integrated with QuickBooks.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\nFor more information on the Activ8 Mobile POS and pricing, contact <a href=\"mailto:&quot;info@activeclubsolutions.net&quot;\">info@activeclubsolutions.net</a> or call 1-877-441-2582 ext 56.\r\n\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2015/01/iPad-screenshot.png\"><img class=\" wp-image-1753 aligncenter\" src=\"https://activeclubsolutions.net/wp-content/uploads/2015/01/iPad-screenshot.png\" alt=\"iPad screenshot\" width=\"875\" height=\"657\" /></a>','NEW! The Active Club iPad winery POS','','pending','closed','open','','new-the-active-club-ipad-winery-pos','','','2022-08-14 21:04:20','2022-08-15 04:04:20','',0,'https://activeclubsolutions.net/?p=1786',0,'post','',0),
(1787,0,'2015-01-05 19:50:55','2015-01-05 19:50:55','','NEW! The Active Club Mobile POS','','publish','closed','open','','new-the-active-club-mobile-pos','','','2015-01-05 19:50:55','2015-01-05 19:50:55','',0,'https://activeclubsolutions.net/feed-items/new-the-active-club-mobile-pos/',0,'wprss_feed_item','',0),
(1790,2,'2015-01-07 00:26:34','2015-01-07 07:26:34','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"20\"]\r\n[two_thirds last=\"no\"]\r\n<h1>Retired iPad POS page</h1>\r\n[gap height=\"25\" /]\r\n<a style=\"font-size: 250%;\" href=\"https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/\">CLICK HERE for current page</a>\r\n\r\n<h4>Wineries, distilleries, breweries, wine shops and wine bar are fun vibrant busy places where processing sales, managing club members, taking special orders and shipping instructions should to be mobile, easy, quick and interactive.</h4>\r\n\r\nOur winery POS mobile native app is all that.\r\n\r\nThe backend of our solution offers a unique level of powerful control, inventory management and accounting integration.\r\n\r\nWith our leading wine club software and E-commerce options, we offer a truly integrated tasting room direct to consumer solution, in one single database.\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<h3>The Activ8 Mobile Winery POS native App</h3>\r\n\r\n[gap height=\"25\" /]\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"\" background_color=\"#ffffff\"]\r\n<ul>\r\n<li>Is part of a true integration in one database: information gets updated across systems and locations fully and in real time.</li>\r\n<li>Is <b>user friendly</b>.</li>\r\n<li>Has easy and powerful return, void, pending order changes, discounts, tax and <b>S&amp;H</b> features.</li>\r\n<li>Is affordable, with minimum equipment investment.</li>\r\n<li>Is integrated with an extremely secure payment processor, with <b>encryption</b> at card swipe.</li>\r\n<li>Comes with multi-location POS and inventory management.</li>\r\n<li>Allows you to add users or POS stations at <b>no additional license cost</b>.</li>\r\n<li>Allows you to add or edit club members at the POS.</li>\r\n<li>Has handy Wine Club <b>pickup features</b>, with iPad <b>signature</b>, <b>Swap Out</b> and payment info update capabilities.</li>\r\n<li><b>Kitchen</b> or fulfillment printer</li>\r\n<li>Modifiers to <b>restaurant POS</b> functionality</li>\r\n<li><b>Wholesale</b> functionality</li>\r\n<li>Comes with a full back office system (Activ8 Manager) accessible from your mobile device.</li>\r\n<li>Comes with expert support and free upgrades to new versions.</li>\r\n<li>Is integrated with QuickBooks Accounting.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[gap height=\"25\" /]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/two_thirds]\r\n[one_third last=\"yes\"]\r\n\r\n<h3>Checkout Screen</h3>\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadCheckout.png\">\r\n<img class=\"alignright wp-image-1794 \" src=\"https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadCheckout.png\" alt=\"Winery POS and eCommerce solution\" width=\"355\" height=\"274\" />\r\n</a>\r\n\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<h3>Order History Screen - notice the Swap button</h3>\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadOrderHistory.png\">\r\n<img class=\"alignright wp-image-2235 \" src=\"https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadOrderHistory.png\" alt=\"Winery POS and eCommerce solution\" width=\"355\" height=\"274\" />\r\n</a>\r\n\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<h3>Whole Order Screen</h3>\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadWholesaleOrder.png\">\r\n<img class=\"alignright wp-image-2235 \" src=\"https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadWholesaleOrder.png\" alt=\"Winery POS and eCommerce solution\" width=\"355\" height=\"274\" />\r\n</a>\r\n\r\n[/one_third]\r\n[/fullbox]\r\n\r\n','Full Function iPad POS - retired page','','publish','closed','open','','winery-pos','','','2017-01-24 15:53:57','2017-01-24 23:53:57','',0,'https://activeclubsolutions.net/?page_id=1790',0,'page','',0),
(1793,2,'2015-01-07 00:32:15','2015-01-07 07:32:15','','winery POS','','inherit','closed','open','','header30','','','2015-01-15 12:02:27','2015-01-15 19:02:27','',1790,'https://activeclubsolutions.net/wp-content/uploads/2015/01/header30.jpg',0,'attachment','image/jpeg',0),
(1794,2,'2015-01-07 00:34:20','2015-01-07 07:34:20','','Winery POS and ecommerce solution','','inherit','closed','open','','winery-pos-ipad','','','2015-01-07 00:34:38','2015-01-07 07:34:38','',1790,'https://activeclubsolutions.net/wp-content/uploads/2015/01/winery-pos-ipad.jpg',0,'attachment','image/jpeg',0),
(1796,2,'2015-01-07 11:37:27','2015-01-07 19:37:27','<div style=\"margin-top: -60px; \"></div>\r\n<div>[smartslider3 slider=3]</div>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"20\"]\r\n[two_thirds last=\"no\"]\r\n<h1>Tasting Room iPad POS</h1>\r\n<strong>Wineries, distilleries, breweries, wine shops and wine bars are fun vibrant busy places.  Processing sales, managing club members, taking special orders and shipping purchases can to be vibrant and fun too. Mobile, easy, quick and interactive.</strong>\r\n\r\n[gap height=\"15\" /]\r\n<b>Activ8\'s tasting room POS mobile native app is all that, and then some.</b>\r\n\r\nThe back end of Activ8\'s mobile POS solution offers a unique level of powerful retail and club control, inventory management and accounting integration.\r\n\r\nActiv8\'s combination of mobile tasting room POS, leading club software and customizable eCommerce toolkit offers a truly integrated solution, all in one single and unique database.\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>The Activ8 Mobile Tasting Room POS native App</h3>\r\n[gap height=\"25\" /]\r\n\r\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"\" background_color=\"#ffffff\"]\r\n<ul>\r\n 	<li><strong>first</strong> with attached mobile EMV reader – <a href=\"http://anywherecommerce.com/products/card-reader-chip-sign-walker-2\">show me</a></li>\r\n 	<li>is part of a true integration in one database: information gets updated across systems and locations fully and in real time</li>\r\n 	<li>is <strong>easy to use </strong>saving you hours of training time</li>\r\n 	<li>has easy and powerful swaps, returns, voids, pending order changes,</li>\r\n 	<li>has automated discounts, tax and <strong>S&amp;H</strong> features</li>\r\n 	<li>is affordable, with <strong>minimum</strong> equipment investment</li>\r\n 	<li>is integrated with an extremely secure payment processor, using point-to-point <strong>encryption</strong> at card swipe and full tokenization, protecting your business and your clients</li>\r\n 	<li>comes with multi-location Tasting Room POS and inventory management</li>\r\n 	<li>shares orders across multiple locations</li>\r\n 	<li>unlimited users and iPads at <strong>no additional license cost</strong></li>\r\n 	<li>allows you to add or edit club members</li>\r\n 	<li>has amazing Club <strong>pickup features</strong>, with iPad <strong>signature</strong></li>\r\n 	<li>automates <strong>Swap Outs, </strong>reconciling both payment/credit and inventory</li>\r\n 	<li><strong>kitchen</strong> or fulfillment printer</li>\r\n 	<li>modifiers for <strong>restaurant POS</strong> functionality</li>\r\n 	<li><strong>wholesale</strong> functionality, giving field reps a mobile solution for creating new accounts, generating invoices and even taking payments in the field</li>\r\n 	<li>comes with a full back office system (Activ8 Manager) accessible from your mobile device</li>\r\n 	<li>comes with expert support and free upgrades to new versions</li>\r\n 	<li>is integrated with QuickBooks Accounting</li>\r\n 	<li>bluetooth <strong>barcode scanners</strong> supported</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n 	<li><strong><a title=\"Automated Club Processing\" href=\"/winery-pos-features/club-management/\">Advanced Club System</a></strong></li>\r\n 	<li><strong><a title=\"Expert Technical Support\" href=\"/club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n 	<li><strong><a title=\"Integrated &amp; Certified Club Management Software\" href=\"/club-software-features/integrated-certified/\">Integrated &amp; Certified</a></strong></li>\r\n 	<li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n 	<li><strong><a title=\"Marketing, CRM &amp; Customer Service\" href=\"/club-software-features/marketing-crm-customer-service/\">Marketing, CRM &amp; Customer Service</a></strong></li>\r\n 	<li><strong><a title=\"Mobile Dashboards\" href=\"/club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n 	<li><strong><a title=\"Shopping Cart &amp; Web Interfaces\" href=\"/winery-pos-features/winery-ecommerce/\">Responsive Ecommerce</a></strong></li>\r\n 	<li><strong><a title=\"Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[gap height=\"0\" /]\r\n[box title=\"Introducing Active POS\"][ACSVimeo id=297431840 width=800 height=500/][/box]\r\n<h3>Visually Compare our iPad POS</h3>\r\n<a href=\"/wp-content/uploads/2017/04/ACSvsVin65-POS_2.png\">\r\n<img class=\"aligncenter size-full wp-image-2552\" src=\"/wp-content/uploads/2017/04/ACSvsVin65-POS_2.png\" alt=\"ACS vs Vin65 POS\" width=\"1000\" height=\"637\" />\r\n</a>\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n<a href=\"/wp-content/uploads/2017/04/ACSvsVinSuite-POS.png\">\r\n<img class=\"aligncenter size-full wp-image-2555\" src=\"/wp-content/uploads/2017/04/ACSvsVinSuite-POS.png\" alt=\"ACS vs VinSuite POS\" width=\"1000\" height=\"323\" />\r\n</a>\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n<a href=\"/wp-content/uploads/2017/04/ACSvsOrderPort-POS.png\">\r\n<img class=\"aligncenter size-full wp-image-2556\" src=\"/wp-content/uploads/2017/04/ACSvsOrderPort-POS.png\" alt=\"ACS vs OrderPort POS\" width=\"1000\" height=\"323\" />\r\n</a>\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n<a href=\"/wp-content/uploads/2017/04/ACSvsRevel-POS.png\">\r\n<img class=\"aligncenter size-full wp-image-2559\" src=\"/wp-content/uploads/2017/04/ACSvsRevel-POS.png\" alt=\"ACS vs Revel POS\" width=\"1000\" height=\"323\" />\r\n</a>\r\n\r\n[/two_thirds]\r\n[one_third last=\"yes\"]\r\n<h3>New Order Screen</h3>\r\n<a href=\"/wp-content/uploads/2017/01/POSNewOrder.png\">\r\n<img class=\"alignright wp-image-1794 \" src=\"/wp-content/uploads/2017/01/POSNewOrder.png\" alt=\"Winery POS and eCommerce solution\" width=\"355\" height=\"274\" />\r\n</a>\r\n\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>Checkout Screen</h3>\r\n<a href=\"/wp-content/uploads/2017/01/POSCheckout.png\">\r\n<img class=\"alignright wp-image-1794 \" src=\"/wp-content/uploads/2017/01/POSCheckout.png\" alt=\"Tasting Room POS and eCommerce solution\" width=\"355\" height=\"274\" />\r\n</a>\r\n\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>Order History Screen / Pickups with Signature - notice the <b>Swap</b> button</h3>\r\n<a href=\"/wp-content/uploads/2017/01/POSOrderHistory.png\">\r\n<img class=\"alignright wp-image-2235 \" src=\"/wp-content/uploads/2017/01/POSOrderHistory.png\" alt=\"Winery POS and eCommerce solution\" width=\"355\" height=\"274\" />\r\n</a>\r\n\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>Pending Order Screen, Local and Shared</h3>\r\n<a href=\"/wp-content/uploads/2017/01/POSPending.png\">\r\n<img class=\"alignright wp-image-2235 \" src=\"/wp-content/uploads/2017/01/POSPending.png\" alt=\"Tasting Room POS and eCommerce solution\" width=\"355\" height=\"274\" />\r\n</a>\r\n\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>Customer Screen</h3>\r\n<a href=\"/wp-content/uploads/2017/01/POSCustomer.png\">\r\n<img class=\"alignright wp-image-2235 \" src=\"/wp-content/uploads/2017/01/POSCustomer.png\" alt=\"Winery POS and eCommerce solution\" width=\"355\" height=\"274\" />\r\n</a>\r\n\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>Wholesale Order Screen</h3>\r\n<a href=\"/wp-content/uploads/2017/01/POSWholesale.png\">\r\n<img class=\"alignright wp-image-2235 \" src=\"/wp-content/uploads/2017/01/POSWholesale.png\" alt=\"Tasting Room POS and eCommerce solution\" width=\"355\" height=\"274\" />\r\n</a>\r\n\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>Inventory Transfer with Signatures</h3>\r\n<a href=\"/wp-content/uploads/2017/04/POSTransfer.png\">\r\n<img class=\"aligncenter size-full wp-image-2554\" src=\"/wp-content/uploads/2017/04/POSTransfer.png\" alt=\"POSTransfer\" width=\"1024\" height=\"768\" />\r\n</a>\r\n\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>Add Inventory</h3>\r\n<a href=\"/wp-content/uploads/2017/04/POSAddInventory.png\">\r\n<img class=\"aligncenter size-full wp-image-2558\" src=\"/wp-content/uploads/2017/04/POSAddInventory.png\" alt=\"POSAddInventory\" width=\"1024\" height=\"768\" />\r\n</a>\r\n\r\n[gap height=\"10\" /]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>GPS Enabled Locations</h3>\r\n<a href=\"/wp-content/uploads/2017/04/POSLocation.png\">\r\n<img class=\"aligncenter size-full wp-image-2560\" src=\"/wp-content/uploads/2017/04/POSLocation.png\" alt=\"POSLocation\" width=\"1024\" height=\"768\" />\r\n</a>\r\n\r\n[/one_third]\r\n[/fullbox]','Advanced Tasting Room iPad POS','','publish','closed','closed','','ipad-winery-pos','','','2018-10-31 21:51:24','2018-11-01 04:51:24','',1435,'https://activeclubsolutions.net/?page_id=1796',1,'page','',0),
(1801,2,'2015-01-07 12:21:42','2015-01-07 19:21:42',' ','','','publish','closed','closed','','1801','','','2020-09-18 11:18:18','2020-09-18 18:18:18','',1435,'https://activeclubsolutions.net/?p=1801',4,'nav_menu_item','',0),
(1811,2,'2015-02-12 10:31:39','2015-02-12 18:31:39','We enjoyed talking with you about your winery POS, wine club software or ecommerce need.\r\n\r\nIf you have not heard from us yet, send us a note now and we will contact you asap.\r\n\r\n[ninzio_button text=\"send us a note\" size=\"small\" target=\"_self _blank\" icon=\"angle-right\" back_color=\"\" color=\"\" href=\"mailto:info@activeclubsolutions.net\" /]\r\n\r\nWe are looking forward to talking with you you again soon.\r\n\r\nDan, Helene and Arne','Thank you for visiting us at the 2015 Unified Wine and Grape Symposium!','','pending','closed','open','','thank-visiting-us-2015-unified-wine-grape-symposium','','','2022-08-14 21:04:20','2022-08-15 04:04:20','',0,'https://activeclubsolutions.net/?p=1811',0,'post','',0),
(1812,2,'2015-02-12 10:22:31','2015-02-12 17:22:31','','thank you note','','inherit','closed','open','','thank-you-note','','','2015-02-12 10:22:31','2015-02-12 17:22:31','',1811,'https://activeclubsolutions.net/wp-content/uploads/2015/02/thank-you-note.jpg',0,'attachment','image/jpeg',0),
(1813,0,'2015-02-12 17:31:39','2015-02-12 17:31:39','','Thank you for visiting us at the 2015 Unified Wine and Grape Symposium!','','publish','closed','open','','thank-you-for-visiting-us-at-the-2015-unified-wine-and-grape-symposium','','','2015-02-12 17:31:39','2015-02-12 17:31:39','',0,'https://activeclubsolutions.net/feed-items/thank-you-for-visiting-us-at-the-2015-unified-wine-and-grape-symposium/',0,'wprss_feed_item','',0),
(1814,0,'2015-01-05 19:50:55','2015-01-05 19:50:55','','NEW! The Active Club iPad winery POS','','publish','closed','open','','new-the-active-club-ipad-winery-pos','','','2015-01-05 19:50:55','2015-01-05 19:50:55','',0,'https://activeclubsolutions.net/feed-items/new-the-active-club-ipad-winery-pos/',0,'wprss_feed_item','',0),
(1858,2,'2016-02-23 14:41:12','2016-02-23 21:41:12','','first data','','inherit','closed','closed','','first-data','','','2016-02-23 14:50:32','2016-02-23 21:50:32','',1589,'https://activeclubsolutions.net/wp-content/uploads/2016/02/first-data.png',0,'attachment','image/png',0),
(1859,2,'2016-02-23 14:41:19','2016-02-23 21:41:19','','vantiv','','inherit','closed','closed','','vantiv','','','2016-02-23 14:44:24','2016-02-23 21:44:24','',1589,'https://activeclubsolutions.net/wp-content/uploads/2016/02/vantiv.png',0,'attachment','image/png',0),
(1867,2,'2016-03-28 14:29:55','2016-03-28 21:29:55','[fullbox id=\"\" padding_top=\"\" padding_bottom=\"20\"]\r\n\r\n<div style=\"margin-top: -100px; margin-left: 0px;\">\r\n<img src=\"/wp-content/uploads/2017/10/picewithmagnifyingglass.png\" alt=\"\" class=\"alignnone size-medium\" />\r\n</div>\r\n[gap height=\"30\" /]\r\n\r\n<h1>Our customizable All-In-One Tasting Room Solution</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nActiv8 Commerce offers several winery software packages and services to accommodate any size winery, from starter to high volume tasting rooms. \r\nOur mobile POS and our wine/spirits club software can be used alone, or in combination. We also offer a powerful, ecommerce solution that allows \r\nyou to sell wines, merchandise, and event tickets online. Below are the key features of each package, plus our ecommerce add-on. Click a package for more details.\r\n\r\n[gap height=\"15\" /]\r\n<h1>Explore our Winery/Distillery Software Packages</h1>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<p style=\"text-align: left;\">\r\n\r\n[ninzio_button text=\"All-In-One Tasting Room Solution\" size=\"\" target=\"_self _blank\" icon=\"chevron-right\" back_color=\"\" color=\"\" href=\"/winery-software-pricing/all-in-one-tasting-room-solution-pricing/\" /] \r\n[ninzio_button text=\"Club Only\" size=\"\" target=\"_self _blank\" icon=\"chevron-right\" back_color=\"\" color=\"\" href=\"/winery-software-pricing/wine-club-software-pricing\" /] \r\n[ninzio_button text=\"POS Only\" size=\"\" target=\"_self _blank\" icon=\"chevron-right\" back_color=\"\" color=\"\" href=\"/winery-software-pricing/activeclub-winery-pos/\" /]\r\n[ninzio_button text=\"eCommerce Option\" size=\"\" target=\"_self _blank\" icon=\"chevron-right\" back_color=\"\" color=\"\" href=\"/winery-software-pricing/winery-website-shopping-cart/\" /]\r\n\r\n</p>\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<h1>Package Pricing</h1>\r\n\r\n<div style=\"margin-top: -250px;\">\r\n[table align=\"center\" header_color=\"\" header_back_color=\"#10101\"]\r\n[thead]\r\n[th colspan=\"\" rowspan=\"\"][font_size font_size=\"22px\" line_height=\"26px\"]All-In-One Tasting Room Solution[/font_size][/th]\r\n[th colspan=\"\" rowspan=\"\"][font_size font_size=\"22px\" line_height=\"26px\"]Club Only[/font_size][/th]\r\n[th colspan=\"\" rowspan=\"\"][font_size font_size=\"22px\" line_height=\"26px\"]POS Only[/font_size][/th]\r\n[th colspan=\"\" rowspan=\"\"][font_size font_size=\"22px\" line_height=\"26px\"]Ecommerce Option[/font_size][/th]\r\n[/thead]\r\n\r\n[tbody]\r\n[tr]\r\n[td colspan=\"\" rowspan=\"\"]\r\nAll-inclusive set of software and services packed into a custom solution.\r\n[/td]\r\n[td colspan=\"\" rowspan=\"\"]\r\nUse our wine/spirits club software to manage your club members, add registration and secure login pages to your website, process, charge and ship club release, promote your club and more.\r\n[/td]\r\n[td colspan=\"\" rowspan=\"\"]\r\nUse our iPad  POS and our administrative interface, Activ8 Manager to process your retail sales, ship, communicate with your customers, manage your inventory and more.\r\n[/td]\r\n[td colspan=\"\" rowspan=\"\"]\r\nWe offer a solution hosting the web tools on our server, OR..., you can insert our web tools into your site creating our pages within your pages.\r\n[/td]\r\n[/tr]\r\n[/tbody]\r\n[/table]\r\n</div>\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/fullbox]','Products and Pricing','','publish','closed','closed','','winery-software-pricing','','','2019-09-02 22:11:08','2019-09-03 05:11:08','',0,'https://activeclubsolutions.net/?page_id=1867',0,'page','',0),
(1868,2,'2016-03-28 14:03:35','2016-03-28 21:03:35','[fullbox id=\"\" padding_top=\"\" padding_bottom=\"20\"]\r\n<div style=\"margin-top: -100px; margin-left: 0px;\"><img class=\"alignnone size-medium\" src=\"/wp-content/uploads/2017/10/picewithmagnifyingglass.png\" alt=\"\" /></div>\r\n[gap height=\"30\" /]\r\n<h1>All-In-One Tasting Room Solution</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nActive offers several packages of our All-In-One Tasting Room Solution to accommodate any size business, from a starter level to high volume DTC programs. Our mobile <a href=\"/winery-pos-features/ipad-winery-pos/\"><span style=\"color: #555555;\">POS</span> </a> , <a href=\"/winery-pos-features/winery-software-technology/\"><span style=\"color: #555555;\">Club software</span></a> and <a style=\"background-color: #ffffff; box-shadow: 0 0 0 1px rgba(var(--color-primary-rgb), 0.2);\" href=\"/winery-pos-features/winery-ecommerce/\"><span style=\"color: #555555;\">eCommerce</span></a><span style=\"color: var(--color-text);\"> </span><span style=\"color: var(--color-text);\">solution </span><span style=\"color: var(--color-text);\">can be used in combination to provide the highest level of sales program efficiency.  The chart b</span><span style=\"color: var(--color-text);\">elow outlines the key features of each package, plus our self-hosted </span><a href=\"/winery-pos-features/winery-ecommerce/\"><span style=\"color: #555555;\">eCommerce</span></a><span style=\"color: var(--color-text);\"> option.</span>\r\n\r\n[gap height=\"15\" /]\r\n\r\n<img class=\"aligncenter size-full\" src=\"/wp-content/uploads/2019/06/pricechart_3.png\" alt=\"All-In-One Tasting Room Solution pricing chart and other options\" width=\"933\" height=\"1044\" />\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[gap height=\"15\" /]\r\n\r\n[/fullbox]','All-In-One Tasting Room Solution Pricing','','publish','closed','closed','','all-in-one-tasting-room-solution-pricing','','','2019-06-30 21:17:20','2019-07-01 04:17:20','',1867,'https://activeclubsolutions.net/?page_id=1868',0,'page','',0),
(1870,2,'2016-03-28 14:28:20','2016-03-28 21:28:20','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"20\"]\r\n\r\n<div style=\"margin-top: -80px; margin-left: 0px;\">\r\n<img src=\"/wp-content/uploads/2017/10/picewithmagnifyingglass.png\" alt=\"\" class=\"alignnone size-medium\" />\r\n</div>\r\n[gap height=\"30\" /]\r\n\r\n<h1>Wine/Spirits Club Software Only</h1>\r\n<h1>[gap height=\"25\" /]</h1>\r\n\r\n<h3>Affordable, easy and powerful wine club solution</h3>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[gap height=\"25\" /]\r\n\r\n[box_container columns=\"1\" version=\"v2\" animate=\"yes\"]\r\n[box target=\"_self _blank\" title=\"Wine/Spirits Club Software Only\" icon=\"angle-right\" icon_color=\"#ffffff\" icon_back_color=\"\"]\r\n\r\n<strong>$1,000</strong> one time implementation fee.\r\n\r\n<h4>$60/month.</h4>\r\n\r\nTransaction fees: $1.00/ship, $0.75/pickup, volume discounts apply.\r\n\r\n[gap height=\"25\" /]\r\n\r\nWe at Activ8 Commerce have developed the ultimate customizable wine club software. Our robot works for you 7/24! It is able to complete tasks in seconds that would take the average person hours to complete.\r\n\r\nSome of our wine club software features:\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n<li>extensive Customer data features</li>\r\n<li>gift and prepaid membership features</li>\r\n<li>membership in multiple clubs</li>\r\n<li>club automation wizard - customizable steps</li>\r\n<li>address validation, email address validation, proximity calculation</li>\r\n<li>calculates package weights, custom discounts, handling fees, shipping fees, origin and destination taxes instantly</li>\r\n<li>fully integrated shipping, real-time rates, label printing and tracking</li>\r\n<li>the latest and smartest in member choice / allocation systems allows wine club members to select their own wines for shipment</a></li>\r\n<li>placeholder clubs - reusable abstracts can greatly simplify a club program</li>\r\n<li>automated assistant for declined credit card and revenue recovery</li>\r\n<li>easy personalized Customer emails sent from where your working</li>\r\n<li>customizable wine club software handles company specific exceptions</li>\r\n<li>employee incentive system</li>\r\n<li>automated anniversary (2) and birthdate emails (2)</li>\r\n<li>automated weather</li>\r\n<li>automated club management tools</li>\r\n<li>unparalleled search provides an astonishing set of query tools - like,... show: members with a non-payment history</i>\r\n<li>database change tracking and job queue with log</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[/box]\r\n[/box_container]\r\n\r\n[gap height=\"25\" /]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/fullbox]','Wine/Spirits Club Software Pricing','','publish','closed','closed','','wine-club-software-pricing','','','2019-09-02 21:52:05','2019-09-03 04:52:05','',1867,'https://activeclubsolutions.net/?page_id=1870',0,'page','',0),
(1894,2,'2016-05-05 13:17:51','2016-05-05 20:17:51','<h1>Tasting Room Point-of-Sale Systems</h1>\r\n<h2>The latest generation of POS systems offer a wide range of functions across many winery departments to expedite and increase sales.</h2>\r\nBy Andrew Adams\r\n\r\nYour tasting room cash register should be doing more than just ringing up sales.\r\n\r\nThe point-of-sale (POS) systems available today can be utilized through a terminal or mobile device and offer myriad other functions that range from marketing to inventory management. Several suppliers offer POS systems that are fully integrated with wine club management, e-commerce, warehouse and shipping as well as bookkeeping. The price of a POS service varies from supplier to supplier and typically involves a monthly service fee as well as one-time fees for hardware and software.\r\n\r\n(...)\r\n<h3>ACTIVE CLUB SOLUTIONS</h3>\r\nActiv8 Commerce’ POS system is one element of what the company calls its “truly integrated” direct-to-consumer system. The POS system is a native app on an Apple iPad (downloadable through the App Store) and features encryption at entry or card swipe. All sales are tied to a central database that automatically adjusts inventory and collects real-time shipping rates. The POS system also can be used to manage and update a wine club membership, and all member updates are emailed directly to the club manager. Winery staff can change club allotments with the “swap” button, and the POS also handles split bills, tips and open tabs. The system can be expanded as needed and fully integrated with QuickBooks.\r\n\r\n(...)\r\n\r\nSource: WINES&amp;VINES May 2016','Tasting Room Point Of Sales Systems by Wines & Vines','','pending','closed','open','','1894-2','','','2022-08-14 21:04:20','2022-08-15 04:04:20','',0,'https://activeclubsolutions.net/?p=1894',0,'post','',0),
(1895,2,'2016-05-05 13:16:23','2016-05-05 20:16:23','Activ8 iPad POS station','Active Club iPad POS station','Active Club iPad POS station','inherit','closed','closed','','mpop-3','','','2016-05-05 13:16:56','2016-05-05 20:16:56','',1894,'https://activeclubsolutions.net/wp-content/uploads/2016/05/mpop-3.jpg',0,'attachment','image/jpeg',0),
(1896,2,'2016-05-05 13:42:20','2016-05-05 20:42:20','<h1>Breezy wine club pickups?</h1>\r\nHopefully you did not get up on the wrong side off the bed…Today’s the day, wine club members are coming to your tasting room to pick up their club selections, it’s going to be… a breeze! A breeze? How?\r\n\r\nLet’s see, they will ask:\r\n<ul>\r\n	<li>To swap bottles in their selection (We know…)</li>\r\n	<li>To add bottles to their order</li>\r\n	<li>For a tasting</li>\r\n	<li>For their discount</li>\r\n	<li>Membership profile changes</li>\r\n	<li>Billing information changes</li>\r\n</ul>\r\nActiv8 Commerce comes with the best wine club system in the industry, powerful and highly customizable, yet affordable.\r\n\r\nIt is no secret that wine club members are your best customers, your ambassadors, your number one online shoppers and you want to keep them happy. How?\r\n\r\nGet the tasting room checkout line moving and keep your staff and your club members smiling, start using Activ8 POS pickup and swap features.\r\n\r\nThe Activ8 swap feature eliminates clunky merchandise returns that clog up your checkout line.  Credit cards that have already been charged are automatically reconciled and so is the inventory.\r\n\r\nAnd that’s not all… we’re giving you the ultimate wine club pickup “must have feature”, the instant iPad signature for pickups.\r\n\r\n<a href=\"http://youtu.be/JECRXli-yM8\" target=\"_blank\" rel=\"noopener\">Watch this quick video:</a>\r\n\r\n[youtube id=\"JECRXli-yM8\" width=\"560 height=\"315\"/]\r\n\r\n<a href=\"http://www.facebook.com/ActiveClubSolutions/posts/1024342094270015#\" target=\"_blank\" rel=\"noopener\">Share</a> or <a href=\"http://www.facebook.com/ActiveClubSolutions/posts/1024342094270015#\" target=\"_blank\" rel=\"noopener\">like</a> this YouTube video on Facebook and win 3 months of Activ8 selected services with the purchase of Activ8 POS.','Breezy wine club pickups?','','pending','closed','open','','breezy-wine-club-pickups','','','2022-08-14 21:04:20','2022-08-15 04:04:20','',0,'https://activeclubsolutions.net/?p=1896',0,'post','',0),
(1897,0,'2016-05-05 20:42:20','2016-05-05 20:42:20','','Breezy wine club pickups?','','publish','closed','closed','','breezy-wine-club-pickups','','','2016-05-05 20:42:20','2016-05-05 20:42:20','',0,'https://activeclubsolutions.net/feed-items/breezy-wine-club-pickups/',0,'wprss_feed_item','',0),
(1898,0,'2016-05-05 20:17:51','2016-05-05 20:17:51','','Tasting Room Point Of Sales Systems by Wines &amp; Vines','','publish','closed','closed','','tasting-room-point-of-sales-systems-by-wines-vines','','','2016-05-05 20:17:51','2016-05-05 20:17:51','',0,'https://activeclubsolutions.net/feed-items/tasting-room-point-of-sales-systems-by-wines-vines/',0,'wprss_feed_item','',0),
(1917,6,'2016-07-07 13:18:34','2016-07-07 20:18:34','','Active Club Manager','','publish','closed','closed','','help-and-support-documentation','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1917',26,'nav_menu_item','',0),
(1918,6,'2016-07-07 13:27:01','2016-07-07 20:27:01','','User\'s Guide','','publish','closed','closed','','users-guide','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1918',28,'nav_menu_item','',0),
(1919,6,'2016-07-07 13:27:01','2016-07-07 20:27:01','','Learner\'s Guide','','publish','closed','closed','','learners-guide','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1919',27,'nav_menu_item','',0),
(1926,6,'2016-07-07 13:40:23','2016-07-07 20:40:23','','QuickBooks integration guide','','publish','closed','closed','','quickbooks-accounting','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1926',29,'nav_menu_item','',0),
(1927,6,'2016-07-07 13:40:23','2016-07-07 20:40:23','','Active Club POS','','publish','closed','closed','','active-club-pos','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1927',30,'nav_menu_item','',0),
(1928,6,'2016-07-07 13:46:36','2016-07-07 20:46:36','','Hardware','','publish','closed','closed','','hardware-setup','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1928',32,'nav_menu_item','',0),
(1932,6,'2016-07-07 13:46:36','2016-07-07 20:46:36','','Developer tools','','publish','closed','closed','','developer-tools','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1932',35,'nav_menu_item','',0),
(1933,6,'2016-07-07 13:46:36','2016-07-07 20:46:36','','Customer web services','','publish','closed','closed','','customer-web-services','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1933',36,'nav_menu_item','',0),
(1935,6,'2016-07-07 14:04:14','2016-07-07 21:04:14','','Resources','','publish','closed','closed','','resources-2','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1935',24,'nav_menu_item','',0),
(1936,6,'2016-07-08 08:00:24','2016-07-08 15:00:24','','All Documents','','publish','closed','closed','','all-documents','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=1936',34,'nav_menu_item','',0),
(1940,2,'2016-07-26 06:40:50','2016-07-26 13:40:50','<div id=\"id_579764ebb70491267494963\" class=\"text_exposed_root text_exposed\">\r\n\r\nActiv8 Commerce introduces our new Mobile iPad wholesale platform. Now, you can sell wine anywhere, any time. Our latest feature is fully integrated with our iPad POS, Club/eCommerce and multi-location inventory management systems.\r\n\r\n•Take wholesale orders anywhere.\r\n•Generate invoices or receive payments immediately.\r\n•Affect inventory in real time.<span class=\"text_exposed_show\">\r\n•Never miss a sales opportunity.</span>\r\n<div class=\"text_exposed_show\">\r\n\r\nCombine our industry leading DTC solution and mobile wholesale and you have a best in class, direct to market Active Solution.\r\n\r\n</div>\r\n</div>\r\n<img class=\"alignright size-full wp-image-1941\" src=\"https://activeclubsolutions.net/wp-content/uploads/2016/07/wholesale.png\" alt=\"wholesale\" width=\"1024\" height=\"768\" />','Wholesale in Your Hands','','pending','closed','open','','wholesale-in-your-hands','','','2022-08-14 21:04:20','2022-08-15 04:04:20','',0,'https://activeclubsolutions.net/?p=1940',0,'post','',0),
(1941,2,'2016-07-26 06:24:29','2016-07-26 13:24:29','','wholesale','','inherit','closed','closed','','wholesale','','','2016-07-26 06:24:29','2016-07-26 13:24:29','',1940,'https://activeclubsolutions.net/wp-content/uploads/2016/07/wholesale.png',0,'attachment','image/png',0),
(1942,0,'2016-07-26 13:40:50','2016-07-26 13:40:50','','Wholesale in Your Hands','','publish','closed','closed','','wholesale-in-your-hands','','','2016-07-26 13:40:50','2016-07-26 13:40:50','',0,'https://activeclubsolutions.net/feed-items/wholesale-in-your-hands/',0,'wprss_feed_item','',0),
(1947,2,'2016-08-09 09:14:58','2016-08-09 16:14:58','Does your winery have a restaurant or kitchen?  Then, of course you need to be able to send a food order to a kitchen printer.  Or, perhaps you are having a large event and customer orders need to be taken in one location and picked up in another location like your warehouse or \"pick-up kiosk\"?  Activ8 has the solution for you as we have just added remote printing to the extensive list of features on our mobile POS.\r\n\r\nCombine our already industry leading DTC solution and remote printing and the best in class, Active Solution, gets even better.\r\n\r\n<img class=\"alignright size-full wp-image-1793\" src=\"https://activeclubsolutions.net/wp-content/uploads/2015/01/header30.jpg\" alt=\"winery POS\" width=\"1920\" height=\"500\" />','POS Kitchen and Warehouse Printing','','pending','closed','open','','pos-kitchen-warehouse-printing','','','2022-08-14 21:03:54','2022-08-15 04:03:54','',0,'https://activeclubsolutions.net/?p=1947',0,'post','',0),
(1949,0,'2016-08-09 16:14:58','2016-08-09 16:14:58','','POS Kitchen and Warehouse Printing','','publish','closed','closed','','pos-kitchen-and-warehouse-printing','','','2016-08-09 16:14:58','2016-08-09 16:14:58','',0,'https://activeclubsolutions.net/feed-items/pos-kitchen-and-warehouse-printing/',0,'wprss_feed_item','',0),
(2045,6,'2016-08-21 09:32:06','2016-08-21 16:32:06','','iphone_graph_skew','','inherit','closed','closed','','iphone_graph_skew','','','2016-08-21 09:32:06','2016-08-21 16:32:06','',0,'https://activeclubsolutions.net/wp-content/uploads/2016/08/iphone_graph_skew.png',0,'attachment','image/png',0),
(2056,6,'2016-08-23 06:27:38','2016-08-23 13:27:38','','acm_on_monitor','','inherit','closed','closed','','acm_on_monitor','','','2017-04-24 21:49:47','2017-04-25 04:49:47','',1493,'https://activeclubsolutions.net/wp-content/uploads/2016/08/acm_on_monitor.png',0,'attachment','image/png',0),
(2057,6,'2016-08-23 06:27:45','2016-08-23 13:27:45','','pos-ipad-skew','','inherit','closed','closed','','pos-ipad-skew','','','2016-08-23 06:27:45','2016-08-23 13:27:45','',0,'https://activeclubsolutions.net/wp-content/uploads/2016/08/pos-ipad-skew.png',0,'attachment','image/png',0),
(2061,2,'2016-08-23 12:09:13','2016-08-23 19:09:13','<div>Activ8 Commerce introduces our new reports Dashboard. Now, you can see your sales data anywhere, any time. Our latest feature is fully integrated with our iPad POS, Club/eCommerce and can be accessed anywhere.</div>\r\n<ul>\r\n 	<li>Hundreds of charts and tables give you real time and historical KPI\'s.</li>\r\n 	<li>Access from your phone, tablet, laptop.</li>\r\n 	<li>Powerful Club, Tasting Room and eCommerce metrics.</li>\r\n 	<li>No wasted time calculating Sales by Employee, Club Conversion/Attrition, Sales by Hour, Year over Year.</li>\r\n 	<li>Know your business better.</li>\r\n</ul>\r\n[ninzio_button text=\"Explore our dashboards live!\" size=\"small\" target=\"_self _blank\" icon=\"\" back_color=\"\" color=\"\" href=\"http://secureclub.net/demodb_6/dashboard.aspx\" /]\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignright size-full wp-image-2062\" src=\"https://activeclubsolutions.net/wp-content/uploads/2016/08/sample-charts-100.jpg\" alt=\"sample charts 100%\" width=\"1280\" height=\"1030\" />','KPI Dashboards','','pending','closed','open','','kpi-dashboards','','','2022-08-14 21:03:54','2022-08-15 04:03:54','',0,'https://activeclubsolutions.net/?p=2061',0,'post','',0),
(2062,2,'2016-08-23 12:06:13','2016-08-23 19:06:13','','sample charts 100%','','inherit','closed','closed','','sample-charts-100','','','2016-08-23 12:06:13','2016-08-23 19:06:13','',2061,'https://activeclubsolutions.net/wp-content/uploads/2016/08/sample-charts-100.jpg',0,'attachment','image/jpeg',0),
(2063,0,'2016-08-23 19:09:13','2016-08-23 19:09:13','','KPI Dashboards','','publish','closed','closed','','kpi-dashboards','','','2016-08-23 19:09:13','2016-08-23 19:09:13','',0,'https://activeclubsolutions.net/feed-items/kpi-dashboards/',0,'wprss_feed_item','',0),
(2066,2,'2016-09-21 21:35:23','2016-09-22 04:35:23','\r\n[ACSScript server=TEST dbname=demodb_3]\r\n[ACSiFrame2 server=TEST dbname=demodb_3 scenario=5 usesession=yes fcrid=FC0000004 waitcursor=applespin.gif bottommargin=20 scrollpoint=35]\r\n\r\n','Example Online Store - Livermore','','publish','closed','closed','','shopping-cart-1','','','2022-03-22 22:32:22','2022-03-23 05:32:22','',1497,'https://activeclubsolutions.net/?page_id=2066',0,'page','',0),
(2084,2,'2016-09-23 21:11:10','2016-09-24 04:11:10','<div style=\"margin-top: -50px;\"></div>\r\n<h4 style=\"text-align: center;\">You are welcome to try using the Shopping Cart feature and even place an order.\r\nThere is also a login you can use with the username: <b>P</b> with a password of: <b>P</b>\r\nIf you are trying a guest shopper you can use the fake credit card number 4111111111111111.</h4>\r\n[ACSScript server=TEST dbname=demodb_3]\r\n[ACSiFrame2 server=TEST dbname=demodb_3 scenario=5 usesession=yes fcridcart=FC0000001 fcridclub=FC0000001 bottommargin=20 waitcursor=ring.gif scrollpoint=10]','Example Online Store - Elk Grove','','publish','closed','closed','','shopping-cart-2','','','2021-01-25 14:01:20','2021-01-25 22:01:20','',1497,'https://activeclubsolutions.net/?page_id=2084',0,'page','',0),
(2089,2,'2016-09-24 22:06:17','2016-09-25 05:06:17','.ACSLoginDiv {\n	position: fixed;\n	top: 0;\n	right: 1%;\n	width: 130px;\n	height: 40px;\n	z-index: 10000;\n	vertical-align: bottom;\n}\n\n.ACSLogin {\n	font-size: 120%;\n	font-weight: 500;\n	color: #3a92aa;\n	line-height: 40px;\n	margin-left: 10px;\n}\n\n.ACSLoginDiv:hover {\n	background-color: #EA3D47;\n	cursor: pointer;\n}\n\n.CatalogFrameDiv {\n	margin-top: 0;\n	margin-left: 15%;\n	margin-right: 0;\n	margin-bottom: 0;\n	height: auto;\n	background-color: white;\n	width: 80%;\n}\n\n.CatalogFrame {\n	width: 100%;\n	outline: none;\n	border: none;\n	height: auto;\n}\n\n.BasketFrameDiv {\n	outline: none;\n	border: none;\n	margin: 0;\n	padding: 0;\n	position: fixed;\n	top: 180px;\n	right: 10px;\n	height: auto;\n	width: 380px;\n	z-index: 101;\n}\n\n.BasketFrame {\n	outline: none;\n	border: none;\n	margin: 0;\n	padding: 0;\n	width: 100.5%;\n	height: auto;\n}\n\n.MenuFrameDiv {\n	outline: none;\n	border: none;\n	margin: 0;\n	padding: 0;\n	float: left;\n	top: 450px;\n	left: 5%;\n	height: auto;\n	width: 15%;\n	max-width: 220px;\n	position: fixed;\n	z-index: 102;\n}\n\n.MenuFrame {\n	outline: none;\n	border: none;\n	margin: 0;\n	padding: 0;\n	width: 100%;\n	height: auto;\n}\n\n.MsgFrameDiv {\n	outline: none;\n	border: none;\n	margin: 0;\n	padding: 0;\n	position: fixed;\n	height: auto;\n	max-width: 50%;\n	width: 60%;\n	z-index: 10000;\n}\n\n.MsgFrame {\n	width: 100%;\n	outline: none;\n	border: none;\n	margin: 0;\n	height: auto;\n	border-left: solid 1px gray;\n	box-shadow: 3px 5px 3px gray;\n	-webkit-border-top-left-radius: 5px;\n	-webkit-border-top-right-radius: 5px;\n	-webkit-border-bottom-left-radius: 5px;\n	-webkit-border-bottom-right-radius: 5px;\n	-moz-border-top-left-radius: 10px;\n	-moz-border-top-right-radius: 5px;\n	-moz-border-bottom-left-radius: 5px;\n	-moz-border-bottom-right-radius: 15px;\n}\n\n.RegisterFrameDiv {\n	margin-top: 0;\n	margin-left: 10%;\n	margin-right: 0;\n	margin-bottom: 0;\n	height: auto;\n	background-color: white;\n	width: 80%;\n}\n\n.RegisterFrame {\n	width: 100%;\n	outline: none;\n	border: none;\n	height: auto;\n}\n\n.ManageFrameDiv {\n	margin-top: 0;\n	margin-left: 10%;\n	margin-right: 0;\n	margin-bottom: 0;\n	height: auto;\n	background-color: white;\n	width: 80%;\n}\n\n.ManageFrame {\n	width: 100%;\n	outline: none;\n	border: none;\n	height: auto;\n}\n\n.SelectionFrameDiv {\n	margin-top: 10px;\n	margin-left: 10%;\n	margin-right: 0;\n	margin-bottom: 0;\n	height: auto;\n	background-color: white;\n	width: 80%;\n}\n\n.SelectionFrame {\n	width: 100%;\n	outline: none;\n	border: none;\n	height: auto;\n}\n\n.framediv3 {\n	margin-top: 0;\n	margin-left: 18%;\n	margin-right: 0;\n	margin-bottom: 0;\n	height: auto;\n	background-color: white;\n	width: 80%;\n}\n\n.frame3 {\n	width: 100%;\n	outline: none;\n	border: none;\n	height: auto;\n}\n\n.m3framediv {\n	outline: none;\n	border: none;\n	margin: 0;\n	padding: 0;\n	float: left;\n	left: 0;\n	height: auto;\n	width: 15%;\n	max-width: 220px;\n}\n\n.m3frame {\n	outline: none;\n	border: none;\n	margin: 0;\n	padding: 0;\n	width: 100%;\n	height: auto;\n}\n\n.CatalogFrameDivV4 {\n	margin-top: 0;\n	margin-left: 15%;\n	margin-right: 0;\n	margin-bottom: 0;\n	height: auto;\n	background-color: white;\n	width: 80%;\n}\n\n.CatalogFrameV4 {\n	width: 100%;\n	outline: none;\n	border: none;\n	height: auto;\n}\n\n.ACSLoginDivV4 {\n	position: Absolute;\n	top: 30px;\n	width: 130px;\n	height: 40px;\n	z-index: 10000;\n	vertical-align: bottom;\n}\n\n.ACSLoginV4 {\n	font-family: \"Helvetica\";\n	font-size: 120%;\n	font-weight: 500;\n	color: #630303;\n	line-height: 40px;\n	margin-left: 10px;\n}\n\n.ACSLoginV4:hover {\n	color: black;\n	line-height: 40px;\n	margin-left: 10px;\n}\n\n.RegisterFrameDivV4 {\n	margin-top: 0;\n	margin-left: 10%;\n	margin-right: 0;\n	margin-bottom: 0;\n	height: auto;\n	background-color: white;\n	width: 80%;\n}\n\n.RegisterFrameV4 {\n	width: 100%;\n	outline: none;\n	border: none;\n	height: auto;\n}\n\n.MenuFrameDivV4 {\n	outline: none;\n	border: none;\n	margin: 0;\n	padding: 0;\n	float: left;\n	top: 25%;\n	left: 2%;\n	height: auto;\n	width: 15%;\n	max-width: 220px;\n	position: relative;\n	z-index: 102;\n	background-color: ghostwhite;\n/* margin-right: 6px; */\n	top: 11px;\n	left: 0;\n}\n\n.MenuFrameV4 {\n	outline: none;\n	border: none;\n	margin: 0;\n	padding: 0;\n	width: 100%;\n	height: auto;\n}\n\n.BasketFrameDivV4 {\n/* outline: none; */\n/* border: none; */\n	margin: 0;\n	padding: 0;\n	position: fixed;\n	bottom: 0;\n	right: 0;\n	height: auto;\n	width: 100%;\n	z-index: 101;\n}\n\n.BasketFrameV4 {\n	outline: none;\n	border: none;\n	margin: 0;\n	padding: 0;\n	width: 100.5%;\n	height: auto;\n}\n\n.MsgFrameDivV4 {\n	outline: none;\n	border: none;\n	margin: 0;\n	padding: 0;\n	position: fixed;\n	height: auto;\n	max-width: 50%;\n	width: 60%;\n	z-index: 10000;\n}\n\n.MsgFrameV4 {\n	width: 100%;\n	outline: none;\n	border: none;\n	margin: 0;\n	height: auto;\n	border-left: solid 1px gray;\n	box-shadow: 3px 5px 3px gray;\n	-webkit-border-top-left-radius: 5px;\n	-webkit-border-top-right-radius: 5px;\n	-webkit-border-bottom-left-radius: 5px;\n	-webkit-border-bottom-right-radius: 5px;\n	-moz-border-top-left-radius: 10px;\n	-moz-border-top-right-radius: 5px;\n	-moz-border-bottom-left-radius: 5px;\n	-moz-border-bottom-right-radius: 15px;\n}\n\n@media screen and (max-width: 1530px) {\n	.ACSLoginDiv {\n		top: 40px;\n	}\n	\n	.MenuFrameDivV4 {\n		background-color: ghostwhite;\n		height: auto;\n		width: 17%;\n		max-width: 220px;\n		position: relative;\n		z-index: 102;\n		background-color: ghostwhite;\n		top: 11px;\n		left: 0;\n	}\n	\n	.CatalogFrameV4 {\n		width: 97%;\n	}\n	\n	.CatalogFrameDiv {\n	}\n}\n\n@media screen and (max-width: 1224px) {\n	.CatalogFrameDiv {\n	}\n	\n	.CatalogFrameV4 {\n		width: 97%;\n	}\n	\n	.MenuFrameDivV4 {\n		background-color: ghostwhite;\n		height: auto;\n		width: 17%;\n		max-width: 220px;\n		position: relative;\n		z-index: 102;\n		background-color: ghostwhite;\n		top: 11px;\n		left: 0;\n	}\n}\n\n@media screen and (max-width: 1024px) {\n	.ACSLoginDiv {\n		top: 0;\n	}\n	\n	.CatalogFrameDiv {\n	}\n	\n	.MenuFrameDiv {\n		display: none;\n	}\n	\n	.MenuFrameDivV4 {\n		display: none;\n	}\n}\n\n@media screen and (max-width: 880px) {\n	.CatalogFrameDiv {\n		margin-left: 0;\n		width: 100%;\n	}\n	\n	.CatalogFrameDivV4 {\n		margin-left: 0;\n		width: 100%;\n	}\n	\n	.ManageFrameDiv {\n		margin-left: 0;\n		width: 100%;\n	}\n	\n	.ManageFrameDivV4 {\n		margin-left: 0;\n		width: 100%;\n	}\n	\n	.BasketFrameDiv {\n		right: 0;\n		top: 0;\n	}\n	\n	.BasketFrameDivV4 {\n	}\n	\n	.MenuFrameDiv {\n		display: none;\n	}\n	\n	.MenuFrameDivV4 {\n		display: none;\n	}\n	\n	.MsgFrameDiv {\n		width: 90%;\n		max-width: 100%;\n	}\n	\n	.MsgFrameDivV4 {\n		width: 90%;\n		max-width: 100%;\n	}\n}\n\n@media screen and (max-width: 700px) {\n	.CatalogFrameDiv {\n		margin-left: 0;\n		width: 100%;\n	}\n	\n	.CatalogFrameDivV4 {\n		margin-left: 0;\n		width: 100%;\n	}\n	\n	.ManageFrameDiv {\n		margin-left: 0;\n		width: 100%;\n	}\n	\n	.ManageFrameDivV4 {\n		margin-left: 0;\n		width: 100%;\n	}\n	\n	.BasketFrameDiv {\n		right: 0;\n	}\n	\n	.BasketFrameDivV4 {\n	}\n	\n	.MenuFrameDiv {\n		display: none;\n	}\n	\n	.MenuFrameDivV4 {\n		display: none;\n	}\n}\n\n@media screen and (max-width: 600px) {\n	.ACSLoginDiv {\n		top: 40px;\n	}\n	\n	.CatalogFrameDiv {\n	}\n	\n	.CatalogFrameDivV4 {\n	}\n	\n	.MenuFrameDiv {\n		display: none;\n	}\n	\n	.MenuFrameDivV4 {\n		display: none;\n	}\n}\n\n@media screen and (max-width: 480px) {\n	.BasketFrameDiv {\n		top: 0;\n		right: 0;\n	}\n	\n	.BasketFrameDivV4 {\n	}\n}','safecss','Active Club Solutions','publish','closed','closed','','safecss','','','2017-05-01 22:33:08','2017-05-02 05:33:08','.ACSLoginDiv{position:fixed;top:0;right:1%;width:130px;height:40px;z-index:10000;vertical-align:bottom}.ACSLogin{font-size:120%;font-weight:500;color:#b10101;line-height:40px;margin-left:10px}.ACSLoginDiv:hover{background-color:#EA3D47;cursor:pointer}.CatalogFrameDiv{height:auto;background-color:#fff;width:80%;margin:0 0 0 15%}.CatalogFrame{width:100%;outline:none;border:none;height:auto}.BasketFrameDiv{outline:none;border:none;margin:0;padding:0;position:fixed;top:180px;right:10px;height:auto;width:380px;z-index:101}.BasketFrame{outline:none;border:none;margin:0;padding:0;width:100.5%;height:auto}.MenuFrameDiv{outline:none;border:none;margin:0;padding:0;float:left;top:450px;left:5%;height:auto;width:15%;max-width:220px;position:fixed;z-index:102}.MenuFrame{outline:none;border:none;margin:0;padding:0;width:100%;height:auto}.MsgFrameDiv{outline:none;border:none;margin:0;padding:0;position:fixed;height:auto;max-width:50%;width:60%;z-index:10000}.MsgFrame{width:100%;outline:none;border:none;margin:0;height:auto;border-left:solid 1px gray;box-shadow:3px 5px 3px gray;-webkit-border-top-left-radius:5px;-webkit-border-top-right-radius:5px;-webkit-border-bottom-left-radius:5px;-webkit-border-bottom-right-radius:5px;-moz-border-top-left-radius:10px;-moz-border-top-right-radius:5px;-moz-border-bottom-left-radius:5px;-moz-border-bottom-right-radius:15px}.RegisterFrameDiv{height:auto;background-color:#fff;width:80%;margin:0 0 0 10%}.RegisterFrame{width:100%;outline:none;border:none;height:auto}.ManageFrameDiv{height:auto;background-color:#fff;width:80%;margin:0 0 0 10%}.ManageFrame{width:100%;outline:none;border:none;height:auto}.SelectionFrameDiv{height:auto;background-color:#fff;width:80%;margin:10px 0 0 10%}.SelectionFrame{width:100%;outline:none;border:none;height:auto}.framediv3{height:auto;background-color:#fff;width:80%;margin:0 0 0 18%}.frame3{width:100%;outline:none;border:none;height:auto}.m3framediv{outline:none;border:none;margin:0;padding:0;float:left;left:0;height:auto;width:15%;max-width:220px}.m3frame{outline:none;border:none;margin:0;padding:0;width:100%;height:auto}.CatalogFrameDivV4{height:auto;background-color:#fff;width:80%;margin:0 0 0 15%}.CatalogFrameV4{width:100%;outline:none;border:none;height:auto}.ACSLoginDivV4{position:Absolute;top:30px;width:130px;height:40px;z-index:10000;vertical-align:bottom}.ACSLoginV4{font-family:\"Helvetica\";font-size:120%;font-weight:500;color:#630303;line-height:40px;margin-left:10px}.ACSLoginV4:hover{color:#000;line-height:40px;margin-left:10px}.RegisterFrameDivV4{height:auto;background-color:#fff;width:80%;margin:0 0 0 10%}.RegisterFrameV4{width:100%;outline:none;border:none;height:auto}.MenuFrameDivV4{outline:none;border:none;margin:0;padding:0;float:left;top:25%;left:2%;height:auto;width:15%;max-width:220px;position:relative;z-index:102;background-color:#f8f8ff;top:11px;left:0}.MenuFrameV4{outline:none;border:none;margin:0;padding:0;width:100%;height:auto}.BasketFrameDivV4{margin:0;padding:0;position:fixed;bottom:0;right:0;height:auto;width:100%;z-index:101}.BasketFrameV4{outline:none;border:none;margin:0;padding:0;width:100.5%;height:auto}.MsgFrameDivV4{outline:none;border:none;margin:0;padding:0;position:fixed;height:auto;max-width:50%;width:60%;z-index:10000}.MsgFrameV4{width:100%;outline:none;border:none;margin:0;height:auto;border-left:solid 1px gray;box-shadow:3px 5px 3px gray;-webkit-border-top-left-radius:5px;-webkit-border-top-right-radius:5px;-webkit-border-bottom-left-radius:5px;-webkit-border-bottom-right-radius:5px;-moz-border-top-left-radius:10px;-moz-border-top-right-radius:5px;-moz-border-bottom-left-radius:5px;-moz-border-bottom-right-radius:15px}@media screen and (max-width: 1530px){.ACSLoginDiv{top:40px}.MenuFrameDivV4{background-color:#f8f8ff;height:auto;width:17%;max-width:220px;position:relative;z-index:102;background-color:#f8f8ff;top:11px;left:0}.CatalogFrameV4{width:97%}}@media screen and (max-width: 1224px){.CatalogFrameV4{width:97%}.MenuFrameDivV4{background-color:#f8f8ff;height:auto;width:17%;max-width:220px;position:relative;z-index:102;background-color:#f8f8ff;top:11px;left:0}}@media screen and (max-width: 1024px){.ACSLoginDiv{top:0}.MenuFrameDiv{display:none}.MenuFrameDivV4{display:none}}@media screen and (max-width: 880px){.CatalogFrameDiv{margin-left:0;width:100%}.CatalogFrameDivV4{margin-left:0;width:100%}.ManageFrameDiv{margin-left:0;width:100%}.ManageFrameDivV4{margin-left:0;width:100%}.BasketFrameDiv{right:0;top:0}.MenuFrameDiv{display:none}.MenuFrameDivV4{display:none}.MsgFrameDiv{width:90%;max-width:100%}.MsgFrameDivV4{width:90%;max-width:100%}}@media screen and (max-width: 700px){.CatalogFrameDiv{margin-left:0;width:100%}.CatalogFrameDivV4{margin-left:0;width:100%}.ManageFrameDiv{margin-left:0;width:100%}.ManageFrameDivV4{margin-left:0;width:100%}.BasketFrameDiv{right:0}.MenuFrameDiv{display:none}.MenuFrameDivV4{display:none}}@media screen and (max-width: 600px){.ACSLoginDiv{top:40px}.MenuFrameDiv{display:none}.MenuFrameDivV4{display:none}}@media screen and (max-width: 480px){.BasketFrameDiv{top:0;right:0}}',0,'https://activeclubsolutions.net/?safecss=safecss',0,'safecss','',0),
(2108,2,'2016-10-17 17:52:00','2016-10-18 00:52:00','<h4 style=\"text-align:center;\">You are welcome to try using the Shopping Cart feature and even place an order.<br>There is also a login you can use with the username: <b>P</b> with a password of: <b>P</b><br>If you are trying a guest shopper you can use the fake credit card number 4111111111111111.</h4>\r\n\r\n<div class=\"ACSLoginDiv\" onclick=\"ACSLoginClicked();\"><span id=\"ACSLogin\" class=\"ACSLogin\">Member Login</span></div>\r\n\r\n[ACSScript server=CA dbname=demodb_3]\r\n[ACSiFrame server=CA dbname=demodb_3 scenario=5 usesession=yes fcrid=FC0000005 waitcursor=rotator2.gif bottommargin=20 scrollpoint=135]\r\n','Example Online Store - Stockton','','publish','closed','closed','','shopping-cart-3','','','2019-02-25 20:22:14','2019-02-26 04:22:14','',1497,'https://activeclubsolutions.net/?page_id=2108',0,'page','',0),
(2114,2,'2016-10-18 08:24:24','2016-10-18 15:24:24','Activ8 introduces new \"cycle count\" reports to help you manage your multi-location inventory. Designed for wholesale and retail POS, these reports will keep you on top of the information you need to grow your business. Find out why we are the industry leader in POS and wholesale for wineries, breweries and distilleries.\r\n\r\n<img class=\"alignright size-full wp-image-1941\" src=\"https://activeclubsolutions.net/wp-content/uploads/2016/07/wholesale.png\" alt=\"wholesale\" width=\"1024\" height=\"768\" />\r\n\r\nAlso, please visit us our booth at the North Coast Wine Industry Trade Show in Santa Rosa on December 1, 2016 for an incredible pricing offer on Activ8. For more information: http://www.wineindustryexpo.com/','New Cycle Count Reports and 2016 WinExpo','','pending','closed','open','','new-cycle-count-reports-2016-winexpo','','','2022-08-14 21:03:54','2022-08-15 04:03:54','',0,'https://activeclubsolutions.net/?p=2114',0,'post','',0),
(2115,0,'2016-10-18 15:24:24','2016-10-18 15:24:24','','New Cycle Count Reports and 2016 WinExpo','','publish','closed','closed','','new-cycle-count-reports-and-2016-winexpo','','','2016-10-18 15:24:24','2016-10-18 15:24:24','',0,'https://activeclubsolutions.net/feed-items/new-cycle-count-reports-and-2016-winexpo/',0,'wprss_feed_item','',0),
(2122,2,'2016-10-25 15:43:32','2016-10-25 22:43:32','[ACSScript server=TEST dbname=demodb_3]\r\n[ACSiFrame2 server=TEST dbname=demodb_3 scenario=1 fcrid=FC0000028 bottommargin=20 scrollpoint=1]\r\n\r\n\r\n','Club Signup','','publish','closed','closed','','club-signup','','','2022-05-05 06:40:36','2022-05-05 13:40:36','',1497,'https://activeclubsolutions.net/?page_id=2122',0,'page','',0),
(2125,2,'2016-11-02 08:26:35','2016-11-02 15:26:35','<h5>We have given our eCommerce Solution a major face lift and are rolling it out just in time for the holidays.</h5>\r\n<ul>\r\n 	<li>Rather than the catalog being hosted on our server, you or your designer will add a few blank pages to your website and insert our “iframes” (creating our pages within your pages).</li>\r\n 	<li>With any of our new templates you and your web designer will have full control of the design elements that carry your brand image through to your catalog and web shopping cart.</li>\r\n 	<li>The Style Sheets are totally open, allowing you or your designer to modify, adjust and be as creative as you want.</li>\r\n 	<li>Our templates are fully responsive from smartphone to desktop devices and allow for immediate payment card processing if wanted.</li>\r\n 	<li>We’re still putting the final touches on our new single page checkout that will look edgy and modern, making it much easier for your wine buyers to move through the checkout process, reducing abandoned shopping carts and increasing your sales.</li>\r\n 	<li>After that, all web orders and updated customer data will automatically flow into Activ8 Manager for customer record creation, payment card and order shipment processing, keeping all your sales in one single system.</li>\r\n</ul>\r\n<strong>Activ8 Commerce is the industry leader in tasting room POS, eCommerce, wine club and wholesale solutions.</strong>','Complete Control of Your Catalog and Cart','','pending','closed','open','','complete-control-catalog-cart','','','2022-08-14 21:03:54','2022-08-15 04:03:54','',0,'https://activeclubsolutions.net/?p=2125',0,'post','',0),
(2126,0,'2016-11-02 15:26:35','2016-11-02 15:26:35','','Complete Control of Your Catalog and Cart','','publish','closed','closed','','complete-control-of-your-catalog-and-cart','','','2016-11-02 15:26:35','2016-11-02 15:26:35','',0,'https://activeclubsolutions.net/feed-items/complete-control-of-your-catalog-and-cart/',0,'wprss_feed_item','',0),
(2136,2,'2016-11-10 07:39:06','2016-11-10 15:39:06','Activ8 is more affordable than ever with our special POS and Club combo setup fee of only $1,250 and monthly rates as low as $150. No monthly fees until January 1, 2017. Activ8 is the industry leader for innovation in tasting room POS, eCommerce and wine club solutions. Let us help you grow and manage your business.\r\nThis great offer expires November 30, 2016.\r\nView a demo: http://www.youtube.com/watch?v=vd2_xQfu31U\r\nRequest a demo: https://activeclubsolutions.net/winery-pos-wine-club-software-demo/','Post Harvest Special Price','','pending','closed','open','','post-harvest-special-price','','','2022-08-14 21:03:54','2022-08-15 04:03:54','',0,'https://activeclubsolutions.net/?p=2136',0,'post','',0),
(2137,0,'2016-11-10 15:39:06','2016-11-10 15:39:06','','Post Harvest Special Price','','publish','closed','closed','','post-harvest-special-price','','','2016-11-10 15:39:06','2016-11-10 15:39:06','',0,'https://activeclubsolutions.net/feed-items/post-harvest-special-price/',0,'wprss_feed_item','',0),
(2157,2,'2016-11-23 14:00:05','2016-11-23 22:00:05','<div>\r\n\r\n[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h1>Mobile Dashboards</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h3>Activ8 Commerce has powerful Mobile Dashboards! Now, you can see your sales data anywhere, any time.</h3>\r\nOur latest feature is fully integrated with our <a href=\"https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/\"><font color=\"#555555\">Mobile Tasting Room POS/iPad POS,</font> </a> <a href=\"https://activeclubsolutions.net/winery-pos-features/wine-club-management/\"><font color=\"#555555\">Wine Club Software</font></a>/<a href=\"https://activeclubsolutions.net/winery-pos-features/winery-ecommerce/\"><font color=\"#555555\">eCommerce</font></a> and can be accessed anywhere.\r\n<ul>\r\n 	<li>Over 60 different charts and tables give you real time and historical KPI\'s.</li>\r\n 	<li>Access from your phone, tablet, laptop.</li>\r\n 	<li>Powerful Club, Tasting Room and eCommerce metrics.</li>\r\n 	<li>No wasted time calculating Sales by Employee, Club Conversion/Attrition, Sales by Hour, Year over Year.</li>\r\n 	<li>Know your business better.</li>\r\n</ul>\r\n[ninzio_button text=\"Explore our dashboards live!\" size=\"medium\" target=\"_self _blank\" icon=\"\" back_color=\"\" color=\"\" href=\"http://secureclub.net/demodb_6/dashboard.aspx\" /]\r\n\r\n<img class=\"alignright size-full wp-image-2062\" src=\"https://activeclubsolutions.net/wp-content/uploads/2016/08/sample-charts-100.jpg\" alt=\"Mobile Dashboards - sample charts 100%\" width=\"1280\" height=\"1030\" />\r\n\r\n&nbsp;\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[box title=\"Dashboards Demonstration\"][ACSVimeo id=277588721 width=800 height=500/][/box]\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL WINERY SOFTWARE FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Shopping Cart & Web Interfaces\" href=\"/winery-pos-features/winery-ecommerce/\">Responsive Ecommerce</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n</ul>\r\n[/icon_list] [splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /] [/one_third]\r\n\r\n[/fullbox]\r\n\r\n</div>','Mobile Dashboards','','publish','closed','closed','','mobile-dashboards','','','2018-06-29 22:48:39','2018-06-30 05:48:39','',1435,'https://activeclubsolutions.net/?page_id=2157',0,'page','',0),
(2164,2,'2016-11-28 11:01:35','2016-11-28 19:01:35',' ','','','publish','closed','closed','','2164','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',1435,'https://activeclubsolutions.net/?p=2164',9,'nav_menu_item','',0),
(2170,2,'2016-12-05 13:10:07','2016-12-05 21:10:07','Join us in Sacramento for the 2017 Unified Wine and Grape Symposium at the Sacramento Convention Center Hall A-E, Booth #1336.  We will be demonstrating our Best in Class Winery/Tasting Room POS, Club and eCommerce system.  Bring your wish list and we will fill it.  We look forward to meeting you there.','Please Visit Us at the Unified Wine and Grape Symposium 1/25-26','','pending','closed','open','','please-visit-us-unified-wine-grape-symposium-125-26','','','2022-08-14 21:03:54','2022-08-15 04:03:54','',0,'https://activeclubsolutions.net/?p=2170',0,'post','',0),
(2171,0,'2016-12-05 21:10:07','2016-12-05 21:10:07','','Please Visit Us at the Unified Wine and Grape Symposium 1/25-26','','publish','closed','closed','','please-visit-us-at-the-unified-wine-and-grape-symposium-125-26','','','2016-12-05 21:10:07','2016-12-05 21:10:07','',0,'https://activeclubsolutions.net/feed-items/please-visit-us-at-the-unified-wine-and-grape-symposium-125-26/',0,'wprss_feed_item','',0),
(2176,2,'2016-12-09 14:29:43','2016-12-09 22:29:43','','acs-laptop','','inherit','closed','closed','','acs-laptop','','','2017-04-24 21:47:34','2017-04-25 04:47:34','',1493,'https://activeclubsolutions.net/wp-content/uploads/2016/12/ACS-Laptop.png',0,'attachment','image/png',0),
(2177,2,'2016-12-09 14:29:46','2016-12-09 22:29:46','','acs-phone','','inherit','closed','closed','','acs-phone','','','2016-12-09 14:29:46','2016-12-09 22:29:46','',0,'https://activeclubsolutions.net/wp-content/uploads/2016/12/ACS-Phone.png',0,'attachment','image/png',0),
(2178,2,'2016-12-09 14:29:48','2016-12-09 22:29:48','','acs-tablet','','inherit','closed','closed','','acs-tablet','','','2016-12-09 14:29:48','2016-12-09 22:29:48','',0,'https://activeclubsolutions.net/wp-content/uploads/2016/12/ACS-Tablet.png',0,'attachment','image/png',0),
(2194,2,'2016-12-26 17:41:08','2016-12-27 01:41:08','[ACSScript server=TEST dbname=demodb_6]\r\n[ACSiFrame2 server=TEST dbname=demodb_6 scenario=4 usesession=yes fcrid=FC0000001 bottommargin=20 scrollpoint=1]\r\n\r\n','Manage Account','','publish','closed','closed','','manage-account','','','2022-05-03 08:43:25','2022-05-03 15:43:25','',1497,'https://activeclubsolutions.net/?page_id=2194',0,'page','',0),
(2202,2,'2016-12-30 11:39:14','2016-12-30 19:39:14','','quickbooks','','inherit','closed','closed','','quickbooks','','','2016-12-30 11:40:44','2016-12-30 19:40:44','',1590,'https://activeclubsolutions.net/wp-content/uploads/2016/12/QuickBooks.png',0,'attachment','image/png',0),
(2222,2,'2017-01-05 12:40:20','2017-01-05 20:40:20','','pricingchartnofooter','','inherit','closed','closed','','pricingchartnofooter','','','2017-01-05 12:40:20','2017-01-05 20:40:20','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/PricingChartNoFooter.png',0,'attachment','image/png',0),
(2234,2,'2017-01-10 22:55:47','2017-01-11 06:55:47','','ipadcheckout','','inherit','closed','closed','','ipadcheckout','','','2017-01-10 23:13:35','2017-01-11 07:13:35','',1796,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadCheckout.png',0,'attachment','image/png',0),
(2235,2,'2017-01-10 22:55:53','2017-01-11 06:55:53','','ipadorderhistory','','inherit','closed','closed','','ipadorderhistory','','','2017-01-10 23:01:28','2017-01-11 07:01:28','',1753,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadOrderHistory.png',0,'attachment','image/png',0),
(2245,2,'2017-01-11 21:26:36','2017-01-12 05:26:36','','iphone_cart','','inherit','closed','closed','','iphone_cart','','','2017-01-11 21:26:36','2017-01-12 05:26:36','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iphone_cart.png',0,'attachment','image/png',0),
(2246,2,'2017-01-11 22:50:38','2017-01-12 06:50:38','','ipad_cart','','inherit','closed','closed','','ipad_cart','','','2017-01-11 22:50:38','2017-01-12 06:50:38','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPad_cart.png',0,'attachment','image/png',0),
(2248,2,'2017-01-12 09:12:14','2017-01-12 17:12:14','Activ8 adds modifiers to restaurant POS functionality. Now you can send that cheeseburger to the kitchen printer with NO MAYO!  Activ8 is more than just a winery POS.  We provide POS, Club and eCommerce software for breweries, distilleries and more.\r\nDon\'t forget to join us in Sacramento for the 2017 Unified Wine and Grape Symposium at the Sacramento Convention Center Hall A-E, Booth #1336. We will be demonstrating our Best in Class Winery/Tasting Room POS, Club and eCommerce system. Bring your wish list and we will fill it. We look forward to meeting you there. To help celebrate, we will be offering the Active POS/Club system for a special symposium price of $999!\r\nhttp://www.unifiedsymposium.org/','Get Your Cheeseburger with NO MAYO!','','pending','closed','open','','get-cheeseburger-no-mayo','','','2022-08-14 21:03:53','2022-08-15 04:03:53','',0,'https://activeclubsolutions.net/?p=2248',0,'post','',0),
(2249,0,'2017-01-12 17:12:14','2017-01-12 17:12:14','','Get Your Cheeseburger with NO MAYO!','','publish','closed','closed','','get-your-cheeseburger-with-no-mayo','','','2017-01-12 17:12:14','2017-01-12 17:12:14','',0,'https://activeclubsolutions.net/feed-items/get-your-cheeseburger-with-no-mayo/',0,'wprss_feed_item','',0),
(2257,2,'2017-01-12 12:47:06','2017-01-12 20:47:06','','gsologofinal','','inherit','closed','closed','','gsologofinal','','','2017-01-12 12:47:06','2017-01-12 20:47:06','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/GSOLogoFinal.png',0,'attachment','image/png',0),
(2258,2,'2017-01-12 13:05:31','2017-01-12 21:05:31','','vantiv_2','','inherit','closed','closed','','vantiv_2','','','2017-01-12 13:05:31','2017-01-12 21:05:31','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/vantiv_2.png',0,'attachment','image/png',0),
(2259,2,'2017-01-12 20:13:44','2017-01-13 04:13:44','','pcmonitorwithacm_1','','inherit','closed','closed','','pcmonitorwithacm_1','','','2017-04-24 21:47:13','2017-04-25 04:47:13','',1493,'https://activeclubsolutions.net/wp-content/uploads/2017/01/PCmonitorWithACM_1.png',0,'attachment','image/png',0),
(2260,2,'2017-01-12 20:44:40','2017-01-13 04:44:40','','5monitors_1','','inherit','closed','closed','','5monitors_1','','','2017-01-12 20:44:40','2017-01-13 04:44:40','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/5monitors_1.png',0,'attachment','image/png',0),
(2262,2,'2017-01-12 21:34:16','2017-01-13 05:34:16','','wizard','','inherit','closed','closed','','wizard','','','2017-01-12 21:35:21','2017-01-13 05:35:21','',848,'https://activeclubsolutions.net/wp-content/uploads/2017/01/wizard.png',0,'attachment','image/png',0),
(2263,2,'2017-01-13 12:41:44','2017-01-13 20:41:44','','mpopandipad','','inherit','closed','closed','','mpopandipad','','','2017-01-13 12:41:44','2017-01-13 20:41:44','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/mpopandipad.png',0,'attachment','image/png',0),
(2265,2,'2017-01-13 16:04:56','2017-01-14 00:04:56','','iPadWholesaleOrder','','inherit','closed','closed','','ipadwholesaleorder','','','2017-01-13 16:04:56','2017-01-14 00:04:56','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadWholesaleOrder.png',0,'attachment','image/png',0),
(2268,2,'2017-01-13 17:27:28','2017-01-14 01:27:28','','Registration and Account Management','','publish','closed','closed','','registration-account-management','','','2018-10-31 20:58:41','2018-11-01 03:58:41','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=2268',3,'ninzio-slider','',0),
(2275,2,'2017-01-13 22:05:14','2017-01-14 06:05:14','','manage-orderlist2','','inherit','closed','closed','','manage-orderlist2','','','2017-03-05 15:09:18','2017-03-05 23:09:18','',1497,'https://activeclubsolutions.net/wp-content/uploads/2017/01/manage-orderlist2.png',0,'attachment','image/png',0),
(2276,2,'2017-01-13 22:05:19','2017-01-14 06:05:19','','manage-orders2','','inherit','closed','closed','','manage-orders2','','','2017-03-05 15:09:03','2017-03-05 23:09:03','',1497,'https://activeclubsolutions.net/wp-content/uploads/2017/01/manage-orders2.png',0,'attachment','image/png',0),
(2277,2,'2017-01-13 22:05:23','2017-01-14 06:05:23','','manage-shipping2','','inherit','closed','closed','','manage-shipping2','','','2017-03-05 15:08:27','2017-03-05 23:08:27','',1497,'https://activeclubsolutions.net/wp-content/uploads/2017/01/manage-shipping2.png',0,'attachment','image/png',0),
(2278,2,'2017-01-13 22:05:29','2017-01-14 06:05:29','','registration_2','','inherit','closed','closed','','registration_2','','','2017-01-13 22:05:29','2017-01-14 06:05:29','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/registration_2.png',0,'attachment','image/png',0),
(2280,2,'2017-01-14 13:56:38','2017-01-14 21:56:38','','iPadNewOrder','','inherit','closed','closed','','ipadneworder','','','2017-01-14 13:56:38','2017-01-14 21:56:38','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadNewOrder.png',0,'attachment','image/png',0),
(2281,2,'2017-01-14 15:32:25','2017-01-14 23:32:25','','iPadCheckoutSlide','','inherit','closed','closed','','ipadcheckoutslide','','','2017-01-14 15:32:25','2017-01-14 23:32:25','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadCheckoutSlide.png',0,'attachment','image/png',0),
(2282,2,'2017-01-14 15:44:34','2017-01-14 23:44:34','','iPadOrderHistory_4','','inherit','closed','closed','','ipadorderhistory_4','','','2017-01-14 15:44:34','2017-01-14 23:44:34','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadOrderHistory_4.png',0,'attachment','image/png',0),
(2283,2,'2017-01-14 15:54:36','2017-01-14 23:54:36','','iPadCustomer','','inherit','closed','closed','','ipadcustomer','','','2017-01-14 15:54:36','2017-01-14 23:54:36','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadCustomer.png',0,'attachment','image/png',0),
(2284,2,'2017-01-14 16:03:51','2017-01-15 00:03:51','','iPadPending','','inherit','closed','closed','','ipadpending','','','2017-01-14 16:03:51','2017-01-15 00:03:51','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadPending.png',0,'attachment','image/png',0),
(2285,2,'2017-01-14 16:12:59','2017-01-15 00:12:59','','iPadWholesale','','inherit','closed','closed','','ipadwholesale','','','2017-01-14 16:12:59','2017-01-15 00:12:59','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPadWholesale.png',0,'attachment','image/png',0),
(2286,2,'2017-01-14 17:58:35','2017-01-15 01:58:35','','bottlesonthewall','','inherit','closed','closed','','bottlesonthewall','','','2017-01-14 17:58:35','2017-01-15 01:58:35','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/bottlesonthewall.png',0,'attachment','image/png',0),
(2287,2,'2017-01-14 18:14:58','2017-01-15 02:14:58','','winerack','','inherit','closed','closed','','winerack','','','2017-01-14 18:14:58','2017-01-15 02:14:58','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/winerack.png',0,'attachment','image/png',0),
(2288,2,'2017-01-14 20:32:19','2017-01-15 04:32:19','','CartCatalog','','inherit','closed','closed','','cartcatalog','','','2017-01-14 20:32:19','2017-01-15 04:32:19','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/CartCatalog.png',0,'attachment','image/png',0),
(2289,2,'2017-01-14 20:32:23','2017-01-15 04:32:23','','CartCheckout','','inherit','closed','closed','','cartcheckout','','','2017-01-14 20:32:23','2017-01-15 04:32:23','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/CartCheckout.png',0,'attachment','image/png',0),
(2290,2,'2017-01-14 20:32:28','2017-01-15 04:32:28','','CartElement','','inherit','closed','closed','','cartelement','','','2017-01-14 20:32:28','2017-01-15 04:32:28','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/CartElement.png',0,'attachment','image/png',0),
(2291,2,'2017-01-14 20:32:32','2017-01-15 04:32:32','','CartMiniBasket','','inherit','closed','closed','','cartminibasket','','','2017-01-14 20:32:32','2017-01-15 04:32:32','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/CartMiniBasket.png',0,'attachment','image/png',0),
(2292,2,'2017-01-14 20:32:36','2017-01-15 04:32:36','','CartOrderReview','','inherit','closed','closed','','cartorderreview','','','2017-01-14 20:32:36','2017-01-15 04:32:36','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/CartOrderReview.png',0,'attachment','image/png',0),
(2293,2,'2017-01-14 20:32:40','2017-01-15 04:32:40','','CartShoppingCart','','inherit','closed','closed','','cartshoppingcart','','','2017-01-14 20:32:40','2017-01-15 04:32:40','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/CartShoppingCart.png',0,'attachment','image/png',0),
(2294,2,'2017-01-14 21:50:53','2017-01-15 05:50:53','','wizard100x100','','inherit','closed','closed','','wizard100x100','','','2017-01-14 21:50:53','2017-01-15 05:50:53','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/wizard100x100.png',0,'attachment','image/png',0),
(2295,2,'2017-01-14 22:20:35','2017-01-15 06:20:35','','wizard130x130','','inherit','closed','closed','','wizard130x130','','','2017-01-14 22:20:35','2017-01-15 06:20:35','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/wizard130x130.png',0,'attachment','image/png',0),
(2296,2,'2017-01-16 19:19:09','2017-01-17 03:19:09','','Web toolkit','','publish','closed','closed','','shopping-cart-toolkit','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=2296',37,'nav_menu_item','',0),
(2298,2,'2017-01-16 21:04:36','2017-01-17 05:04:36','','wizard160x160','','inherit','closed','closed','','wizard160x160','','','2018-05-14 13:54:30','2018-05-14 20:54:30','',3077,'https://activeclubsolutions.net/wp-content/uploads/2017/01/wizard160x160.png',0,'attachment','image/png',0),
(2300,2,'2017-01-16 23:14:37','2017-01-17 07:14:37','','Data-Mining','','publish','closed','closed','','data-mining','','','2018-10-31 20:59:48','2018-11-01 03:59:48','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=2300',11,'ninzio-slider','',0),
(2301,2,'2017-01-16 23:39:36','2017-01-17 07:39:36','','DataMining_2','','inherit','closed','closed','','datamining_2','','','2017-01-16 23:39:36','2017-01-17 07:39:36','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/DataMining_2.png',0,'attachment','image/png',0),
(2305,2,'2017-01-17 17:07:53','2017-01-18 01:07:53','','POSNewOrder','','inherit','closed','closed','','posneworder','','','2017-01-17 17:07:53','2017-01-18 01:07:53','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/POSNewOrder.png',0,'attachment','image/png',0),
(2306,2,'2017-01-17 17:07:56','2017-01-18 01:07:56','','POSCheckout','','inherit','closed','closed','','poscheckout','','','2017-01-17 17:07:56','2017-01-18 01:07:56','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/POSCheckout.png',0,'attachment','image/png',0),
(2307,2,'2017-01-17 17:07:59','2017-01-18 01:07:59','','POSOrderHistory','','inherit','closed','closed','','posorderhistory','','','2017-01-17 17:07:59','2017-01-18 01:07:59','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/POSOrderHistory.png',0,'attachment','image/png',0),
(2308,2,'2017-01-17 17:08:03','2017-01-18 01:08:03','','POSCustomer','','inherit','closed','closed','','poscustomer','','','2017-01-17 17:08:03','2017-01-18 01:08:03','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/POSCustomer.png',0,'attachment','image/png',0),
(2309,2,'2017-01-17 17:08:06','2017-01-18 01:08:06','','POSWholesale','','inherit','closed','closed','','poswholesale','','','2017-01-17 17:08:06','2017-01-18 01:08:06','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/POSWholesale.png',0,'attachment','image/png',0),
(2310,2,'2017-01-17 17:08:09','2017-01-18 01:08:09','','POSPending','','inherit','closed','closed','','pospending','','','2017-04-17 18:33:37','2017-04-18 01:33:37','',1796,'https://activeclubsolutions.net/wp-content/uploads/2017/01/POSPending.png',0,'attachment','image/png',0),
(2312,2,'2017-01-17 20:09:07','2017-01-18 04:09:07','','SearchCustomer_1','','inherit','closed','closed','','searchcustomer_1','','','2017-01-17 20:09:07','2017-01-18 04:09:07','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/SearchCustomer_1.png',0,'attachment','image/png',0),
(2314,2,'2017-01-17 20:54:37','2017-01-18 04:54:37','','ResultsCustSearch_2','','inherit','closed','closed','','resultscustsearch_2','','','2017-01-17 20:54:37','2017-01-18 04:54:37','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/ResultsCustSearch_2.png',0,'attachment','image/png',0),
(2317,2,'2017-01-17 21:43:34','2017-01-18 05:43:34','','DataMining_5','','inherit','closed','closed','','datamining_5','','','2017-01-17 21:43:34','2017-01-18 05:43:34','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/DataMining_5.png',0,'attachment','image/png',0),
(2319,2,'2017-01-18 16:34:27','2017-01-19 00:34:27','','DataMining_6','','inherit','closed','closed','','datamining_6','','','2017-01-18 16:34:27','2017-01-19 00:34:27','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/DataMining_6.png',0,'attachment','image/png',0),
(2322,2,'2017-01-18 18:41:19','2017-01-19 02:41:19','','vineyardinfog_2','','inherit','closed','closed','','vineyardinfog_2','','','2017-01-18 18:41:19','2017-01-19 02:41:19','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/vineyardinfog_2.png',0,'attachment','image/png',0),
(2323,2,'2017-01-18 19:45:16','2017-01-19 03:45:16','','fallingdrops','','inherit','closed','closed','','fallingdrops','','','2017-01-18 19:45:16','2017-01-19 03:45:16','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/fallingdrops.png',0,'attachment','image/png',0),
(2324,2,'2017-01-18 19:47:22','2017-01-19 03:47:22','','fallingdrops_2','','inherit','closed','closed','','fallingdrops_2','','','2017-01-18 19:47:22','2017-01-19 03:47:22','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/fallingdrops_2.png',0,'attachment','image/png',0),
(2325,2,'2017-01-18 19:58:51','2017-01-19 03:58:51','','Dashboards','','publish','closed','closed','','dashboards','','','2018-10-31 21:01:18','2018-11-01 04:01:18','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=2325',8,'ninzio-slider','',0),
(2326,2,'2017-01-18 19:57:40','2017-01-19 03:57:40','','CRMBackground_1','','inherit','closed','closed','','crmbackground_1','','','2017-01-18 19:57:40','2017-01-19 03:57:40','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/CRMBackground_1.png',0,'attachment','image/png',0),
(2328,2,'2017-01-18 20:04:08','2017-01-19 04:04:08','','spreadsheet','','inherit','closed','closed','','spreadsheet','','','2017-01-18 20:04:08','2017-01-19 04:04:08','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/spreadsheet.png',0,'attachment','image/png',0),
(2341,2,'2017-01-18 20:39:49','2017-01-19 04:39:49','','iPhoneSalesByPerson_1','','inherit','closed','closed','','iphonesalesbyperson_1','','','2017-01-18 20:39:49','2017-01-19 04:39:49','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPhoneSalesByPerson_1.png',0,'attachment','image/png',0),
(2342,2,'2017-01-18 20:39:52','2017-01-19 04:39:52','','IPhoneSalesByLocation_1','','inherit','closed','closed','','iphonesalesbylocation_1','','','2017-01-18 20:39:52','2017-01-19 04:39:52','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/IPhoneSalesByLocation_1.png',0,'attachment','image/png',0),
(2343,2,'2017-01-18 20:39:54','2017-01-19 04:39:54','','iPhoneSalesByPersonByHour_1','','inherit','closed','closed','','iphonesalesbypersonbyhour_1','','','2017-01-18 20:39:54','2017-01-19 04:39:54','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPhoneSalesByPersonByHour_1.png',0,'attachment','image/png',0),
(2344,2,'2017-01-18 20:39:56','2017-01-19 04:39:56','','iPhoneSalesByHour_1','','inherit','closed','closed','','iphonesalesbyhour_1','','','2017-01-18 20:39:56','2017-01-19 04:39:56','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPhoneSalesByHour_1.png',0,'attachment','image/png',0),
(2345,2,'2017-01-18 20:39:58','2017-01-19 04:39:58','','iPhoneSalesByClub_1','','inherit','closed','closed','','iphonesalesbyclub_1','','','2017-01-18 20:39:58','2017-01-19 04:39:58','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPhoneSalesByClub_1.png',0,'attachment','image/png',0),
(2346,2,'2017-01-18 20:40:01','2017-01-19 04:40:01','','iPhoneSalesByPie_1','','inherit','closed','closed','','iphonesalesbypie_1','','','2017-01-18 20:40:01','2017-01-19 04:40:01','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPhoneSalesByPie_1.png',0,'attachment','image/png',0),
(2347,2,'2017-01-18 20:40:03','2017-01-19 04:40:03','','iPhoneMembership_1','','inherit','closed','closed','','iphonemembership_1','','','2017-01-18 20:40:03','2017-01-19 04:40:03','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPhoneMembership_1.png',0,'attachment','image/png',0),
(2348,2,'2017-01-18 20:40:06','2017-01-19 04:40:06','','iPhoneConversionBarchart_1','','inherit','closed','closed','','iphoneconversionbarchart_1','','','2017-01-18 20:40:06','2017-01-19 04:40:06','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPhoneConversionBarchart_1.png',0,'attachment','image/png',0),
(2349,2,'2017-01-18 20:40:09','2017-01-19 04:40:09','','iPhoneConversionByPerson_1','','inherit','closed','closed','','iphoneconversionbyperson_1','','','2017-01-18 20:40:09','2017-01-19 04:40:09','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPhoneConversionByPerson_1.png',0,'attachment','image/png',0),
(2351,2,'2017-01-18 20:48:50','2017-01-19 04:48:50','','iPhoneConversionBarchart','','inherit','closed','closed','','iphoneconversionbarchart','','','2017-01-18 20:48:50','2017-01-19 04:48:50','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/iPhoneConversionBarchart.png',0,'attachment','image/png',0),
(2352,2,'2017-01-20 10:02:51','2017-01-20 18:02:51','','QuickBooks','','publish','closed','closed','','quickbooks','','','2018-10-31 21:02:10','2018-11-01 04:02:10','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=2352',10,'ninzio-slider','',0),
(2358,2,'2017-01-20 11:58:13','2017-01-20 19:58:13','','QuickBooksBlackLogo','','inherit','closed','closed','','quickbooksblacklogo','','','2017-01-20 11:58:13','2017-01-20 19:58:13','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/QuickBooksBlackLogo.png',0,'attachment','image/png',0),
(2361,2,'2017-01-20 19:28:45','2017-01-21 03:28:45','','Automated Reporting','','publish','closed','closed','','automated-reporting','','','2018-10-31 21:03:28','2018-11-01 04:03:28','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=2361',12,'ninzio-slider','',0),
(2362,2,'2017-01-20 19:27:15','2017-01-21 03:27:15','','lotsofgears','','inherit','closed','closed','','lotsofgears','','','2017-01-20 19:27:15','2017-01-21 03:27:15','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/lotsofgears.png',0,'attachment','image/png',0),
(2363,2,'2017-01-20 19:38:54','2017-01-21 03:38:54','','lotsofgears_1','','inherit','closed','closed','','lotsofgears_1','','','2017-01-20 19:38:54','2017-01-21 03:38:54','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/lotsofgears_1.png',0,'attachment','image/png',0),
(2369,2,'2017-01-20 21:15:23','2017-01-21 05:15:23','','FinanceRptPage1_2','','inherit','closed','closed','','financerptpage1_2','','','2017-01-20 21:15:23','2017-01-21 05:15:23','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/FinanceRptPage1_2.png',0,'attachment','image/png',0),
(2370,2,'2017-01-20 21:22:58','2017-01-21 05:22:58','','FinanceRptPage5_2','','inherit','closed','closed','','financerptpage5_2','','','2017-01-20 21:22:58','2017-01-21 05:22:58','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/FinanceRptPage5_2.png',0,'attachment','image/png',0),
(2371,2,'2017-01-20 21:23:00','2017-01-21 05:23:00','','FinanceRptPage4_2','','inherit','closed','closed','','financerptpage4_2','','','2017-01-20 21:23:00','2017-01-21 05:23:00','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/FinanceRptPage4_2.png',0,'attachment','image/png',0),
(2372,2,'2017-01-20 21:23:02','2017-01-21 05:23:02','','FinanceRptPage3_2','','inherit','closed','closed','','financerptpage3_2','','','2017-01-20 21:23:02','2017-01-21 05:23:02','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/FinanceRptPage3_2.png',0,'attachment','image/png',0),
(2373,2,'2017-01-20 21:23:05','2017-01-21 05:23:05','','FinanceRptPage2_2','','inherit','closed','closed','','financerptpage2_2','','','2017-01-20 21:23:05','2017-01-21 05:23:05','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/FinanceRptPage2_2.png',0,'attachment','image/png',0),
(2374,2,'2017-01-20 21:27:38','2017-01-21 05:27:38','','lotsofgears_2','','inherit','closed','closed','','lotsofgears_2','','','2017-01-20 21:27:38','2017-01-21 05:27:38','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/lotsofgears_2.png',0,'attachment','image/png',0),
(2378,2,'2017-01-20 23:05:33','2017-01-21 07:05:33','','tastingroom_2','','inherit','closed','closed','','tastingroom_2','','','2017-01-20 23:05:33','2017-01-21 07:05:33','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/tastingroom_2.png',0,'attachment','image/png',0),
(2380,2,'2017-01-20 23:23:33','2017-01-21 07:23:33','','lotsofgears_5','','inherit','closed','closed','','lotsofgears_5','','','2017-01-20 23:23:33','2017-01-21 07:23:33','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/lotsofgears_5.png',0,'attachment','image/png',0),
(2381,2,'2017-01-21 16:13:27','2017-01-22 00:13:27','','JobQueueBackground','','inherit','closed','closed','','jobqueuebackground','','','2017-01-21 16:13:27','2017-01-22 00:13:27','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/JobQueueBackground.png',0,'attachment','image/png',0),
(2382,2,'2017-01-21 16:21:22','2017-01-22 00:21:22','','Automated Processes','','publish','closed','closed','','automated-processes','','','2018-10-31 21:04:12','2018-11-01 04:04:12','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=2382',13,'ninzio-slider','',0),
(2385,2,'2017-01-21 20:03:48','2017-01-22 04:03:48','','shipalertemail_2','','inherit','closed','closed','','shipalertemail_2','','','2017-01-21 20:03:48','2017-01-22 04:03:48','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/shipalertemail_2.png',0,'attachment','image/png',0),
(2386,2,'2017-01-21 21:42:38','2017-01-22 05:42:38','','ChangeLogBackground_3','','inherit','closed','closed','','changelogbackground_3','','','2017-01-21 21:42:38','2017-01-22 05:42:38','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/ChangeLogBackground_3.png',0,'attachment','image/png',0),
(2387,2,'2017-01-21 21:44:15','2017-01-22 05:44:15','','Tracking Database Changes','','publish','closed','closed','','tracking-database-changes','','','2018-10-31 21:05:15','2018-11-01 04:05:15','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=2387',15,'ninzio-slider','',0),
(2388,2,'2017-01-22 12:29:02','2017-01-22 20:29:02','','ChangeLogDlg','','inherit','closed','closed','','changelogdlg','','','2017-01-22 12:29:02','2017-01-22 20:29:02','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/ChangeLogDlg.png',0,'attachment','image/png',0),
(2393,2,'2017-01-27 17:39:58','2017-01-28 01:39:58','','QuickBooks_2','','inherit','closed','closed','','quickbooks_2','','','2017-01-27 17:39:58','2017-01-28 01:39:58','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/01/QuickBooks_2.png',0,'attachment','image/png',0),
(2395,2,'2017-02-04 12:43:13','2017-02-04 20:43:13','','Beachwithwine','','inherit','closed','closed','','beachwithwine','','','2017-02-04 12:43:13','2017-02-04 20:43:13','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/02/Beachwithwine.png',0,'attachment','image/png',0),
(2397,2,'2017-02-04 12:48:26','2017-02-04 20:48:26','','Signupinwinery','','inherit','closed','closed','','signupinwinery','','','2017-02-04 12:48:26','2017-02-04 20:48:26','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/02/Signupinwinery.png',0,'attachment','image/png',0),
(2398,2,'2017-02-04 14:47:45','2017-02-04 22:47:45','','Signupinwinery_1','','inherit','closed','closed','','signupinwinery_1','','','2017-02-04 14:47:45','2017-02-04 22:47:45','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/02/Signupinwinery_1.png',0,'attachment','image/png',0),
(2399,2,'2017-02-04 17:00:37','2017-02-05 01:00:37','','iPadWhiteSkewedPOS','','inherit','closed','closed','','ipadwhiteskewedpos','','','2017-02-04 17:00:37','2017-02-05 01:00:37','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/02/iPadWhiteSkewedPOS.png',0,'attachment','image/png',0),
(2401,2,'2017-02-04 17:18:42','2017-02-05 01:18:42','','ACMDashboardSkewed_1','','inherit','closed','closed','','acmdashboardskewed_1','','','2017-02-04 17:18:42','2017-02-05 01:18:42','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/02/ACMDashboardSkewed_1.png',0,'attachment','image/png',0),
(2402,2,'2017-02-05 12:39:08','2017-02-05 20:39:08','','Signupinwinery_2','','inherit','closed','closed','','signupinwinery_2','','','2017-02-08 14:40:15','2017-02-08 22:40:15','',2405,'https://activeclubsolutions.net/wp-content/uploads/2017/02/Signupinwinery_2.png',0,'attachment','image/png',0),
(2405,2,'2017-02-08 14:41:16','2017-02-08 22:41:16','Active introduces a new Club and Newsletter Kiosk for your Tasting Room.  Make club signup a breeze with our tablet signup kiosk that can free up your bar and POS from time consuming wine club registrations.\r\n\r\nCustomers can sign up and login to web pages that are integrated into your website and appear seamlessly with your site design.  This frees your staff up to sell more wine!\r\n\r\n<img class=\"aligncenter size-full wp-image-2402\" src=\"https://activeclubsolutions.net/wp-content/uploads/2017/02/Signupinwinery_2.png\" alt=\"Signupinwinery_2\" width=\"650\" height=\"433\" />','New Wine Club and Newsletter Registration Kiosk','','pending','closed','open','','new-wine-club-newsletter-registration-kiosk','','','2022-08-14 21:03:53','2022-08-15 04:03:53','',0,'https://activeclubsolutions.net/?p=2405',0,'post','',0),
(2407,2,'2017-02-12 22:57:12','2017-02-13 06:57:12','<div style=\"margin-top: -100px;\"/>\r\n\r\n[ACSScript server=TEST dbname=demodb_6]\r\n[ACSiFrame2 server=TEST dbname=demodb_6 scenario=7 usesession=yes fcrid=FC0000001 waitcursor=ring.gif bottommargin=20 scrollpoint=1]\r\n\r\n','Member Choice / Allocation','','publish','closed','closed','','member-choice','','','2022-05-03 08:40:20','2022-05-03 15:40:20','',1497,'https://activeclubsolutions.net/?page_id=2407',0,'page','',0),
(2408,2,'2017-02-12 22:25:29','2017-02-13 06:25:29','','wallofcorks','','inherit','closed','closed','','wallofcorks','','','2021-03-11 23:21:58','2021-03-12 07:21:58','',3627,'https://activeclubsolutions.net/wp-content/uploads/2017/02/wallofcorks.jpg',0,'attachment','image/jpeg',0),
(2409,2,'2017-02-12 22:30:27','2017-02-13 06:30:27','','wallofcorks_2','','inherit','closed','closed','','wallofcorks_2','','','2017-02-12 22:30:27','2017-02-13 06:30:27','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/02/wallofcorks_2.jpg',0,'attachment','image/jpeg',0),
(2416,2,'2017-02-16 16:43:52','2017-02-17 00:43:52','[ACSScript server=TEST dbname=demodb_4]\r\n[ACSiFrame2 server=TEST dbname=demodb_4 scenario=8 usesession=yes fcrid=FC0000003 waitcursor=ring.gif bottommargin=20 scrollpoint=1]\r\n\r\n','Demonstration Member Choice / Allocation','','publish','closed','closed','','demo-member-choice','','','2021-12-12 08:29:26','2021-12-12 16:29:26','',2766,'https://activeclubsolutions.net/?page_id=2416',0,'page','',0),
(2420,2,'2017-02-22 16:51:06','2017-02-23 00:51:06','Active continues to be at the forefront of Direct to Consumer software technology with our new merchant processing partnership with EVO Payments. Our partnership with EVO makes available the Chipper. The Chipper™ is a compact card reader combining MSR and EMV chip reading and end-to-end encryption technology, facilitating reliable &amp; instant mobile payment anytime, anywhere. It plugs into the earphone jack of the iPad, giving you true mobility for retail POS and costs less than $100.\r\n\r\n<img class=\"aligncenter size-full wp-image-2421\" src=\"https://activeclubsolutions.net/wp-content/uploads/2017/02/EMViPadCheckout.png\" alt=\"Chipper\" width=\"800\" height=\"452\" />\r\n\r\n<strong>Activ8 is more affordable than ever with our new POS and Club setup fee of only $999 and monthly rates as low as $150. This offer expires March 30, 2017.</strong>','Activ8 Commerce Introduces Mobile EMV/Chip Reader','','pending','closed','open','','active-club-solutions-introduces-mobile-emvchip-reader','','','2022-08-14 21:03:53','2022-08-15 04:03:53','',0,'https://activeclubsolutions.net/?p=2420',0,'post','',0),
(2421,2,'2017-02-22 16:49:46','2017-02-23 00:49:46','','Chipper','','inherit','closed','closed','','chipper','','','2017-02-22 16:49:46','2017-02-23 00:49:46','',2420,'https://activeclubsolutions.net/wp-content/uploads/2017/02/Chipper.jpg',0,'attachment','image/jpeg',0),
(2422,2,'2017-02-25 23:21:59','2017-02-26 07:21:59','','EMViPadCheckout','','inherit','closed','closed','','emvipadcheckout','','','2017-02-25 23:21:59','2017-02-26 07:21:59','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/02/EMViPadCheckout-1.png',0,'attachment','image/png',0),
(2424,2,'2017-02-25 23:30:58','2017-02-26 07:30:58','[ACSScript server=TEST dbname=demodb_6]\r\n[ACSiFrame2 server=TEST dbname=demodb_6 scenario=8 usesession=yes fcrid=FC0000001 bottommargin=20 scrollpoint=1]\r\n\r\n','Account Management<br>Member Choice Combined','','publish','closed','closed','','account-memberchoice','','','2022-05-05 06:08:54','2022-05-05 13:08:54','',1497,'https://activeclubsolutions.net/?page_id=2424',0,'page','',0),
(2450,2,'2017-03-04 23:18:05','2017-03-05 07:18:05','<h4 style=\"text-align:center;\">You are welcome to try using the Shopping Cart feature and even place an order.<br>There is also a login you can use with the username: <b>P</b> with a password of: <b>P</b><br>If you are trying a guest shopper you can use the fake credit card number 4111111111111111.</h4>\r\n\r\n[ACSScript server=TEST dbname=demodb_6]\r\n[ACSiFrame2 server=TEST dbname=demodb_6 scenario=5 usesession=yes fcridcart=FC0000002 fcridclub=FC0000001 bottommargin=20 scrollpoint=1]\r\n\r\n\r\n','Online Store<br>Manage Account Combined','','publish','closed','closed','','cart-manage','','','2022-05-03 08:43:03','2022-05-03 15:43:03','',1497,'https://activeclubsolutions.net/?page_id=2450',0,'page','',0),
(2454,2,'2017-03-05 12:48:39','2017-03-05 20:48:39','<h4 style=\"text-align:center;\">You are welcome to try using the Shopping Cart feature and even place an order.<br>There is also a login you can use with the username: <b>P</b> with a password of: <b>P</b><br>If you are trying a guest shopper you can use the fake credit card number 4111111111111111.</h4>\r\n\r\n[ACSScript server=TEST dbname=demodb_6]\r\n[ACSiFrame2 server=TEST dbname=demodb_6 scenario=6 usesession=yes fcridcart=FC0000002 fcridclub=FC0000001 bottommargin=20 scrollpoint=1]\r\n\r\n','Manage Account<br>Online Store Combined','','publish','closed','closed','','manage-cart','','','2022-05-03 08:42:34','2022-05-03 15:42:34','',1497,'https://activeclubsolutions.net/?page_id=2454',0,'page','',0),
(2462,2,'2017-03-09 17:33:42','2017-03-10 01:33:42','','Facebook','','publish','closed','closed','','facebook','','','2018-10-31 21:06:48','2018-11-01 04:06:48','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=2462',4,'ninzio-slider','',0),
(2463,2,'2017-03-09 17:03:01','2017-03-10 01:03:01','','facebookbackground','','inherit','closed','closed','','facebookbackground','','','2017-03-09 17:03:01','2017-03-10 01:03:01','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/03/facebookbackground.png',0,'attachment','image/png',0),
(2464,2,'2017-03-09 17:32:06','2017-03-10 01:32:06','','FacebookSignup','','inherit','closed','closed','','facebooksignup','','','2017-03-26 17:40:50','2017-03-27 00:40:50','',1497,'https://activeclubsolutions.net/wp-content/uploads/2017/03/FacebookSignup.png',0,'attachment','image/png',0),
(2465,2,'2017-03-09 17:32:17','2017-03-10 01:32:17','','FacebookOrderReview','','inherit','closed','closed','','facebookorderreview','','','2017-03-09 17:32:17','2017-03-10 01:32:17','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/03/FacebookOrderReview.png',0,'attachment','image/png',0),
(2467,2,'2017-03-09 19:57:25','2017-03-10 03:57:25','','FacebookLogin','','inherit','closed','closed','','facebooklogin','','','2017-03-09 19:57:25','2017-03-10 03:57:25','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/03/FacebookLogin.png',0,'attachment','image/png',0),
(2468,2,'2017-03-09 19:57:36','2017-03-10 03:57:36','','FacebookAccount','','inherit','closed','closed','','facebookaccount','','','2017-03-09 19:57:36','2017-03-10 03:57:36','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/03/FacebookAccount.png',0,'attachment','image/png',0),
(2469,2,'2017-03-09 19:57:50','2017-03-10 03:57:50','','FacebookOrderReview','','inherit','closed','closed','','facebookorderreview-2','','','2017-03-09 19:57:50','2017-03-10 03:57:50','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/03/FacebookOrderReview-1.png',0,'attachment','image/png',0),
(2470,2,'2017-03-09 19:58:02','2017-03-10 03:58:02','','FacebookCard','','inherit','closed','closed','','facebookcard','','','2017-03-09 19:58:02','2017-03-10 03:58:02','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/03/FacebookCard.png',0,'attachment','image/png',0),
(2471,2,'2017-03-09 19:58:14','2017-03-10 03:58:14','','FacebookElement','','inherit','closed','closed','','facebookelement','','','2017-03-09 19:58:14','2017-03-10 03:58:14','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/03/FacebookElement.png',0,'attachment','image/png',0),
(2472,2,'2017-03-09 19:58:29','2017-03-10 03:58:29','','FacebookCatalog','','inherit','closed','closed','','facebookcatalog','','','2017-03-26 17:38:59','2017-03-27 00:38:59','',1497,'https://activeclubsolutions.net/wp-content/uploads/2017/03/FacebookCatalog.png',0,'attachment','image/png',0),
(2475,2,'2017-03-09 21:27:41','2017-03-10 05:27:41','','integrations_8','','inherit','closed','closed','','integrations_8','','','2017-03-09 21:27:41','2017-03-10 05:27:41','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/03/integrations_8.png',0,'attachment','image/png',0),
(2479,2,'2017-03-09 22:40:21','2017-03-10 06:40:21','','gatewaygraphic_2','','inherit','closed','closed','','gatewaygraphic_2','','','2017-03-09 22:40:21','2017-03-10 06:40:21','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/03/gatewaygraphic_2.png',0,'attachment','image/png',0),
(2485,2,'2017-03-18 11:17:08','2017-03-18 18:17:08','<div style=\"margin-top: -70px;\"/>\r\n[ACSScript server=TEST dbname=demodb_3]\r\n[ACSiFrame2 server=TEST dbname=demodb_3 scenario=5 usesession=yes fcrid=FC0000007 waitcursor=ring.gif bottommargin=20 scrollpoint=10]\r\n\r\n','Example Online Store - Walla Walla','','publish','closed','closed','','shopping-cart-4','','','2022-04-03 16:10:38','2022-04-03 23:10:38','',1497,'https://activeclubsolutions.net/?page_id=2485',0,'page','',0),
(2499,2,'2017-03-21 14:57:37','2017-03-21 21:57:37','<div class=\"ACSLoginDiv\" onclick=\"ACSLoginClicked();\"><span id=\"ACSLogin\" class=\"ACSLogin\">Member Login</span></div>\r\n<div text=[session_id]>[sessionid][PHPSESSID]</div>\r\n\r\n<script id=\"CatalogScript\" ACSHost=\"http://www.secureclubcarttest.net\" type=\"text/javascript\" src=\"http://www.secureclubcarttest.net/demodb_3/js/cataloghost.js\"></script>\r\n<script>document.getElementsByTagName(\"BODY\")[0].onresize = function() {ACSResizeFrame()};</script>\r\n\r\n<div id=\"CatalogBasketDiv\" class=\"BasketFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogBasket\" class=\"BasketFrame\" src=\"http://www.secureclubcarttest.net/demodb_3/catalogBasket.aspx?wcrshopid=FC0000001&wcripadshopid=FC0000001\" ACSHost=\"http://www.secureclubcarttest.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMessageDiv\" class=\"MsgFrameDiv\" style=\"display: none;\">\r\n<iframe id=\"CatalogMessage\" class=\"MsgFrame\" src=\"http://www.secureclubcarttest.net/demodb_3/catalogmessage.aspx?wcrshopid=FC0000001&wcripadshopid=FC0000001\" ACSHost=\"http://www.secureclubcarttest.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMenuDiv\" class=\"MenuFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogMenu\" class=\"MenuFrame\" src=\"http://www.secureclubcarttest.net/demodb_3/catalogmenu.aspx?wcrshopid=FC0000001&wcripadshopid=FC0000001\" ACSHost=\"http://www.secureclubcarttest.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"ACSWaitCursor\" style=\"position: fixed; display: inline-block; left: 45%; margin-top: -38px; z-index: 99;\">\r\n<img src=\"http://www.secureclub.net/images/activeclub/winepour.gif\"/>\r\n</div>\r\n\r\n<div id=\"CatalogDiv\" style=\"visibility: hidden;\" class=\"CatalogFrameDiv\">\r\n<iframe id=\"Catalog\" class=\"CatalogFrame\" src=\"http://www.secureclubcarttest.net/demodb_3/catalog.aspx?wcrshopid=FC0000001&wcripadshopid=FC0000001\" ACSHost=\"http://www.secureclubcarttest.net\" ACSSession=$session_id() ACSScrollPoint=\"530\"></iframe>\r\n</div>\r\n\r\n\r\n','Test the iFrame','','publish','closed','closed','','test-the-iframe','','','2018-03-21 23:03:50','2018-03-22 06:03:50','',0,'https://activeclubsolutions.net/?page_id=2499',0,'page','',0),
(2501,2,'2017-03-21 15:00:38','2017-03-21 22:00:38','<div class=\"ACSLoginDiv\" onclick=\"ACSLoginClicked();\"><span id=\"ACSLogin\" class=\"ACSLogin\">Member Login</span></div>\r\n\r\n<script id=\"CatalogScript\" ACSHost=\"http://www.secureclubtest.net\" type=\"text/javascript\" src=\"http://www.secureclubtest.net/demodb_3/js/cataloghost.js\"></script>\r\n<script>document.getElementsByTagName(\"BODY\")[0].onresize = function() {ACSResizeFrame()};</script>\r\n\r\n<div id=\"CatalogBasketDiv\" class=\"BasketFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogBasket\" class=\"BasketFrame\" src=\"http://www.secureclubtest.net/demodb_3/catalogBasket.aspx?wcrshopid=wc0000018&wcripadshopid=wc0000018\" ACSHost=\"http://www.secureclubtest.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMessageDiv\" class=\"MsgFrameDiv\" style=\"display: none;\">\r\n<iframe id=\"CatalogMessage\" class=\"MsgFrame\" src=\"http://www.secureclubtest.net/demodb_3/catalogmessage.aspx?wcrshopid=wc0000018&wcripadshopid=wc0000018\" ACSHost=\"http://www.secureclubtest.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMenuDiv\" class=\"MenuFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogMenu\" class=\"MenuFrame\" src=\"http://www.secureclubtest.net/demodb_3/catalogmenu.aspx?wcrshopid=wc0000018&wcripadshopid=wc0000018\" ACSHost=\"http://www.secureclubtest.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"ACSWaitCursor\" style=\"position: fixed; display: inline-block; left: 45%; margin-top: 50px; z-index: 99;\">\r\n<img src=\"http://www.secureclub.net/images/activeclub/progressbar.gif\"/>\r\n</div>\r\n\r\n<div id=\"CatalogDiv\" style=\"visibility: hidden;\" class=\"CatalogFrameDiv\">\r\n<iframe id=\"Catalog\" class=\"CatalogFrame\" src=\"http://www.secureclubtest.net/demodb_3/catalog.aspx?wcrshopid=wc0000018&wcripadshopid=wc0000018\" ACSHost=\"http://www.secureclubtest.net\" ACSScrollPoint=\"230\"></iframe>\r\n</div>\r\n\r\n<div id=\"RegisterDiv\" class=\"RegisterFrameDiv\" style=\"display:none;visibility: hidden;\">\r\n<iframe id=\"Register\" class=\"RegisterFrame\" src=\"http://www.secureclubtest.net/demodb_3/register.aspx?wcrshopid=wc0000018&wcripadshopid=wc0000018\" ACSHost=\"http://www.secureclubtest.net\" ACSScrollPoint=\"230\"></iframe>\r\n</div>\r\n\r\n','Test of New Frame Architecture','','publish','closed','closed','','newframetest','','','2018-02-24 23:10:07','2018-02-25 07:10:07','',0,'https://activeclubsolutions.net/?page_id=2501',0,'page','',0),
(2509,2,'2017-03-25 15:39:21','2017-03-25 22:39:21','','EVO_Logo','','inherit','closed','closed','','evo_logo','','','2017-03-25 15:39:21','2017-03-25 22:39:21','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/03/EVO_Logo.png',0,'attachment','image/png',0),
(2510,2,'2017-03-25 16:42:03','2017-03-25 23:42:03','','glassintastingroom','','inherit','closed','closed','','glassintastingroom','','','2017-03-25 16:42:03','2017-03-25 23:42:03','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/03/glassintastingroom.png',0,'attachment','image/png',0),
(2526,2,'2017-04-01 21:48:12','2017-04-02 04:48:12','','dandilion_5','','inherit','closed','closed','','dandilion_5','','','2017-04-01 21:48:12','2017-04-02 04:48:12','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/dandilion_5.png',0,'attachment','image/png',0),
(2537,2,'2017-04-02 23:27:54','2017-04-03 06:27:54','','inventorymgmt','','inherit','closed','closed','','inventorymgmt','','','2017-04-02 23:27:54','2017-04-03 06:27:54','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/inventorymgmt.png',0,'attachment','image/png',0),
(2538,2,'2017-04-02 23:28:52','2017-04-03 06:28:52','','Inventory Management','','publish','closed','closed','','inventory-management','','','2018-10-31 21:07:57','2018-11-01 04:07:57','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=2538',14,'ninzio-slider','',0),
(2539,2,'2017-04-03 17:55:48','2017-04-04 00:55:48','','InventoryTransaction','','inherit','closed','closed','','inventorytransaction','','','2017-04-03 17:55:48','2017-04-04 00:55:48','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/InventoryTransaction.png',0,'attachment','image/png',0),
(2540,2,'2017-04-03 17:56:29','2017-04-04 00:56:29','','iPadLocation','','inherit','closed','closed','','ipadlocation','','','2017-04-03 17:56:29','2017-04-04 00:56:29','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/iPadLocation.png',0,'attachment','image/png',0),
(2541,2,'2017-04-03 17:56:31','2017-04-04 00:56:31','','iPadAddInventory','','inherit','closed','closed','','ipadaddinventory','','','2017-04-03 17:56:31','2017-04-04 00:56:31','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/iPadAddInventory.png',0,'attachment','image/png',0),
(2542,2,'2017-04-03 17:56:34','2017-04-04 00:56:34','','iPadTransfer','','inherit','closed','closed','','ipadtransfer','','','2017-04-03 17:56:34','2017-04-04 00:56:34','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/iPadTransfer.png',0,'attachment','image/png',0),
(2551,2,'2017-04-15 13:16:06','2017-04-15 20:16:06','','Grapes-CC','','inherit','closed','closed','','grapes-cc','','','2017-04-15 13:16:06','2017-04-15 20:16:06','',2485,'https://activeclubsolutions.net/wp-content/uploads/2017/03/Grapes-CC.jpg',0,'attachment','image/jpeg',0),
(2554,2,'2017-04-17 19:48:19','2017-04-18 02:48:19','','POSTransfer','','inherit','closed','closed','','postransfer','','','2017-04-17 19:48:47','2017-04-18 02:48:47','',1796,'https://activeclubsolutions.net/wp-content/uploads/2017/04/POSTransfer.png',0,'attachment','image/png',0),
(2555,2,'2017-04-17 20:13:58','2017-04-18 03:13:58','','ACSvsVinSuite-POS','','inherit','closed','closed','','acsvsvinsuite-pos','','','2017-04-17 20:14:43','2017-04-18 03:14:43','',1796,'https://activeclubsolutions.net/wp-content/uploads/2017/04/ACSvsVinSuite-POS.png',0,'attachment','image/png',0),
(2556,2,'2017-04-17 20:51:17','2017-04-18 03:51:17','','ACSvsOrderPort-POS','','inherit','closed','closed','','acsvsorderport-pos','','','2017-04-17 20:52:37','2017-04-18 03:52:37','',1796,'https://activeclubsolutions.net/wp-content/uploads/2017/04/ACSvsOrderPort-POS.png',0,'attachment','image/png',0),
(2557,2,'2017-04-17 20:57:27','2017-04-18 03:57:27','','ACSvsVin65-POS_2','','inherit','closed','closed','','acsvsvin65-pos_2','','','2017-04-17 20:57:27','2017-04-18 03:57:27','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/ACSvsVin65-POS_2.png',0,'attachment','image/png',0),
(2558,2,'2017-04-17 21:02:52','2017-04-18 04:02:52','','POSAddInventory','','inherit','closed','closed','','posaddinventory','','','2017-04-17 21:03:11','2017-04-18 04:03:11','',1796,'https://activeclubsolutions.net/wp-content/uploads/2017/04/POSAddInventory.png',0,'attachment','image/png',0),
(2559,2,'2017-04-17 21:53:32','2017-04-18 04:53:32','','ACSvsRevel-POS','','inherit','closed','closed','','acsvsrevel-pos','','','2017-04-17 21:54:53','2017-04-18 04:54:53','',1796,'https://activeclubsolutions.net/wp-content/uploads/2017/04/ACSvsRevel-POS.png',0,'attachment','image/png',0),
(2560,2,'2017-04-17 22:17:07','2017-04-18 05:17:07','','POSLocation','','inherit','closed','closed','','poslocation','','','2017-04-17 22:18:13','2017-04-18 05:18:13','',1796,'https://activeclubsolutions.net/wp-content/uploads/2017/04/POSLocation.png',0,'attachment','image/png',0),
(2568,2,'2017-04-18 16:44:46','2017-04-18 23:44:46','','WineDirect_2','','inherit','closed','closed','','winedirect_2','','','2017-04-18 16:44:46','2017-04-18 23:44:46','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/WineDirect_2.png',0,'attachment','image/png',0),
(2574,2,'2017-04-18 18:09:34','2017-04-19 01:09:34','','webdesignagency_3','','inherit','closed','closed','','webdesignagency_3','','','2017-04-18 18:09:34','2017-04-19 01:09:34','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/webdesignagency_3.png',0,'attachment','image/png',0),
(2576,2,'2017-04-18 20:15:39','2017-04-19 03:15:39','','Sky1Logo','','inherit','closed','closed','','sky1logo','','','2017-04-18 20:15:39','2017-04-19 03:15:39','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/Sky1Logo.png',0,'attachment','image/png',0),
(2580,2,'2017-04-18 20:59:11','2017-04-19 03:59:11','','SiteCraftLogo','','inherit','closed','closed','','sitecraftlogo','','','2017-04-18 20:59:11','2017-04-19 03:59:11','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/SiteCraftLogo.png',0,'attachment','image/png',0),
(2581,2,'2017-04-18 21:12:58','2017-04-19 04:12:58','','NLHSolutionsLogo','','inherit','closed','closed','','nlhsolutionslogo','','','2017-04-18 21:12:58','2017-04-19 04:12:58','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/NLHSolutionsLogo.png',0,'attachment','image/png',0),
(2582,2,'2017-04-18 21:42:56','2017-04-19 04:42:56','','KreckLogo','','inherit','closed','closed','','krecklogo','','','2017-04-18 21:42:56','2017-04-19 04:42:56','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/KreckLogo.png',0,'attachment','image/png',0),
(2583,2,'2017-04-18 21:48:51','2017-04-19 04:48:51','','4PartsLogo','','inherit','closed','closed','','4partslogo','','','2017-04-18 21:48:51','2017-04-19 04:48:51','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/4PartsLogo.png',0,'attachment','image/png',0),
(2584,2,'2017-04-18 22:02:34','2017-04-19 05:02:34','','RisinglineLogo','','inherit','closed','closed','','risinglinelogo','','','2017-04-18 22:02:34','2017-04-19 05:02:34','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/RisinglineLogo.png',0,'attachment','image/png',0),
(2585,2,'2017-04-18 22:21:39','2017-04-19 05:21:39','','WebDesignerAvatar','','inherit','closed','closed','','webdesigneravatar','','','2017-04-18 22:21:39','2017-04-19 05:21:39','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/WebDesignerAvatar.png',0,'attachment','image/png',0),
(2587,2,'2017-04-18 22:37:10','2017-04-19 05:37:10','','keventhompson','','inherit','closed','closed','','keventhompson','','','2017-04-18 22:37:10','2017-04-19 05:37:10','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/keventhompson.png',0,'attachment','image/png',0),
(2598,2,'2017-04-19 17:28:38','2017-04-20 00:28:38','','vineyardinfog-wide','','inherit','closed','closed','','vineyardinfog-wide','','','2017-04-19 17:28:38','2017-04-20 00:28:38','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/vineyardinfog-wide.png',0,'attachment','image/png',0),
(2604,2,'2017-04-20 17:30:12','2017-04-21 00:30:12','','golfcourse_1','','inherit','closed','closed','','golfcourse_1','','','2017-04-20 17:30:12','2017-04-21 00:30:12','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/golfcourse_1.png',0,'attachment','image/png',0),
(2616,2,'2017-04-22 21:38:29','2017-04-23 04:38:29','','processworkflow','','inherit','closed','closed','','processworkflow','','','2017-04-22 21:38:29','2017-04-23 04:38:29','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/processworkflow.png',0,'attachment','image/png',0),
(2617,2,'2017-04-22 21:41:06','2017-04-23 04:41:06','','processworkflow_2','','inherit','closed','closed','','processworkflow_2','','','2017-04-22 21:41:06','2017-04-23 04:41:06','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/processworkflow_2.png',0,'attachment','image/png',0),
(2618,2,'2017-04-22 22:00:54','2017-04-23 05:00:54','','PrettyBlueToBlack','','inherit','closed','closed','','prettybluetoblack','','','2017-04-22 22:00:54','2017-04-23 05:00:54','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/PrettyBlueToBlack.png',0,'attachment','image/png',0),
(2636,2,'2017-04-23 22:14:34','2017-04-24 05:14:34','','phoneandemail','','inherit','closed','closed','','phoneandemail','','','2017-04-23 22:14:34','2017-04-24 05:14:34','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/phoneandemail.png',0,'attachment','image/png',0),
(2639,2,'2017-04-23 23:02:56','2017-04-24 06:02:56','','softwaretechnology','','inherit','closed','closed','','softwaretechnology','','','2017-04-23 23:02:56','2017-04-24 06:02:56','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/softwaretechnology.png',0,'attachment','image/png',0),
(2641,2,'2017-04-23 23:11:43','2017-04-24 06:11:43','','softwaretechnology_3','','inherit','closed','closed','','softwaretechnology_3','','','2017-04-23 23:11:43','2017-04-24 06:11:43','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/softwaretechnology_3.png',0,'attachment','image/png',0),
(2645,2,'2017-04-24 11:17:45','2017-04-24 18:17:45','','QuickbooksPage_2','','inherit','closed','closed','','quickbookspage_2','','','2017-04-24 11:17:45','2017-04-24 18:17:45','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/QuickbooksPage_2.png',0,'attachment','image/png',0),
(2651,2,'2017-04-24 14:54:53','2017-04-24 21:54:53','','QuickbooksPage_3','','inherit','closed','closed','','quickbookspage_3','','','2017-04-24 14:54:53','2017-04-24 21:54:53','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/QuickbooksPage_3.png',0,'attachment','image/png',0),
(2652,2,'2017-04-24 17:04:19','2017-04-25 00:04:19','','PricingChart_2','','inherit','closed','closed','','pricingchart_2','','','2017-04-24 17:04:19','2017-04-25 00:04:19','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/PricingChart_2.png',0,'attachment','image/png',0),
(2656,2,'2017-04-25 11:51:22','2017-04-25 18:51:22','','careersheader','','inherit','closed','closed','','careersheader','','','2017-04-25 11:51:22','2017-04-25 18:51:22','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/careersheader.png',0,'attachment','image/png',0),
(2660,2,'2017-04-26 21:07:23','2017-04-27 04:07:23','','aboutus_1','','inherit','closed','closed','','aboutus_1','','','2017-04-26 21:07:23','2017-04-27 04:07:23','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/aboutus_1.png',0,'attachment','image/png',0),
(2661,2,'2017-04-26 21:09:25','2017-04-27 04:09:25','','aboutus_2','','inherit','closed','closed','','aboutus_2','','','2017-04-26 21:09:25','2017-04-27 04:09:25','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/aboutus_2.png',0,'attachment','image/png',0),
(2662,2,'2017-10-02 21:55:55','0000-00-00 00:00:00','[fullbox padding_top=\"0\" padding_bottom=\"45\"]\n[one_third last=\"yes no\"]\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2014/03/home-block11.jpg\"><img class=\"alignnone size-full wp-image-1611\" src=\"https://activeclubsolutions.net/wp-content/uploads/2014/03/home-block11.jpg\" alt=\"Activ8 Winery &amp; Vineyard Management Software\" width=\"589\" height=\"400\" /></a>\n[/one_third]\n[two_thirds last=\"yes\"]\n<ul>\n 	<li>About Activ8 Commerce</li>\n</ul>\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\n[font_size font_size=\"18px\" line_height=\"28px\"]<span style=\"color: #999999;\">Est usus legentis eorum claritatem investigationes demonstraverunt</span>[/font_size]\n[gap height=\"10\" /]\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.\n[/two_thirds]\n[/fullbox]\n[widebox shadow=\"\" text_color=\"\" background_color=\"#666666\" background_image=\"\" background_repeat=\"\" background_position=\"\" background_attachment=\"\" border_size=\"1\" border_color=\"#888888\" padding_top=\"90\" padding_bottom=\"65\"]\n[box_container columns=\"3\" version=\"v2\" animate=\"yes\"][box target=\"_self _blank\" title=\"Here\'s a Title\" icon=\"eye\" icon_color=\"\" icon_back_color=\"\"]Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum etiam processus qui blandit praesent luptatum zril.[/box][box target=\"_self _blank\" title=\"And Another Title\" icon=\"download\" icon_color=\"\" icon_back_color=\"\"]Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum etiam processus qui blandit praesent luptatum zzril.[/box][box target=\"_self _blank\" title=\"One More Title\" icon=\"thumbs-o-up\" icon_color=\"\" icon_back_color=\"\"]Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum etiam processus qui blandit praesent luptatum zzril.[/box][/box_container]\n[/widebox]\n[fullbox padding_top=\"70\" padding_bottom=\"45\"]\n[one_third last=\"yes no\"]\n<h2>Process</h2>\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"35\" /]\n[accordion collapsible=\"yes\"][toggle title=\"Planning\" open=\"yes\"]Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat[/toggle][toggle title=\"Development\" open=\"yes no\"]Claritas est etiam processus dynamicus, qui sequitur mutationem consuetudium lectorum. Mirum est notare quam littera gothica, quam nunc putamus parum claram, anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur parum clari, fiant sollemnes in futurum.[/toggle][toggle title=\"Support\" open=\"yes no\"]Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius.[/toggle][/accordion]\n[/one_third]\n[one_third last=\"yes no\"]\n<h2>Why Us?</h2>\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"30\" /]\nNam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Lectores legere me lius quod. Duis autem vel eum iriure dolor in hendrerit in vulputate demonstraverunt lectores.\n[gap height=\"15\" /]\n[icon_list size=\"small medium large\" type=\"square\" icon=\"check\" icon_color=\"#ffffff\" background_color=\"\"]\n<ul>\n 	<li>Nam liber tempor cum soluta</li>\n 	<li>Typi non habent claritatem insitam</li>\n 	<li>Mirum est notare quam littera</li>\n 	<li>Ut wisi enim ad minim veniam</li>\n</ul>\n[/icon_list]\n[/one_third]\n[one_third last=\"yes\"]\n<h2>Expertise</h2>\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"30\" /]\n[progress_container textured=\"no\"]\n\n[progress title=\"Development\" percentage=\"90\" gap=\"20\" color=\"\" bar_color=\"\" track_color=\"\"/][progress title=\"Marketing\" percentage=\"85\" gap=\"20\" color=\"\" bar_color=\"\" track_color=\"\"/][progress title=\"Reporting\" percentage=\"65\" gap=\"20\" color=\"\" bar_color=\"\" track_color=\"\"/][progress title=\"Sales Increase\" percentage=\"80\" gap=\"20\" color=\"\" bar_color=\"\" track_color=\"\"/][/progress_container]\n[/one_third]\n[/fullbox]','Old About Page','','draft','closed','closed','','','','','2017-10-02 21:55:55','2017-10-03 04:55:55','',0,'https://activeclubsolutions.net/?page_id=2662',0,'page','',0),
(2664,2,'2017-04-26 22:32:08','2017-04-27 05:32:08','','About Us','','publish','closed','closed','','about-us','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=2664',23,'nav_menu_item','',0),
(2665,2,'2017-04-26 23:29:24','2017-04-27 06:29:24','','mpopandipad-blue','','inherit','closed','closed','','mpopandipad-blue','','','2017-04-26 23:29:24','2017-04-27 06:29:24','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/mpopandipad-blue.png',0,'attachment','image/png',0),
(2666,2,'2017-04-27 17:14:48','2017-04-28 00:14:48','','seedmedia','','inherit','closed','closed','','seedmedia','','','2017-04-27 17:14:48','2017-04-28 00:14:48','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/04/seedmedia.png',0,'attachment','image/png',0),
(2667,2,'2017-05-01 12:40:38','2017-05-01 19:40:38','','seed-media-logo','','inherit','closed','closed','','seed-media-logo','','','2017-05-01 12:40:38','2017-05-01 19:40:38','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/05/seed-media-logo.png',0,'attachment','image/png',0),
(2670,2,'2017-05-03 20:19:32','2017-05-04 03:19:32','<style type=\"text/css\">.ManageFrameDiv{margin-top:-100px;}</style>\r\n[ACSScript server=CA dbname=activeclub]\r\n[ACSiFrame2 server=CA dbname=activeclub fcrid=FC0000001 scenario=4 usesession=no bottommargin=0 waitcursor=http://www.secureclub.net/images/activeclub/ring.gif cursortopmargin=-200]','Manage Your Activ8 Client Account','','publish','closed','closed','','manage-acs-account','','','2019-09-02 16:12:57','2019-09-02 23:12:57','',0,'https://activeclubsolutions.net/?page_id=2670',0,'page','',0),
(2677,2,'2017-05-04 14:12:02','2017-05-04 21:12:02','','Login','','publish','closed','closed','','login','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=2677',38,'nav_menu_item','',0),
(2679,2,'2017-05-04 22:27:43','2017-05-05 05:27:43','','Loginbackground_1','','inherit','closed','closed','','loginbackground_1','','','2017-05-04 22:27:43','2017-05-05 05:27:43','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/05/Loginbackground_1.png',0,'attachment','image/png',0),
(2680,2,'2017-05-04 22:48:02','2017-05-05 05:48:02','','Loginbackground-castle','','inherit','closed','closed','','loginbackground-castle','','','2017-05-04 22:48:02','2017-05-05 05:48:02','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/05/Loginbackground-castle.png',0,'attachment','image/png',0),
(2681,2,'2017-05-04 22:51:26','2017-05-05 05:51:26','','Loginbackground-castle-2','','inherit','closed','closed','','loginbackground-castle-2','','','2017-05-04 22:51:26','2017-05-05 05:51:26','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/05/Loginbackground-castle-2.png',0,'attachment','image/png',0),
(2682,2,'2017-05-04 23:06:02','2017-05-05 06:06:02','','Loginbackground-castle-3','','inherit','closed','closed','','loginbackground-castle-3','','','2017-05-04 23:06:02','2017-05-05 06:06:02','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/05/Loginbackground-castle-3.png',0,'attachment','image/png',0),
(2684,0,'2017-05-10 09:16:07','2017-05-10 16:16:07','','active-club','','publish','closed','closed','','active-club','','','2018-07-24 20:00:12','2018-07-25 03:00:12','',0,'https://activeclubsolutions.net/active-club/',0,'custom_css','',0),
(2691,2,'2017-06-14 09:42:08','2017-06-14 16:42:08','Active is pleased to announce that when you switch from another software provider we can import your previous customer purchase history at no charge.  There is no more critical component to your CRM than knowing and targeting your customers based on their past purchases.  Now, you can leave your current, insufficient software system behind you for Active with the confidence that your customers and their complete data will come with you to Active for free.','Keep Your Customer Purchase History','','pending','closed','open','','keep-customer-purchase-history','','','2022-08-14 21:03:53','2022-08-15 04:03:53','',0,'https://activeclubsolutions.net/?p=2691',0,'post','',0),
(2698,2,'2017-07-18 22:33:55','2017-07-19 05:33:55','','integrations_9','','inherit','closed','closed','','integrations_9','','','2017-07-18 22:33:55','2017-07-19 05:33:55','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/integrations_9.png',0,'attachment','image/png',0),
(2700,2,'2017-07-18 22:45:24','2017-07-19 05:45:24','','integrations_10','','inherit','closed','closed','','integrations_10','','','2017-07-18 22:45:24','2017-07-19 05:45:24','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/integrations_10.png',0,'attachment','image/png',0),
(2701,2,'2017-07-18 23:05:08','2017-07-19 06:05:08','','WorldPay_2','','inherit','closed','closed','','worldpay_2','','','2017-07-18 23:05:08','2017-07-19 06:05:08','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/WorldPay_2.png',0,'attachment','image/png',0),
(2703,2,'2017-07-18 23:21:58','2017-07-19 06:21:58','','MailChimpNLogo','','inherit','closed','closed','','mailchimpnlogo','','','2017-07-18 23:21:58','2017-07-19 06:21:58','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/MailChimpNLogo.png',0,'attachment','image/png',0),
(2704,2,'2017-07-18 23:36:39','2017-07-19 06:36:39','','WorldPayLarge','','inherit','closed','closed','','worldpaylarge','','','2017-07-18 23:36:39','2017-07-19 06:36:39','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/WorldPayLarge.png',0,'attachment','image/png',0),
(2709,2,'2017-07-19 15:42:13','2017-07-19 22:42:13','','constantcontact','','inherit','closed','closed','','constantcontact','','','2017-07-19 15:42:13','2017-07-19 22:42:13','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/constantcontact.png',0,'attachment','image/png',0),
(2711,2,'2017-07-19 21:11:53','2017-07-20 04:11:53','','goldengate','','inherit','closed','closed','','goldengate','','','2017-07-19 21:11:53','2017-07-20 04:11:53','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/goldengate.png',0,'attachment','image/png',0),
(2712,2,'2017-07-19 21:48:46','2017-07-20 04:48:46','','iPhoneMembership-skewed','','inherit','closed','closed','','iphonemembership-skewed','','','2017-07-19 21:48:46','2017-07-20 04:48:46','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/iPhoneMembership-skewed.png',0,'attachment','image/png',0),
(2713,2,'2017-07-19 22:38:30','2017-07-20 05:38:30','','iPhoneCart-skewed','','inherit','closed','closed','','iphonecart-skewed','','','2017-07-19 22:38:30','2017-07-20 05:38:30','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/iPhoneCart-skewed.png',0,'attachment','image/png',0),
(2714,2,'2017-07-19 23:00:28','2017-07-20 06:00:28','','goldengate_2','','inherit','closed','closed','','goldengate_2','','','2017-07-19 23:00:28','2017-07-20 06:00:28','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/goldengate_2.png',0,'attachment','image/png',0),
(2716,2,'2017-07-20 11:14:27','2017-07-20 18:14:27','','iPadWhiteSkewedPOS_2','','inherit','closed','closed','','ipadwhiteskewedpos_2','','','2017-07-20 11:14:27','2017-07-20 18:14:27','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/iPadWhiteSkewedPOS_2.png',0,'attachment','image/png',0),
(2717,2,'2017-07-20 11:19:50','2017-07-20 18:19:50','','iPadWhiteSkewedPOS_3','','inherit','closed','closed','','ipadwhiteskewedpos_3','','','2017-07-20 11:19:50','2017-07-20 18:19:50','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/iPadWhiteSkewedPOS_3.png',0,'attachment','image/png',0),
(2718,2,'2017-07-20 11:28:12','2017-07-20 18:28:12','','PCmonitorWithACM_3','','inherit','closed','closed','','pcmonitorwithacm_3','','','2017-07-20 11:28:12','2017-07-20 18:28:12','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/PCmonitorWithACM_3.png',0,'attachment','image/png',0),
(2719,2,'2017-07-20 11:31:03','2017-07-20 18:31:03','','PCmonitorWithACM_4','','inherit','closed','closed','','pcmonitorwithacm_4','','','2017-07-20 11:31:03','2017-07-20 18:31:03','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/07/PCmonitorWithACM_4.png',0,'attachment','image/png',0),
(2721,2,'2017-08-10 22:57:17','2017-08-11 05:57:17','','emailtracking','','inherit','closed','closed','','emailtracking','','','2017-08-10 22:57:17','2017-08-11 05:57:17','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/08/emailtracking.png',0,'attachment','image/png',0),
(2722,2,'2017-08-10 23:18:53','2017-08-11 06:18:53','','E-mail Tracking','','publish','closed','closed','','2722','','','2019-09-02 23:33:40','2019-09-03 06:33:40','',0,'https://activeclubsolutions.net/?post_type=ninzio-slider&#038;p=2722',6,'ninzio-slider','',0),
(2725,2,'2017-08-10 23:36:00','2017-08-11 06:36:00','','emailtracking_3','','inherit','closed','closed','','emailtracking_3','','','2017-08-10 23:36:00','2017-08-11 06:36:00','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/08/emailtracking_3.png',0,'attachment','image/png',0),
(2727,2,'2017-08-11 15:29:49','2017-08-11 22:29:49','','emailtracking_5','','inherit','closed','closed','','emailtracking_5','','','2017-08-11 15:29:49','2017-08-11 22:29:49','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/08/emailtracking_5.png',0,'attachment','image/png',0),
(2729,2,'2017-08-11 20:30:19','2017-08-12 03:30:19','','emaileventwindow','','inherit','closed','closed','','emaileventwindow','','','2017-08-11 20:30:19','2017-08-12 03:30:19','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/08/emaileventwindow.png',0,'attachment','image/png',0),
(2731,2,'2017-08-11 22:32:20','2017-08-12 05:32:20','','marketing','','inherit','closed','closed','','marketing','','','2017-08-11 22:32:20','2017-08-12 05:32:20','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/08/marketing.png',0,'attachment','image/png',0),
(2732,2,'2017-08-11 22:50:57','2017-08-12 05:50:57','','marketing_2','','inherit','closed','closed','','marketing_2','','','2017-08-11 22:50:57','2017-08-12 05:50:57','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/08/marketing_2.png',0,'attachment','image/png',0),
(2733,2,'2017-08-14 16:10:27','2017-08-14 23:10:27','<h1>E-mail Tracking</h1>\r\n\r\nOur software includes, built right in, the tracking of all e-mail events and links these events to customers, transactions, processes, organizations, and staff.  This is not just a benefit designed for e-mail campaigns but for all e-mails whether marketing or stock alerts.\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n   <li>detailed reporting and analytics tied seamlessly to your customer, process, financial, and staff data</li>\r\n   <li>fully searchable with our advanced searching functionality</li>\r\n   <li>up-to-the-minute updates in real-time built into the software</li>\r\n   <li>dive into the details of all the outbound messages delivered, opened, clicked, and failed</li>\r\n   <li>tracks complaints, unsubscribes, and critical bounce processing information</li>\r\n   <li>works for all e-mails whether to customers, vendors, wholesalers, or staff</li>\r\n</ul>\r\n[/icon_list]','E-mail Tracking','','pending','closed','open','','e-mail-tracking','','','2022-08-14 21:03:36','2022-08-15 04:03:36','',0,'https://activeclubsolutions.net/?p=2733',0,'post','',0),
(2738,2,'2017-08-18 20:18:01','2017-08-19 03:18:01','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"20\"]\r\n<h1 style=\"margin-top: -50px;\">Comparison of Payment Processors</h1>\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<p style=\"font-size: 19px;\">\r\nActiv8 Commerce offers several payment processors.  This chart will alter every few months since the payment processing industry is undergoing constant change.  The Activ8 POS system is also strictly focused on mobile devices.  The Activ8 system only works with credit card tokens, EMV devices, and point-to-point encrypted devices.  Compliance, merchant security (and out-of-scope PCI) is our goal.\r\n</p>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<div style=\"margin-top: -900px; width: 100%;\">\r\n\r\n[table header_color=\"\" header_back_color=\"#10101\"]\r\n[thead]\r\n[th][font_size font_size=\"22px\" line_height=\"36px\"]Features[/font_size][/th]\r\n[th][font_size font_size=\"22px\" line_height=\"36px\"]OpenEdge[/font_size][/th]\r\n[th][font_size font_size=\"22px\" line_height=\"36px\"]EVO&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[/font_size][/th]\r\n[/thead]\r\n\r\n[tbody]\r\n[tr]\r\n[td ][font_size font_size=\"22px\" font_weight=\"Bold\" line_height=\"36px\"]\r\n<strong>EMV Capable</strong>\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nYes\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nYes\r\n[/font_size][/td]\r\n[/tr]\r\n[tr]\r\n[td ][font_size font_size=\"22px\" font_weight=\"Bold\" line_height=\"36px\"]\r\n<strong>Available Devices</strong>\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\n<a href=\"http://www.bbpos.com/\">Chipper Bluetooth</a>\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\n<a href=\"http://www.bbpos.com/\">Chipper Jack</a>\r\n[/font_size][/td]\r\n[/tr]\r\n[tr]\r\n[td ][font_size font_size=\"22px\" font_weight=\"Bold\" line_height=\"36px\"]\r\n<strong>Token Storage</strong>\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nFree\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nFree\r\n[/font_size][/td]\r\n[/tr]\r\n[tr]\r\n[td ][font_size font_size=\"22px\" font_weight=\"Bold\" line_height=\"36px\"]\r\n<strong>Card Updating</strong>\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nFree\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nNot Available\r\n[/font_size][/td]\r\n[/tr]\r\n[tr]\r\n[td ][font_size font_size=\"22px\" font_weight=\"Bold\" line_height=\"36px\"]\r\n<strong>Credit Analysis</strong>\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nExtreme\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nModerate\r\n[/font_size][/td]\r\n[/tr]\r\n[tr]\r\n[td ][font_size font_size=\"22px\" font_weight=\"Bold\" line_height=\"36px\"]\r\n<strong>Contract</strong>\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nNo\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nYes\r\n[/font_size][/td]\r\n[/tr]\r\n[tr]\r\n[td ][font_size font_size=\"22px\" font_weight=\"Bold\" line_height=\"36px\"]\r\n<strong>Portal Access</strong>\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nFree\r\n[/font_size][/td]\r\n[td ][font_size font_size=\"22px\" line_height=\"36px\"]\r\nFree\r\n[/font_size][/td]\r\n[/tr]\r\n[/tbody]\r\n[/table]\r\n</div>\r\n\r\n<div style=\"margin-top: -60px; width: 100%;\">\r\n[table header_color=\"\" header_back_color=black]\r\n[thead]\r\n[th  text-align: center;][font_size font_size=\"14px\" line_height=\"16px\"]\r\n<p style=\"text-align: center;\">\r\n* Comparison information as of 7/18/2019 is not definitive and is subject to change.  Please verify the information with the payment processor.\r\n</p>\r\n[/font_size][/th]\r\n[/thead]\r\n[/table]\r\n</div>\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/fullbox]\r\n','Payment Processors','','publish','closed','closed','','comparison-payment-gateways','','','2019-09-02 22:30:03','2019-09-03 05:30:03','',1589,'https://activeclubsolutions.net/?page_id=2738',0,'page','',0),
(2762,2,'2017-08-22 20:34:40','2017-08-23 03:34:40','','emailwheel_4','','inherit','closed','closed','','emailwheel_4','','','2017-08-22 20:34:40','2017-08-23 03:34:40','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/08/emailwheel_4.png',0,'attachment','image/png',0),
(2763,2,'2017-08-22 20:56:49','2017-08-23 03:56:49','','emailwheel_5','','inherit','closed','closed','','emailwheel_5','','','2017-08-22 20:56:49','2017-08-23 03:56:49','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/08/emailwheel_5.png',0,'attachment','image/png',0),
(2766,2,'2017-08-24 14:46:57','2017-08-24 21:46:57','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n[two_thirds last=\"no\"]\r\n<h1>Responsive Ecommerce for Wineries</h1>\r\n<h1>Member Choice / Allocation for Wineries</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nEcommerce is an essential part of any winery and tasting room solution. Our ecommerce toolkit is embedded into your existing website and fully integrated with your Activ8 Commerce\' <a href=\"https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/\"><span style=\"color: #555555;\">Tasting Room POS</span> </a>, and <a href=\"https://activeclubsolutions.net/winery-pos-features/wine-club-management/\"><span style=\"color: #555555;\">Wine Club Software</span></a>. It is all in one database.\r\n\r\nLet your customers enjoy a full, branded, state of the art online shopping experience and catapult your wine sales to the next level. Multiple brands and shopping carts within one database is supported. Facebook pages are supported.\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h1>Explore our ecommerce features</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n 	<li>Rather than the shopping cart being hosted on our server, you or your designer will add a few blank pages to your website and insert our innovative <u>\'cookieless\'</u> <i>iframes</i> (creating our pages within your pages - embedded).</li>\r\n 	<li>With any of our new templates, you and your web designer now have full control of the design elements that carry your brand image through to your online store.</li>\r\n 	<li>The Style Sheets are totally open, allowing you or your designer to modify, adjust and be as creative as you want.</li>\r\n 	<li>Below are links to the various types of Activ8 Commerce\' templates showing what your online store might look like.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n 	<li>Our templates are fully responsive from smartphone to desktop devices and allow for immediate payment card processing.</li>\r\n 	<li>Your online customers will enjoy a refreshing and easy shopping experience with our single page checkout. Our smart and simple checkout process will reduce abandoned shopping carts and increase your sales.</li>\r\n 	<li>All online orders and updated customer data automatically flow into Activ8 Manager for customer record creation, payment card, order, and shipment processing, keeping all your sales in one single system.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n<a title=\"Shopping Cart Add-On\" href=\"/wine-club-software-pricing/winery-website-shopping-cart/\">View Winery Ecommerce Pricing</a>.\r\n\r\n[gap height=\"25\" /]\r\n<h1>Responsive Club Signup and Account Management</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<span style=\"color: #2d3038;\">Giving your customers access to their information online and through mobile interfaces allows them to easily view their purchase history, track orders, and update their information. These customer interfaces are vital for revenue recovery and customer visibility.</span>\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n 	<li>Customer sign up and login web pages that are integrated into your website to appear seamlessly with your site design.</li>\r\n 	<li>Tablet and mobile ready customer login and shopping pages.</li>\r\n 	<li>Make club signup a breeze with our tablet signup kiosk.</li>\r\n 	<li>The software includes club signup, member choice / allocation, and account management.</li>\r\n 	<li>Below are links to these various component types.</li>\r\n</ul>\r\n[/icon_list]\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[gap height=\"75\" /]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<div style=\"margin-left: 10px;\">[ninzio_button text=\"Club Signup\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"https://www.secureclub.net/demodb_6/scenario.aspx?scenario=1\" /][ninzio_button text=\"Manage Account\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"https://www.secureclub.net/demodb_6/scenario.aspx?scenario=4\" /]\r\n\r\n[ninzio_button text=\"Member Choice / Allocation\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"https://www.secureclub.net/demodb_6/scenario.aspx?scenario=7\" /]\r\n\r\n[ninzio_button text=\"Shopping Cart\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"https://www.secureclub.net/demodb_6/scenario.aspx?scenario=5\" /]\r\n\r\n</div>\r\n[gap height=\"25\" /]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/one_third]\r\n[/fullbox]','Demonstration Ecommerce','','private','closed','closed','','demonstration','','','2024-06-12 13:30:13','2024-06-12 20:30:13','',0,'https://activeclubsolutions.net/?page_id=2766',0,'page','',0),
(2772,2,'2017-08-24 15:21:39','2017-08-24 22:21:39','[ACSScript server=TEST dbname=demodb_4]\r\n[ACSiFrame2 server=TEST dbname=demodb_4 scenario=5 fcridcart=FC0000001 fcridclub=FC0000003 usesession=yes waitcursor=ring.gif bottommargin=20 scrollpoint=1]\r\n\r\n','Demonstration Shopping Cart','','publish','closed','closed','','demo-shopping-cart','','','2021-10-07 05:57:56','2021-10-07 12:57:56','',2766,'https://activeclubsolutions.net/?page_id=2772',0,'page','',0),
(2774,2,'2017-08-24 16:44:43','2017-08-24 23:44:43','[ACSScript server=TEST dbname=demodb_4]\r\n[ACSiFrame2 server=TEST dbname=demodb_4 scenario=1 fcrid=FC0000002 waitcursor=ring.gif bottommargin=20 scrollpoint=1]\r\n','Demonstration Signup','','publish','closed','closed','','demo-signup','','','2021-10-19 10:46:28','2021-10-19 17:46:28','',2766,'https://activeclubsolutions.net/?page_id=2774',0,'page','',0),
(2776,2,'2017-08-24 16:55:38','2017-08-24 23:55:38','[ACSScript server=TEST dbname=demodb_4]\r\n[ACSiFrame2 server=TEST dbname=demodb_4 scenario=6 fcrid=FC0000002 usesession=yes waitcursor=ring.gif bottommargin=20 scrollpoint=1]\r\n','Demonstration Account Management','','publish','closed','closed','','demo-account-management','','','2021-10-19 10:45:06','2021-10-19 17:45:06','',2766,'https://activeclubsolutions.net/?page_id=2776',0,'page','',0),
(2782,2,'2017-08-29 19:50:09','2017-08-30 02:50:09','<!-- Start of Meetings Embed Script -->\r\n    <div style=\"margin-top: -60px;\" class=\"meetings-iframe-container\" data-src=\"http://app.hubspot.com/meetings/thomas35/active-club-demo?embed=true\"></div>\r\n    <script type=\"text/javascript\" src=\"http://static.hsappstatic.net/MeetingsEmbed/ex/MeetingsEmbedCode.js\"></script>\r\n\r\n<!-- End of Meetings Embed Script -->','Schedule a Demo<br>with Thomas Crouch','','publish','closed','closed','','schedule-demo-with-thomas','','','2017-08-29 20:26:16','2017-08-30 03:26:16','',2766,'https://activeclubsolutions.net/?page_id=2782',0,'page','',0),
(2787,2,'2017-09-12 16:15:58','2017-09-12 23:15:58','','integrations_11','','inherit','closed','closed','','integrations_11','','','2017-09-12 16:15:58','2017-09-12 23:15:58','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/09/integrations_11.png',0,'attachment','image/png',0),
(2793,2,'2017-09-21 20:36:17','0000-00-00 00:00:00','','widget_image','','draft','closed','closed','','','','','2017-09-21 20:36:17','0000-00-00 00:00:00','a:1:{s:12:\"_multiwidget\";i:1;}',0,'https://activeclubsolutions.net/?post_type=jetpack_migration&p=2793',0,'jetpack_migration','',0),
(2794,2,'2017-09-21 20:36:17','0000-00-00 00:00:00','','sidebars_widgets','','draft','closed','closed','','','','','2017-09-21 20:36:17','0000-00-00 00:00:00','a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:16:\"main-widget-area\";a:3:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:14:\"recent-posts-2\";}s:21:\"portfolio-widget-area\";a:0:{}s:15:\"faq-widget-area\";a:0:{}s:16:\"page-widget-area\";a:2:{i:0;s:6:\"text-6\";i:1;s:6:\"text-5\";}s:18:\"footer-widget-area\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:14:\"recent-posts-3\";i:3;s:6:\"text-4\";}s:16:\"shop-widget-area\";a:0:{}}',0,'https://activeclubsolutions.net/?post_type=jetpack_migration&p=2794',0,'jetpack_migration','',0),
(2795,2,'2017-09-21 22:24:48','2017-09-22 05:24:48','<div style=\"margin-top: -60px; \"></div>\r\n<div>[smartslider3 slider=4]</div>\r\n\r\n\r\n\r\n','Test Sliders','','publish','closed','closed','','test-sliders','','','2017-09-28 14:24:09','2017-09-28 21:24:09','',0,'https://activeclubsolutions.net/?page_id=2795',0,'page','',0),
(2806,2,'2017-09-22 18:31:00','2017-09-23 01:31:00','','running man_1','','inherit','closed','closed','','running-man_1','','','2017-09-22 18:31:00','2017-09-23 01:31:00','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/09/running-man_1.png',0,'attachment','image/png',0),
(2813,2,'2017-09-27 17:13:35','2017-09-28 00:13:35','','iPadProductDetail','','inherit','closed','closed','','ipadproductdetail','','','2017-09-27 17:13:35','2017-09-28 00:13:35','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/09/iPadProductDetail.png',0,'attachment','image/png',0),
(2816,2,'2017-09-28 14:48:17','2017-09-28 21:48:17','<div style=\"margin-top: -60px; \"></div>\r\n<div>[smartslider3 slider=4]</div>\r\n','Platform','','publish','closed','closed','','platform','','','2017-09-28 15:02:56','2017-09-28 22:02:56','',1435,'https://activeclubsolutions.net/?page_id=2816',0,'page','',0),
(2819,2,'2017-09-28 15:00:34','2017-09-28 22:00:34','','Why Active?','','publish','closed','closed','','platform','','','2020-09-18 11:18:18','2020-09-18 18:18:18','',1435,'https://activeclubsolutions.net/?p=2819',3,'nav_menu_item','',0),
(2820,2,'2017-09-28 21:17:23','2017-09-29 04:17:23','','handholdingglobe','','inherit','closed','closed','','handholdingglobe','','','2017-09-28 21:17:23','2017-09-29 04:17:23','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/09/handholdingglobe.png',0,'attachment','image/png',0),
(2824,2,'2017-09-28 22:39:36','2017-09-29 05:39:36','','handholdingglobe_3','','inherit','closed','closed','','handholdingglobe_3','','','2017-09-28 22:39:36','2017-09-29 05:39:36','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/09/handholdingglobe_3.png',0,'attachment','image/png',0),
(2852,2,'2017-10-03 23:07:50','2017-10-04 06:07:50','','goldengatenocars','','inherit','closed','closed','','goldengatenocars','','','2017-10-03 23:07:50','2017-10-04 06:07:50','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/10/goldengatenocars.png',0,'attachment','image/png',0),
(2856,2,'2017-10-11 14:32:00','2017-10-11 21:32:00','<p>Name (required)<br>\r\n    [text* your-name] </p>\r\n\r\n<p>Email (required)<br>\r\n    [email* your-email] </p>\r\n\r\n<p>Phone (required)<br>\r\n    [text* phone]</p>\r\n\r\n<p>Subject<br>\r\n    [text subject]</p>\r\n\r\n<p>Message (required)<br>\r\n    [textarea* message] </p>\r\n\r\n<p>Enter the characters below (required)<br>\r\n    [captchac captcha-32 size:s]<br>\r\n    [captchar captcha-32]</p>\r\n\r\n<p>[submit \"Send\"]</p>\n1\n[your-subject]\n[_site_title] <wordpress@activeclubsolutions.net>\ninfo@activeclubsolutions.net\n<span style=\"font-family: Calibri; font-size: 18px;\">\r\n\r\nFrom: [your-name] <[your-email]>\r\n\r\nPhone: [phone]\r\n\r\nSubject: [subject]\r\n\r\nMessage:\r\n\r\n[message]\r\n\r\n<hr>\r\n\r\nThis e-mail was sent from the ActiveClubSolutions.com \"Contact Us\" form\r\n\r\n<img src=\"http://secureclub.net/images/activeclubmgmt/Signupinwinery150.png\" />\r\n\r\n</span>\n\n\n1\n\n\nA message from Active Club Solutions regarding your demo request\nInfo@activeclubsolutions.net\n[your-email]\nMessage Body:\r\nThank you, we will contact you shortly.\r\n--\r\nThis e-mail was sent from a contact form on Active Club Solutions Wine Club Management Software Winery Vineyard Online Shopping Cart (https://activeclubsolutions.net)\n\n\n\n\nThank you! We will contact you shortly.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.','Contact Us_copy','','publish','closed','closed','','contact-us_copy','','','2021-08-31 14:55:10','2021-08-31 21:55:10','',0,'https://activeclubsolutions.net/?post_type=wpcf7_contact_form&#038;p=2856',0,'wpcf7_contact_form','',0),
(2857,2,'2017-10-11 15:23:12','2017-10-11 22:23:12','Activ8 Commerce is excited to announce the promotion of Dan Nechemias to the role of VP of Sales and Marketing.  As VP of Sales and Marketing, Dan Nechemias will continue to further expand awareness about the Active suite of products, while developing new channels and directing the efforts of the company’s sales and marketing team. For the past four years, Nechemias has overseen the development and expansion of Active’s services while doubling the client base.  Prior to Active, Nechemias served as Direct to Consumer Manager for Argyle Winery.  \r\n“With customers in 16 states and Canada, Active is known as the premier provider of DTC software.  Our technology, innovation and passion for customer service are unparalleled in the industry. I’m excited to lead our team in sharing the Active story with our customers in wine, beer, spirits and beyond,” says Nechemias. \r\n“Dan has done an excellent job guiding our development and expanding our customer base,” says Arne Haugland, President. “In his new role, Dan’s experience, creativity and energy will be invaluable in growing our reputation and reach.  As one of the first all-in-one DTC solutions, Active has a proven track record and best-in-class product and Dan will mobilize and enhance our expansion.”\r\nAbout Activ8 Commerce \r\nActiv8 Commerce publishes a direct sales suite of tools written specifically for the wine & alcohol related industries and offers a complete solution including software for tasting rooms, wholesale, wine club, shipping, inventory, ecommerce, and accounting.\r\nFounded in 2003, Activ8 Commerce has been providing a cloud sales database solution to wineries, distilleries, and wine stores. We got our start in wine club software and have been building on market requests ever since. Today the company has an entire suite of sales tools all in one single database.\r\nActiv8 Commerce’ commitment to developing and continually improving its sales software and service has made them a leading and well-respected provider of direct sales software with a commitment to quality and customer success.\r\n','Activ8 Commerce Names Dan Nechemias as VP of Sales and Marketing','','pending','closed','open','','active-club-solutions-names-dan-nechemias-vp-sales-marketing','','','2022-08-14 21:03:36','2022-08-15 04:03:36','',0,'https://activeclubsolutions.net/?p=2857',0,'post','',0),
(2860,2,'2017-10-13 18:10:22','2017-10-14 01:10:22','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"setup\">Welcome to Activ8 - Database Setup</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"Database Implementation Roadmap\"][ACSVimeo id=321179807/][/box]\r\n[box title=\"Inventory Data Import Review\"][ACSVimeo id=327415368/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Implementation Form\"][ACSVimeo id=319392464/][/box]\r\n[box title=\"Fixed S&H Rates Data Import Review\"][ACSVimeo id=327876016/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Customer Data Import Review\"][ACSVimeo id=326932380/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"pos\">POS Training</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"Introducing Activ8 POS\"][ACSVimeo id=297431840/][/box]\r\n[box title=\"POS New Orders and Checkout\"][ACSVimeo id=562303582/][/box]\r\n[box title=\"POS Pending Orders Explained\"][ACSVimeo id=277590163/][/box]\r\n[box title=\"POS Refunds\"][ACSVimeo id=567758807/][/box]\r\n\r\n[box title=\"POS Pickup List\"][ACSVimeo id=277590523/][/box]\r\n[box title=\"POS Add/Update Inventory\"][ACSVimeo id=549125634/][/box]\r\n[box title=\"POS Wholesale\"][ACSVimeo id=281212059/][/box]\r\n[box title=\"POS Gift Cards on POS\"][ACSVimeo id=563990647/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"POS Using the User\'s Guide\"][ACSVimeo id=277590603/][/box]\r\n[box title=\"POS Cash Drawers Explained\"][ACSVimeo id=547752271/][/box]\r\n[box title=\"POS Putting Packages on the POS\"][ACSVimeo id=277724865/][/box]\r\n[box title=\"POS Swaps\"][ACSVimeo id=277590501/][/box]\r\n\r\n\r\n[box title=\"POS Time Clock\"][ACSVimeo id=547751630/][/box]\r\n[box title=\"POS Schedules\"][ACSVimeo id=547750702/][/box]\r\n[box title=\"POS Display Inventory on POS\"][ACSVimeo id=278428753/][/box]\r\n[box title=\"POS Loyalty Points / Cards on POS\"][ACSVimeo id=562303740/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"POS Installation\"][ACSVimeo id=562303683/][/box]\r\n[box title=\"POS Making POS GPS Aware\"][ACSVimeo id=277590156/][/box]\r\n[box title=\"POS Open Tip Orders\"][ACSVimeo id=552230096/][/box]\r\n[box title=\"POS Partial and Split Payments\"][ACSVimeo id=563988890/][/box]\r\n\r\n[box title=\"POS Customers on POS\"][ACSVimeo id=549093490/][/box]\r\n[box title=\"POS Food Modifiers on the POS\"][ACSVimeo id=277727981/][/box]\r\n[box title=\"POS Inventory Transfers on POS\"][ACSVimeo id=278865226/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"Cloud\">Cloud Training</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"Introduction\"][ACSVimeo id=707078503/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Allocation\"][ACSVimeo id=770095795/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Sales Tool RFMP\"][ACSVimeo id=771885896/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Sending Text\"][ACSVimeo id=578594330/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Create Email Template\"][ACSVimeo id=702255574/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Image Library\"][ACSVimeo id=669275646/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"manager\">Manager Training</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"System Basics - Database\"][ACSVimeo id=277589907/][/box]\r\n[box title=\"Lesson 2 - The Merchant List\"][ACSVimeo id=277596897/][/box]\r\n[box title=\"Lesson 8 - Inventory\"][ACSVimeo id=287858431/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Understanding Data - Part 1\"][ACSVimeo id=277590081/][/box]\r\n[box title=\"Lesson 3 - Adding a Customer\"][ACSVimeo id=386391479/][/box]\r\n[box title=\"Sending Text\"][ACSVimeo id=578601736/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Lesson 1 - Menu and Tools\"][ACSVimeo id=277596856/][/box]\r\n[box title=\"Lesson 4 - Finding Database Records\"][ACSVimeo id=277597007/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"club\">Club Processing</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"Club Wizard\r\n-- Club Package\"][ACSVimeo id=277589741/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Club Wizard\r\n-- Member Choice / Allocation\"][ACSVimeo id=277589790/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Club Wizard\r\n-- Placeholder Member Choice / Allocation\"][ACSVimeo id=277589838/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"gift\">Loyalty Points and Gift Cards</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"Loyalty Points &amp; Cards\"][ACSVimeo id=291317578/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Gift Cards\"][ACSVimeo id=291592327/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"quickbooks\">QuickBooks Interface</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"QuickBooks Interface Setup\"][ACSVimeo id=277593044/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"QuickBooks Inventory Grouping\"][ACSVimeo id=277590131/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"QuickBooks Sales and Other Taxes\"][ACSVimeo id=661378889/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"QuickBooks Unearned Revenue\"][ACSVimeo id=660302973/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"mobile\">Mobile Dashboards</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"yes\"]\r\n[box title=\"Dashboards Demonstration\"][ACSVimeo id=277588721/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"scenarios\">Learn about Web Tools Application Scenarios</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"Design Templates\"][ACSVimeo id=346750007/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Club Signup - Account Management\"][ACSVimeo id=277588857/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Member Choice / Allocation / Futures\"][ACSVimeo id=277588884/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Online Shopping - Guest &amp; Member\"][ACSVimeo id=277588911/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Web Tools - Page Persistence\"][ACSVimeo id=301422527/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Web Tools - Password Retrieval and Reset\"][ACSVimeo id=303960951/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Online Shopping - Using Gift Cards\"][ACSVimeo id=294987696/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Web Tools - Email Newsletter\"][ACSVimeo id=308133399/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Web Tools - Club Signup Secrets\"][ACSVimeo id=309048103/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Web Tools - Email Unsubscribe\"][ACSVimeo id=305177473/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Digital Marketing on Mobile\"][ACSVimeo id=342617291/][/box] \r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"webtools\">Learn about Web Tools Application Implementation</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"WordPress DIY Example\"][ACSVimeo id=277588770/][/box]\r\n[box title=\"Example WordPress Site using Activ8 Plugin\"][ACSVimeo id=306121223/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Squarespace DIY Example\"][ACSVimeo id=277588814/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Facebook DIY Example\"][ACSVimeo id=277588736/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"inventory\">Wholesale Invoicing and Inventory Management</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"Inventory Management\"][ACSVimeo id=290204811/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Using Wholesale Invoicing in Manager\"][ACSVimeo id=277729878/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"email\">E-mail Creation and Tracking</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"Email Tracking\"][ACSVimeo id=277588967/][/box]\r\n[box title=\"Using Activ8 HTML Editor\"][ACSVimeo id=277589372/][/box]\r\n[box title=\"Marketing Tools - Revenue Analysis\"][ACSVimeo id=325803516/][/box]\r\n[box title=\"Marketing Tools - Email Automation\"][ACSVimeo id=360452312/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Email Compose &amp; Send\"][ACSVimeo id=277589305/][/box]\r\n[box title=\"Marketing Tools - Email Unsubscribe\"][ACSVimeo id=305177473/][/box]\r\n[box title=\"Digital Marketing on Mobile\"][ACSVimeo id=342617291/][/box] \r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Using Activ8 HTML Templates\"][ACSVimeo id=277589451/][/box]\r\n[box title=\"Marketing Tools - Email Analysis\"][ACSVimeo id=312341194/][/box]\r\n[box title=\"Marketing Tools - Email Newsletter\"][ACSVimeo id=308133399/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"extemail\">E-mail Creation and Tracking using External Tools</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"Using Constant Contact\"][ACSVimeo id=277589282/][/box]\r\n[box title=\"Using Vertical Response\"][ACSVimeo id=277589266/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"Using MailChimp\"][ACSVimeo id=277589350/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Using SocketLabs\"][ACSVimeo id=277589297/][/box]\r\n[/one_third]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n<h1 id=\"templates\">Email/Print HTML Report Writer and Templates</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"Using Activ8 HTML Report Templates Part 1\"][ACSVimeo id=277589474/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"Using Activ8 HTML Report Templates Part 2\"][ACSVimeo id=277589514/][/box]\r\n[/one_third]\r\n\r\n[/fullbox]','<span style=\"font-size:100%;margin-left:-600px;\">Video</span><br><span style=\"font-size:100%;margin-left:-600px;\">Tutorials</span>','','publish','closed','closed','','videotutorials','','','2022-11-16 22:38:54','2022-11-17 06:38:54','',0,'https://activeclubsolutions.net/?page_id=2860',0,'page','',0),
(2865,2,'2017-10-13 21:03:20','2017-10-14 04:03:20','','Video Tutorials','','publish','closed','closed','','video-tutorials','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=2865',33,'nav_menu_item','',0),
(2867,2,'2017-10-14 16:26:45','2017-10-14 23:26:45','','Tutorial_4','','inherit','closed','closed','','tutorial_4','','','2017-10-14 16:26:45','2017-10-14 23:26:45','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/10/Tutorial_4.png',0,'attachment','image/png',0),
(2868,2,'2017-10-14 16:38:31','2017-10-14 23:38:31','','Tutorial_5','','inherit','closed','closed','','tutorial_5','','','2017-10-14 16:38:31','2017-10-14 23:38:31','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/10/Tutorial_5.png',0,'attachment','image/png',0),
(2870,2,'2017-10-14 17:19:37','2017-10-15 00:19:37','','emailtracking_7','','inherit','closed','closed','','emailtracking_7','','','2017-10-14 17:19:37','2017-10-15 00:19:37','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/10/emailtracking_7.png',0,'attachment','image/png',0),
(2871,2,'2017-10-14 17:32:04','2017-10-15 00:32:04','','golfcourselarge','','inherit','closed','closed','','golfcourselarge','','','2017-10-14 17:32:04','2017-10-15 00:32:04','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/10/golfcourselarge.png',0,'attachment','image/png',0),
(2872,2,'2017-10-14 17:55:11','2017-10-15 00:55:11','','integrations_12','','inherit','closed','closed','','integrations_12','','','2017-10-14 22:39:48','2017-10-15 05:39:48','',1436,'https://activeclubsolutions.net/wp-content/uploads/2017/10/integrations_12.png',0,'attachment','image/png',0),
(2874,2,'2017-10-14 18:02:34','2017-10-15 01:02:34','','verticalresponse','','inherit','closed','closed','','verticalresponse','','','2017-10-14 18:07:46','2017-10-15 01:07:46','',1436,'https://activeclubsolutions.net/wp-content/uploads/2017/10/verticalresponse.png',0,'attachment','image/png',0),
(2875,2,'2017-10-14 18:04:00','2017-10-15 01:04:00','','socketlabs-medium','','inherit','closed','closed','','socketlabs-medium','','','2017-10-14 18:07:31','2017-10-15 01:07:31','',1436,'https://activeclubsolutions.net/wp-content/uploads/2017/10/socketlabs-medium.png',0,'attachment','image/png',0),
(2880,2,'2017-10-14 22:08:47','2017-10-15 05:08:47','','compliancebackground_1','','inherit','closed','closed','','compliancebackground_1','','','2017-10-14 22:08:47','2017-10-15 05:08:47','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/10/compliancebackground_1.png',0,'attachment','image/png',0),
(2881,2,'2017-10-14 22:20:09','2017-10-15 05:20:09','','compliancebackground_2','','inherit','closed','closed','','compliancebackground_2','','','2017-10-14 22:20:09','2017-10-15 05:20:09','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/10/compliancebackground_2.png',0,'attachment','image/png',0),
(2885,2,'2017-10-14 23:13:26','2017-10-15 06:13:26','','pricing','','inherit','closed','closed','','pricing','','','2017-10-14 23:13:26','2017-10-15 06:13:26','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/10/pricing.png',0,'attachment','image/png',0),
(2887,2,'2017-10-14 23:27:33','2017-10-15 06:27:33','','picewithmagnifyingglass','','inherit','closed','closed','','picewithmagnifyingglass','','','2017-10-14 23:27:33','2017-10-15 06:27:33','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/10/picewithmagnifyingglass.png',0,'attachment','image/png',0),
(2892,2,'2017-10-16 17:39:20','2017-10-17 00:39:20','Activ8 Commerce introduces new interfaces to:-\r\n\r\n<ul>\r\n<li>Constant Contact</li>\r\n<li>MailChimp</li>\r\n<li>SocketLabs</li>\r\n<li>Vertical Response</li>\r\n</ul>\r\n\r\nUse these interfaces with the Activ8 Compose & Send feature as well.\r\n','Activ8 Commerce introduces new interfaces to E-mail Marketing services','','pending','closed','open','','active-club-solutions-introduces-new-interfaces-e-mail-marketing-services','','','2022-08-14 21:03:36','2022-08-15 04:03:36','',0,'https://activeclubsolutions.net/?p=2892',0,'post','',0),
(2901,2,'2017-11-07 21:12:44','2017-11-08 05:12:44','<h2>Time clock</h2>\r\n<ul>\r\n<li>The staff can now clock in and out quickly using the POS</li>\r\n<li>Managers can edit any clock-in/clock-out record from the POS</li>\r\n</ul>\r\n<h2>Staff work schedule</h2>\r\n<ul>\r\n<li>We’ve added the ability to create a schedule for the staff to view on the iPad</li>\r\n<li>Managers can create and edit the schedule from the iPad</li>\r\n</ul>\r\n<h2>POS reporting</h2>\r\n<ul>\r\n<li>You can now print or e-mail the schedule or clock-in/clock-outs for a specified date range from the POS (Tools > Reports)</li>\r\n</ul>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"25\" /]\r\n[box target=\"_self _blank\" title=\"POS Time Clock Feature - VIDEO DEMO\" icon=\"\" icon_color=\"\" icon_back_color=\"\"][youtube id=\"m-eertGziE4\" width=\"\"/][/box]\r\n','Activ8 Commerce announces iPad POS Time Clock','','pending','closed','open','','active-club-solutions-announces-ipad-pos-time-clock','','','2022-08-14 21:03:36','2022-08-15 04:03:36','',0,'https://activeclubsolutions.net/?p=2901',0,'post','',0),
(2906,2,'2017-11-15 21:18:20','2017-11-16 05:18:20','<h2>Activ8 Commerce announces HTML Editor</h2>\r\n\r\nElevating Service & Maximizing Sales just got easier with Activ8\'s new html email editor.  No need for 3rd party software...segment lists, design, send and track right from Activ8 Manager.  Designing sharp focused emails couldn\'t be easier.\r\n\r\nWatch the video below to see how it works.\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"25\" /]\r\n[box target=\"_self _blank\" title=\"Using Active HTML Templates - VIDEO DEMO\" icon=\"\" icon_color=\"\" icon_back_color=\"\"][youtube id=\"m4guC13HMWY\" width=\"\"/][/box]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"25\" /]\r\n[box target=\"_self _blank\" title=\"Using Active HTML Editor - VIDEO DEMO\" icon=\"\" icon_color=\"\" icon_back_color=\"\"][youtube id=\"mt0oobIAM_U\" width=\"\"/][/box]','Activ8 Commerce announces HTML Editor','','pending','closed','open','','active-club-solutions-announces-html-editor','','','2022-08-14 21:03:36','2022-08-15 04:03:36','',0,'https://activeclubsolutions.net/?p=2906',0,'post','',0),
(2910,2,'2017-12-02 18:21:01','2017-12-03 02:21:01','','limecuda','','inherit','closed','closed','','limecuda','','','2017-12-02 18:21:01','2017-12-03 02:21:01','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/12/limecuda.png',0,'attachment','image/png',0),
(2913,2,'2017-12-05 21:41:21','2017-12-06 05:41:21','<h2>Activ8 Commerce announces HTML Report Writer</h2>\r\n\r\nActiv8\'s HTML Editor coupled with its HTML Report Writer empowers branded and stunning emails such as sales receipts, welcome letters,  membership letters, birthday cards and so many more email types.  Designing these emails couldn\'t be easier and is done right from Activ8 Manager.\r\n\r\nWatch the videos below to see how it works.\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"25\" /]\r\n[box target=\"_self _blank\" title=\"Using Active HTML Report Templates Part 1 - VIDEO DEMO\" icon=\"\" icon_color=\"\" icon_back_color=\"\"][youtube id=\"GME-n2tbnZo\" width=\"\"/][/box]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n[gap height=\"25\" /]\r\n[box target=\"_self _blank\" title=\"Using Active HTML Report Templates Part 2 - VIDEO DEMO\" icon=\"\" icon_color=\"\" icon_back_color=\"\"][youtube id=\"d5jamgy5Gog\" width=\"\"/][/box]\r\n','Activ8 Commerce announces HTML Report Writer','','pending','closed','open','','active-club-solutions-announces-html-report-writer','','','2022-08-14 21:03:36','2022-08-15 04:03:36','',0,'https://activeclubsolutions.net/?p=2913',0,'post','',0),
(2922,2,'2017-12-22 13:11:14','2017-12-22 21:11:14','','JoltStudios','','inherit','closed','closed','','joltstudios','','','2017-12-22 13:11:14','2017-12-22 21:11:14','',0,'https://activeclubsolutions.net/wp-content/uploads/2017/12/JoltStudios.png',0,'attachment','image/png',0),
(2929,2,'2018-01-03 16:12:19','2018-01-04 00:12:19','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n[one_third last=\"no\"]\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/01/Debbie-Klimeck.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/01/Debbie-Klimeck-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignnone size-medium wp-image-2933\" /></a>\r\n[/one_third]\r\n[two_thirds last=\"yes\"]\r\n\r\nPleasanton, CA – Activ8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, wine club software, ecommerce) since 2003, and is pleased to welcome Debbie Klimeck to the team, in a new role for the company, as Marketing Manager.\r\n\r\nAs Marketing Manager for ACS, Klimeck will perform a broad range of event planning, marketing, social media, public relations, and administrative duties in a dynamic, entrepreneurial environment to aid in the strategic growth of the business in support of the current nationwide team structure.\r\n\r\n<em>\"I am delighted to join the Activ8 Commerce team as marketing manager! In this role I am thrilled to share the Active story to better communicate and promote the cutting edge services that ACS provides. Active has an all-in-one DTC solution that can maximize sales for current and potential clients, creating “real time” win-win scenarios for all DTC channels in the wine and alcohol related sector,\"</em> says Klimeck.\r\n\r\nDebbie joins Activ8 Commerce after many years working a variety of roles in the wine industry, from the tasting room front lines, developing wine clubs, ecommerce and event programs, to GM of DTC, and winery DTC consulting roles. A graduate of Pacific Union College in the Napa Valley, where she earned a Bachelor’s of Science degree in Business Management, Debbie spent the early part of her career gaining experience in various aspects of the industry while focusing on DTC and pioneering best practices for club retail management. Since completing graduate school with an MBA in marketing from the University of Phoenix, Debbie has worked with DTC winery clients to include Chateau Montelena Winery, Artesa Winery, Bouchaine Vineyards, Clos du Val Winery, and Silver Oak Cellars. She has a unique perspective to assist the ACS team in further developing the business.\r\n\r\n<em>\"Debbie is a seasoned veteran of the Napa scene and we are excited to have her as a member of our team.\"</em> Dan Nechemias, VP of Sales and Marketing Activ8 Commerce\r\n\r\nAbout Activ8 Commerce:\r\n\r\nActiv8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, wine club software, ecommerce). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.\r\n\r\n\r\n[/two_thirds]\r\n[/fullbox]','Activ8 Commerce, Inc. Welcomes New Marketing Manager to Team','','pending','closed','open','','active-club-solutions-inc-welcomes-new-marketing-manager-team','','','2022-08-14 21:03:36','2022-08-15 04:03:36','',0,'https://activeclubsolutions.net/?p=2929',0,'post','',0),
(2933,10,'2018-01-03 16:27:57','2018-01-04 00:27:57','','Debbie Klimeck','','inherit','closed','closed','','debbie-klimeck','','','2018-01-03 16:42:01','2018-01-04 00:42:01','',2929,'https://activeclubsolutions.net/wp-content/uploads/2018/01/Debbie-Klimeck.jpg',0,'attachment','image/jpeg',0),
(2938,2,'2018-01-11 11:32:24','2018-01-11 19:32:24','','integrations_13','','inherit','closed','closed','','integrations_13','','','2018-01-11 11:32:24','2018-01-11 19:32:24','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/01/integrations_13.png',0,'attachment','image/png',0),
(2940,2,'2018-01-14 22:49:11','2018-01-15 06:49:11','','goldengatesunrise_1','','inherit','closed','closed','','goldengatesunrise_1','','','2018-01-14 22:49:11','2018-01-15 06:49:11','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/01/goldengatesunrise_1.png',0,'attachment','image/png',0),
(2942,2,'2018-01-14 22:59:21','2018-01-15 06:59:21','','goldengatesunrise_2','','inherit','closed','closed','','goldengatesunrise_2','','','2018-01-14 22:59:21','2018-01-15 06:59:21','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/01/goldengatesunrise_2.png',0,'attachment','image/png',0),
(2945,2,'2018-02-05 21:05:15','2018-02-06 05:05:15','<script id=\"CatalogScript\" ACSHost=\"http://www.secureclubcartca.net\" type=\"text/javascript\" src=\"http://www.secureclubcartca.net/testdb/js/cataloghost.js\"></script>\r\n<script>document.getElementsByTagName(\"BODY\")[0].onresize = function() {ACSResizeFrame()};</script>\r\n\r\n<div id=\"CatalogBasketDiv\" class=\"BasketFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogBasket\" class=\"BasketFrame\" src=\"http://www.secureclubcartca.net/testdb/catalogbasket.aspx?wcrshopid=wc0000014&amp;wcripadshopid=wc0000014\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMessageDiv\" class=\"MsgFrameDiv\" style=\"display: none;\">\r\n<iframe id=\"CatalogMessage\" class=\"MsgFrame\" src=\"http://www.secureclubcartca.net/testdb/catalogmessage.aspx?wcrshopid=wc0000014&amp;wcripadshopid=wc0000014\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMenuDiv\" class=\"MenuFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogMenu\" class=\"MenuFrame\" src=\"http://www.secureclubcartca.net/testdb/catalogmenu.aspx?wcrshopid=wc0000014&amp;wcripadshopid=wc0000014\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"ACSWaitCursor\" style=\"position: fixed; display: inline-block; left: 45%; margin-top: -108px; z-index: 99;\">\r\n   <img src=\"http://www.secureclub.net/images/activeclub/winepour.gif\"/>\r\n</div>\r\n\r\n<div id=\"ManageDiv\" class=\"ManageFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"Manage\" class=\"ManageFrame\" src=\"http://www.secureclubcartca.net/testdb/manage.aspx?wcrshopid=wc0000014&amp;wcripadshopid=wc0000014\" ACSHost=\"http://www.secureclubcartca.net\" ACSScrollPoint=\"100\" ACSBottomMargin=\"20\" ACSMasterFrame=\"1\"></iframe>\r\n</div>\r\n\r\n<div id=\"SelectionDiv\" class=\"SelectionFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"Selection\" class=\"SelectionFrame\" src=\"http://www.secureclubcartca.net/testdb/selection.aspx?wcrshopid=wc0000014&amp;wcripadshopid=wc0000014\" ACSHost=\"http://www.secureclubcartca.net\" ACSScrollPoint=\"100\"  ACSBottomMargin=\"20\"></iframe>\r\n</div>\r\n','Video - Member Choice / Allocation','','publish','closed','closed','','video-choice-allocation','','','2018-02-13 17:54:35','2018-02-14 01:54:35','',0,'https://activeclubsolutions.net/?page_id=2945',0,'page','',0),
(2948,2,'2018-02-06 16:45:02','2018-02-07 00:45:02','<div class=\"ACSLoginDiv\" onclick=\"ACSLoginClicked();\"><span id=\"ACSLogin\" class=\"ACSLogin\">Member Login</span></div>\r\n\r\n[ACSScript server=CA dbname=MitchellKatz]\r\n[ACSiFrame server=CA dbname=MitchellKatz scenario=2 fcrid=FC0000001 waitcursor=winepour.gif bottommargin=20 scrollpoint=135 cursortopmargin=-23]','Mitchell Katz','','publish','closed','closed','','mkatz','','','2018-08-03 16:37:54','2018-08-03 23:37:54','',0,'https://activeclubsolutions.net/?page_id=2948',0,'page','',0),
(2950,2,'2018-02-06 16:51:50','2018-02-07 00:51:50','[ACSScript server=CA dbname=RedcarWine]\r\n[ACSiFrame server=CA dbname=RedcarWine scenario=6 usesession=yes fcridcart=FC0000005 fcridclub=FC0000008  bottommargin=20 scrollpoint=55 cursortopmargin=1]\r\n\r\n','Red Car Style Napa','','publish','closed','closed','','palouse-sample','','','2019-02-25 20:27:24','2019-02-26 04:27:24','',0,'https://activeclubsolutions.net/?page_id=2950',0,'page','',0),
(2957,2,'2018-02-12 20:42:56','2018-02-13 04:42:56','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h1>Responsive Ecommerce for Wineries</h1>\r\n<h1>Placeholder Member Choice / Allocation for Wineries</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nPlease select the club shipment you need to configure.\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[ninzio_button text=\"Winter Selection\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/video-demonstration-placeholder-club/video-placeholders-winter-selections/\" /]\r\n\r\n[ninzio_button text=\"Spring Selection\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/video-demonstration-placeholder-club/video-placeholders-spring-selections/\" /]\r\n\r\n[ninzio_button text=\"Summer Selection\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/video-demonstration-placeholder-club/video-placeholders-summer-selections/\" /]\r\n\r\n[ninzio_button text=\"Autumn Selection\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/video-demonstration-placeholder-club/video-placeholders-autumn-selections/\" /]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"25\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<img class=\"alignnone aligncenter\" src=\"https://activeclubsolutions.net/wp-content/uploads/2017/02/Signupinwinery_2.png\" alt=\"active club solutions signup kiosk registration account management ipad tablet\" width=\"650\" height=\"433\" />\r\n\r\n[/one_third]\r\n\r\n[/fullbox]','Video<br>Member Choice / Allocation<br>Placeholder Clubs','','publish','closed','closed','','video-placeholder-club','','','2018-02-13 21:41:54','2018-02-14 05:41:54','',0,'https://activeclubsolutions.net/?page_id=2957',0,'page','',0),
(2959,2,'2018-02-13 17:20:40','2018-02-14 01:20:40','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h1>Responsive Ecommerce for Wineries</h1>\r\n<h1>Placeholder Member Choice / Allocation for Wineries</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nPlease select the club shipment you need to configure.\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n\r\n[ninzio_button text=\"Winter Selection\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/video-demonstration-placeholder-club/video-placeholders-winter-selections/\" /]\r\n\r\n[ninzio_button text=\"Spring Selection\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/video-demonstration-placeholder-club/video-placeholders-spring-selections/\" /]\r\n\r\n[ninzio_button text=\"Summer Selection\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/video-demonstration-placeholder-club/video-placeholders-summer-selections/\" /]\r\n\r\n[ninzio_button text=\"Autumn Selection\" size=\"small\" target=\"_self _blank\" icon=\"icon name\" back_color=\"\" color=\"\" href=\"/video-demonstration-placeholder-club/video-placeholders-autumn-selections/\" /]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"25\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<img class=\"alignnone aligncenter\" src=\"https://activeclubsolutions.net/wp-content/uploads/2017/02/Signupinwinery_2.png\" alt=\"active club solutions signup kiosk registration account management ipad tablet\" width=\"650\" height=\"433\" />\r\n\r\n[/one_third]\r\n\r\n[/fullbox]','Video - Demonstration<br>Placeholder Club','','publish','closed','closed','','video-demonstration-placeholder-club','','','2018-02-13 21:28:46','2018-02-14 05:28:46','',0,'https://activeclubsolutions.net/?page_id=2959',0,'page','',0),
(2964,2,'2018-02-13 18:01:43','2018-02-14 02:01:43','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h1>Responsive Ecommerce for Wineries</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"10\" /]\r\n<h1><b><span style=\"color: #3a92aa;\">Winter Selections</span></b></h1>\r\n[splitter type=\"textured\" color=\"\" top=\"5\" bottom=\"25\" /]\r\n\r\n<script id=\"CatalogScript\" ACSHost=\"http://www.secureclubcartca.net\" type=\"text/javascript\" src=\"http://www.secureclubcartca.net/marketing/js/cataloghost.js\"></script>\r\n<script>document.getElementsByTagName(\"BODY\")[0].onresize = function() {ACSResizeFrame()};</script>\r\n\r\n<div id=\"CatalogBasketDiv\" class=\"BasketFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogBasket\" class=\"BasketFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogbasket.aspx?wcrshopid=wc0000015&amp;wcripadshopid=wc0000015\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMessageDiv\" class=\"MsgFrameDiv\" style=\"display: none;\">\r\n<iframe id=\"CatalogMessage\" class=\"MsgFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogmessage.aspx?wcrshopid=wc0000015&amp;wcripadshopid=wc0000015\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMenuDiv\" class=\"MenuFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogMenu\" class=\"MenuFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogmenu.aspx?wcrshopid=wc0000015&amp;wcripadshopid=wc0000015\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"ACSWaitCursor\" style=\"position: fixed; display: inline-block; left: 33%; margin-top: -108px; z-index: 99;\">\r\n   <img src=\"http://www.secureclub.net/images/activeclub/winepour.gif\"/>\r\n</div>\r\n\r\n<div id=\"SelectionDiv\" class=\"SelectionFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"Selection\" class=\"SelectionFrame\" src=\"http://www.secureclubcartca.net/marketing/selection.aspx?wcrshopid=wc0000015&amp;wcripadshopid=wc0000015\" ACSHost=\"http://www.secureclubcartca.net\" ACSScrollPoint=\"100\"  ACSBottomMargin=\"20\"></iframe>\r\n</div>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n   <li><strong><a title=\"Video - Placeholder Clubs - Example\" href=\"/video-demonstration-placeholder-club/\">Video - Placeholder Clubs - Example</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<img class=\"alignnone aligncenter\" src=\"https://activeclubsolutions.net/wp-content/uploads/2017/02/Signupinwinery_2.png\" alt=\"active club solutions signup kiosk registration account management ipad tablet\" width=\"650\" height=\"433\" />\r\n\r\n[/one_third]\r\n\r\n[/fullbox]','Video - Placeholders for Winter Selections','','publish','closed','closed','','video-placeholders-winter-selections','','','2018-02-19 21:51:52','2018-02-20 05:51:52','',2959,'https://activeclubsolutions.net/?page_id=2964',0,'page','',0),
(2966,2,'2018-02-13 18:45:59','2018-02-14 02:45:59','','WinterVineyard','','inherit','closed','closed','','wintervineyard','','','2018-02-13 18:45:59','2018-02-14 02:45:59','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/02/WinterVineyard.png',0,'attachment','image/png',0),
(2967,2,'2018-02-13 20:38:51','2018-02-14 04:38:51','','SpringVineyard','','inherit','closed','closed','','springvineyard','','','2018-02-13 20:38:51','2018-02-14 04:38:51','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/02/SpringVineyard.png',0,'attachment','image/png',0),
(2968,2,'2018-02-13 20:45:50','2018-02-14 04:45:50','','SummerVineyard','','inherit','closed','closed','','summervineyard','','','2018-02-13 20:45:50','2018-02-14 04:45:50','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/02/SummerVineyard.png',0,'attachment','image/png',0),
(2969,2,'2018-02-13 20:51:20','2018-02-14 04:51:20','','AutumnVineyard','','inherit','closed','closed','','autumnvineyard','','','2018-02-13 20:51:20','2018-02-14 04:51:20','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/02/AutumnVineyard.png',0,'attachment','image/png',0),
(2971,2,'2018-02-13 21:04:34','2018-02-14 05:04:34','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h1>Responsive Ecommerce for Wineries</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"10\" /]\r\n<h1><b><span style=\"color: #3a92aa;\">Spring Selections</span></b></h1>\r\n[splitter type=\"textured\" color=\"\" top=\"5\" bottom=\"25\" /]\r\n\r\n<script id=\"CatalogScript\" ACSHost=\"http://www.secureclubcartca.net\" type=\"text/javascript\" src=\"http://www.secureclubcartca.net/marketing/js/cataloghost.js\"></script>\r\n<script>document.getElementsByTagName(\"BODY\")[0].onresize = function() {ACSResizeFrame()};</script>\r\n\r\n<div id=\"CatalogBasketDiv\" class=\"BasketFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogBasket\" class=\"BasketFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogbasket.aspx?wcrshopid=wc0000016&amp;wcripadshopid=wc0000016\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMessageDiv\" class=\"MsgFrameDiv\" style=\"display: none;\">\r\n<iframe id=\"CatalogMessage\" class=\"MsgFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogmessage.aspx?wcrshopid=wc0000016&amp;wcripadshopid=wc0000016\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMenuDiv\" class=\"MenuFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogMenu\" class=\"MenuFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogmenu.aspx?wcrshopid=wc0000016&amp;wcripadshopid=wc0000016\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"ACSWaitCursor\" style=\"position: fixed; display: inline-block; left: 33%; margin-top: -108px; z-index: 99;\">\r\n   <img src=\"http://www.secureclub.net/images/activeclub/winepour.gif\"/>\r\n</div>\r\n\r\n<div id=\"SelectionDiv\" class=\"SelectionFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"Selection\" class=\"SelectionFrame\" src=\"http://www.secureclubcartca.net/marketing/selection.aspx?wcrshopid=wc0000016&amp;wcripadshopid=wc0000016\" ACSHost=\"http://www.secureclubcartca.net\" ACSScrollPoint=\"10\"  ACSBottomMargin=\"20\"></iframe>\r\n</div>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n   <li><strong><a title=\"Video - Placeholder Clubs - Example\" href=\"/video-demonstration-placeholder-club/\">Video - Placeholder Clubs - Example</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<img class=\"alignnone aligncenter\" src=\"https://activeclubsolutions.net/wp-content/uploads/2017/02/Signupinwinery_2.png\" alt=\"active club solutions signup kiosk registration account management ipad tablet\" width=\"650\" height=\"433\" />\r\n\r\n[/one_third]\r\n\r\n[/fullbox]','Video - Placeholders for Spring Selections','','publish','closed','closed','','video-placeholders-spring-selections','','','2018-02-19 21:53:55','2018-02-20 05:53:55','',2959,'https://activeclubsolutions.net/?page_id=2971',0,'page','',0),
(2974,2,'2018-02-13 21:10:20','2018-02-14 05:10:20','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h1>Responsive Ecommerce for Wineries</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"10\" /]\r\n<h1><b><span style=\"color: #3a92aa;\">Summer Selections</span></b></h1>\r\n[splitter type=\"textured\" color=\"\" top=\"5\" bottom=\"25\" /]\r\n\r\n<script id=\"CatalogScript\" ACSHost=\"http://www.secureclubcartca.net\" type=\"text/javascript\" src=\"http://www.secureclubcartca.net/marketing/js/cataloghost.js\"></script>\r\n<script>document.getElementsByTagName(\"BODY\")[0].onresize = function() {ACSResizeFrame()};</script>\r\n\r\n<div id=\"CatalogBasketDiv\" class=\"BasketFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogBasket\" class=\"BasketFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogbasket.aspx?wcrshopid=wc0000017&amp;wcripadshopid=wc0000017\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMessageDiv\" class=\"MsgFrameDiv\" style=\"display: none;\">\r\n<iframe id=\"CatalogMessage\" class=\"MsgFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogmessage.aspx?wcrshopid=wc0000017&amp;wcripadshopid=wc0000017\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMenuDiv\" class=\"MenuFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogMenu\" class=\"MenuFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogmenu.aspx?wcrshopid=wc0000017&amp;wcripadshopid=wc0000017\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"ACSWaitCursor\" style=\"position: fixed; display: inline-block; left: 33%; margin-top: -108px; z-index: 99;\">\r\n   <img src=\"http://www.secureclub.net/images/activeclub/winepour.gif\"/>\r\n</div>\r\n\r\n<div id=\"SelectionDiv\" class=\"SelectionFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"Selection\" class=\"SelectionFrame\" src=\"http://www.secureclubcartca.net/marketing/selection.aspx?wcrshopid=wc0000017&amp;wcripadshopid=wc0000017\" ACSHost=\"http://www.secureclubcartca.net\" ACSScrollPoint=\"10\"  ACSBottomMargin=\"20\"></iframe>\r\n</div>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n   <li><strong><a title=\"Video - Placeholder Clubs - Example\" href=\"/video-demonstration-placeholder-club/\">Video - Placeholder Clubs - Example</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<img class=\"alignnone aligncenter\" src=\"https://activeclubsolutions.net/wp-content/uploads/2017/02/Signupinwinery_2.png\" alt=\"active club solutions signup kiosk registration account management ipad tablet\" width=\"650\" height=\"433\" />\r\n\r\n[/one_third]\r\n\r\n[/fullbox]','Video - Placeholders for Summer Selections','','publish','closed','closed','','video-placeholders-summer-selections','','','2018-02-19 21:53:05','2018-02-20 05:53:05','',2959,'https://activeclubsolutions.net/?page_id=2974',0,'page','',0),
(2976,2,'2018-02-13 21:12:52','2018-02-14 05:12:52','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h1>Responsive Ecommerce for Wineries</h1>\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"10\" /]\r\n<h1><b><span style=\"color: #3a92aa;\">Autumn Selections</span></b></h1>\r\n[splitter type=\"textured\" color=\"\" top=\"5\" bottom=\"25\" /]\r\n\r\n<script id=\"CatalogScript\" ACSHost=\"http://www.secureclubcartca.net\" type=\"text/javascript\" src=\"http://www.secureclubcartca.net/marketing/js/cataloghost.js\"></script>\r\n<script>document.getElementsByTagName(\"BODY\")[0].onresize = function() {ACSResizeFrame()};</script>\r\n\r\n<div id=\"CatalogBasketDiv\" class=\"BasketFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogBasket\" class=\"BasketFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogbasket.aspx?wcrshopid=wc0000018&amp;wcripadshopid=wc0000018\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMessageDiv\" class=\"MsgFrameDiv\" style=\"display: none;\">\r\n<iframe id=\"CatalogMessage\" class=\"MsgFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogmessage.aspx?wcrshopid=wc0000018&amp;wcripadshopid=wc0000018\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"CatalogMenuDiv\" class=\"MenuFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogMenu\" class=\"MenuFrame\" src=\"http://www.secureclubcartca.net/marketing/catalogmenu.aspx?wcrshopid=wc0000018&amp;wcripadshopid=wc0000018\" ACSHost=\"http://www.secureclubcartca.net\"></iframe>\r\n</div>\r\n\r\n<div id=\"ACSWaitCursor\" style=\"position: fixed; display: inline-block; left: 33%; margin-top: -108px; z-index: 99;\">\r\n   <img src=\"http://www.secureclub.net/images/activeclub/winepour.gif\"/>\r\n</div>\r\n\r\n<div id=\"SelectionDiv\" class=\"SelectionFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"Selection\" class=\"SelectionFrame\" src=\"http://www.secureclubcartca.net/marketing/selection.aspx?wcrshopid=wc0000018&amp;wcripadshopid=wc0000018\" ACSHost=\"http://www.secureclubcartca.net\" ACSScrollPoint=\"10\"  ACSBottomMargin=\"20\"></iframe>\r\n</div>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n   <li><strong><a title=\"Video - Placeholder Clubs - Example\" href=\"/video-demonstration-placeholder-club/\">Video - Placeholder Clubs - Example</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<img class=\"alignnone aligncenter\" src=\"https://activeclubsolutions.net/wp-content/uploads/2017/02/Signupinwinery_2.png\" alt=\"active club solutions signup kiosk registration account management ipad tablet\" width=\"650\" height=\"433\" />\r\n\r\n[/one_third]\r\n\r\n[/fullbox]','Video - Placeholders for Autumn Selections','','publish','closed','closed','','video-placeholders-autumn-selections','','','2018-02-19 21:54:47','2018-02-20 05:54:47','',2959,'https://activeclubsolutions.net/?page_id=2976',0,'page','',0),
(2980,2,'2018-02-18 17:43:27','2018-02-19 01:43:27','<p>Name (required)<br/>\r\n    [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br/>\r\n    [email* your-email] </p>\r\n\r\n<p>Phone (required)<br/>\r\n    [text* phone] </p>\r\n\r\n<p>Company (required)<br/>\r\n    [text* company] </p>\r\n\r\n<p>Where did you find us<br/>\r\n    [select* source \"Advertisement\" \"Google\" \"Mailing\" \"Referral\" \"Social Media\"]\r\n</p>\r\n\r\n<p>[submit \"Send\"]</p>\n1\nActive Club Solutions: DEMO REQUEST\n[_site_title] <wordpress@activeclubsolutions.net>\ninfo@activeclubsolutions.net\n<span style=\"font-family: Calibri; font-size: 18px;\">\r\n\r\nSubject: Demo Request\r\n\r\nFrom: [your-name] <[your-email]>\r\n\r\nEmail: [your-email]\r\n\r\nCompany: [company]\r\n\r\nPhone: [phone]\r\n\r\nThe above person requests a demo.\r\n\r\n<hr>\r\n\r\nThis e-mail was sent from the ActiveClubSolutions.com \"Demo Request\" form\r\n\r\n<img src=\"http://secureclub.net/images/activeclubmgmt/Signupinwinery150.png\" />\r\n\r\n</span>\n\n\n1\n\n\n[your-subject]\n[your-name] <[your-email]>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Active Club Solutions Wine Club Management Software Winery Vineyard Online Shopping Cart (https://activeclubsolutions.net)\n\n\n\n\nThank you! We will contact you shortly.\nMessage Failed. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm all fields are correct and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.','Request a Demo_copy','','publish','closed','closed','','request-a-demo_copy','','','2021-08-31 14:55:39','2021-08-31 21:55:39','',0,'https://activeclubsolutions.net/?post_type=wpcf7_contact_form&#038;p=2980',0,'wpcf7_contact_form','',0),
(2991,2,'2018-03-11 18:37:50','2018-03-12 01:37:50','<b>Wine Club Terms and Conditions</b>\r\n\r\nWelcome! Thank you for becoming a part of the Activ8 Wine Club. To help you make the most of your membership please take a moment to familiarize yourself with all the policies regarding your membership.\r\n\r\nThere is no fee to join the Activ8 Wine club and you may sign up anytime online, via phone or by visiting the tasting room. As a member you agree to all terms and conditions of membership.\r\n\r\nBy becoming a member you verify that you or the recipient of the club is at least 21 years of age. You authorize Activ8 to charge your credit card four times per year (February, May, September, November) for a minimum of two club shipments.\r\n\r\nClub wines for Cuvée Club and Active Cuvée Club are allocated and cannot be changed. However you are welcome to add other wines to your club shipment using your discount and save on shipping costs provided the order is placed prior to the club being processed. Tête de Cuvée members may choose their club wines after the first shipment and from a list of vintage sparkling wines and single vineyard/reserve estate varietal wines.\r\n\r\n<b>Notifications</b>\r\n\r\nYou will receive an email two weeks prior to each club shipment noting important dates and details of your shipment. It is the member’s responsibility to notify Activ8 of any changes to credit card, billing/shipping address, club tier, or in the case of Tête de Cuvée members your wine choice, prior to the billing date noted in the email. Unfortunately, we are unable to make any changes after billing.\r\n\r\n<b>Billing</b>\r\n\r\nThe club releases will be charged to the credit card on file the first business day of a club month (February, May, September, November). It is your obligation to update your credit card information online or by phone (877-441-CLUB) prior to the billing date. In addition, any address changes must be made in writing to info@activeclubsolutions.com or phone (877-441-CLUB) at least 5 days prior to this billing. Activ8 is not responsible for shipping charges incurred due to misdirected or returned shipments or changes made after the deadline. If a club shipment is returned for an incorrect address or three failed delivery attempts you will be responsible for the additional cost of reshipping or a restocking fee of $25.\r\n\r\nClub wine purchases, tax, and shipping are non-refundable once they have been processed. Costs may change without notice.\r\n\r\n<b>Shipping</b>\r\n\r\nWe have negotiated the lowest shipping costs available and are pleased to pass the savings on to our members. Flat rate shipping charges for all club tiers are available for the contiguous United States. Due to federal law requiring all wine shipments to be signed for by a person at least 21 years of age, a daytime delivery address, preferably a business address, is requested. Shipments are handled by UPS or FedEx and cannot be delivered to PO, FPO, APO or IPO boxes. Returned or refused shipments will incur additional fees.\r\n\r\nWe ship to the following states: AK, AZ, CA, CO, CT, DC, FL, GA, ID, IL, IN, IA, KS, LA, MA, MD, MI, MN, NC, ND, NE, NJ*, NM, NV, OH, OR, PA, SC, SD, TN, TX, VA, VT, WA, WI, WY. Sorry, we cannot ship internationally at this time.\r\n\r\n*New Jersey clubs ship via the three tier system and will take approximately 2-3 weeks for delivery after billing. It is not possible to reroute these shipments once it leaves the warehouse.\r\n\r\nFor more information on shipping please visit our Where We Ship page.\r\n\r\n<b>Winery Pick Up</b>\r\n\r\nDue to space constraints at the tasting room, picking up your club release is available on a limited basis and to a limited number of members. If you wish to be a will call member your name will be added to the wait list upon signup and you will be contacted as space permits.\r\n\r\nWill call members are required to pick up their club wines within 30 days of billing. If you are unable to pick up in that time frame you must call 877-441-CLUB or email wineclub@gloriaferrer.com to make other arrangements prior to the 30 day requirement. If a club release is not picked up within the 30 day period, and no prior arrangements have been made, the wines will be carefully packed and shipped the following week to the billing address on file for an additional charge.\r\n\r\nIf you miss picking up two shipments you will automatically be switched to permanent shipping.\r\n\r\n<b>Substitutions</b>\r\n\r\nWe understand that you may prefer certain wines over others; however, we encourage you to try the winemaker’s selections as they reflect the high quality and house style you expect from Activ8, and are generally of limited production. If you have any questions regarding the selected wines in your shipment please contact the wine club team prior to the billing date.\r\n\r\n<b>Holds and Cancellations</b>\r\n\r\nYou may place your membership “on hold” for one shipment per calendar year with a written notice to wineclub@gloriaferrer.com at least 5 days prior to a club month. Please note that a hold on your membership also suspends all club benefits.\r\n\r\nRequests to cancel your membership can be made after you have received two club shipments and with a 14 day cancellation notice to wineclub@gloriaferrer.com or call to 877-441-CLUB. If the 14 day cancellation period occurs during a scheduled club month (February, May, September, November), that shipment will be processed and shipped as your final. All wine purchases, tax and shipping are non-refundable after processing and early cancellations may result in a $100 cancellation fee.\r\n\r\n<b>Sharing Your Club Benefits</b>\r\n\r\nDue to system constraints we are only able to have one name and one corresponding email on the membership. Benefits are not transferable. However if you have family or friends who would like to visit the winery when you are not present you may request up to four guest passes per calendar year. These passes will give the bearer access to the club member area of the tasting room, a complimentary glass of wine or flight and a 20% discount on all wine purchases. Please call 877-441-CLUB (866-845-6742) or email wineclub@gloriaferrer.com at least two weeks in advance to have the passes emailed to you.\r\n\r\n<b>Referral Program</b>\r\n\r\nOur members are our best advocates and we encourage them to refer their friends as members. We have updated our referral program to better benefit current members for those referrals. With each new membership that has a current member’s name as the referrer, the current member will earn a $25 credit towards a Activ8 bottle purchase. Once the wine club team reviews the new member’s application, a code will be emailed to the referring member to use in our online store, over the phone or in the tasting room. If the referring member is present in the tasting room when the new member signs up, the credit may be used immediately. The $25 credit is a one-time use credit only for purchase of bottles of wine (not valid for glasses/flights/shipping/club shipments). If the full $25 is not used on one purchase any remaining credit amount will be forfeited. Referrals cannot be for multiple people in the same household. To receive the credit the current member (the one who is referring someone else) must be in good standing and have taken at least one club release. This program is subject to change without notice.\r\n\r\nWe hope you find your membership enjoyable. If we can be of further assistance, please contact the team at info@activeclubsolutions.com or 877-441-CLUB.','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2020-05-07 12:21:54','2020-05-07 19:21:54','',0,'https://activeclubsolutions.net/?page_id=2991',0,'page','',0),
(3005,2,'2018-03-13 23:36:55','2018-03-14 06:36:55','','examplecarts','','inherit','closed','closed','','examplecarts','','','2018-03-13 23:36:55','2018-03-14 06:36:55','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/03/examplecarts.png',0,'attachment','image/png',0),
(3006,2,'2018-03-13 23:38:07','2018-03-14 06:38:07','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"20\"]\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"25\" /]\r\n<div style=\"margin-top: 0px; width: 100%;\">\r\n\r\n<table style=\"text-align: center; width: 100%;\">\r\n<tr>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.bremerfamilywinery.com/sites/default/files/images/bremerseal.png\" width=\"100\" height=\"100\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://nottinghamcellars.com/wp-content/themes/nc2014/assets/img/NC-logo-brand.svg\" width=\"200\" height=\"200\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclubtx.net/images/stonehaus/stonehaus.png\" width=\"150\" height=\"150\" class=\"alignnone size-NinzioHalf\" />\r\n</td></tr><tr><td>\r\n<h2>Bremer Family Vineyards</h2>\r\n</td><td>\r\n<h2>Nottingham Cellars</h2>\r\n</td><td>\r\n<h2>Stonehaus Winery</h2>\r\n</td></tr><tr><td>\r\n<a target=\"_blank\" href=\"http://www.bremerfamilywinery.com/wine\">Bremer Winery Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://nottinghamcellars.com/shop/\">Nottingham Cellars Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://www.stonehauswinery.com/shop/\">Stonehaus Winery Cart</a>\r\n</td>\r\n</tr>\r\n\r\n<tr><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td></tr>\r\n<tr>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.quailsgate.com/wp-content/uploads/2017/02/QG-OKVALLEY-logo.svg\" width=\"200\" height=\"200\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclub.net/images/jigarwines/jigarwines_logo.jpg\" width=\"100\" height=\"100\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://palousewinery.com/wp-content/uploads/2016/05/logo_red_2.png\" width=\"200\" height=\"200\" class=\"alignnone size-NinzioHalf\" />\r\n</td></tr><tr><td>\r\n<h2>Quails\' Gates</h2>\r\n</td><td>\r\n<h2>Jigar Wines</h2>\r\n</td><td>\r\n<h2>Palouse Winery</h2>\r\n</td></tr><tr><td>\r\n<a target=\"_blank\" href=\"http://www.quailsgate.com/store/\">Quail\'s Gate Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://jigarwines.com/wine-shop/\">Jigar Wines Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://www.palousewinery.com/active-club-shopping-cart/\">Palouse Winery Cart</a>\r\n</td>\r\n</tr>\r\n\r\n<tr><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td></tr>\r\n<tr>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclubwa.net/images/dustedvalley/Dusted_poslogo.jpg\" width=\"150\" height=\"150\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclub.net/images/rubyhillwinery/rubyhill_logo.png\" width=\"150\" height=\"150\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclub.net/images/rubinoestates/rubino_logo.jpg\" width=\"150\" height=\"150\" class=\"alignnone size-NinzioHalf\" />\r\n</td></tr><tr><td>\r\n<h2>Dusted Valley</h2>\r\n</td><td>\r\n<h2>Ruby Hill Winery</h2>\r\n</td><td>\r\n<h2>Rubino Estates Winery</h2>\r\n</td></tr><tr><td>\r\n<a target=\"_blank\" href=\"http://www.dustedvalley.com/shop/\">Dusted Valley Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://rubyhillwinery.net/shop/\">Ruby Hill Winery Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://www.rubinoestateswinery.com/shop/\">Rubino Estates Winery Cart</a>\r\n</td>\r\n</tr>\r\n\r\n<tr><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td></tr>\r\n<tr>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://augustbriggswinery.com/wp-content/uploads/2016/11/logo-7.png\" width=\"100\" height=\"100\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclubwa.net/images/saffronfields/saffronfields_logo.png\" width=\"100\" height=\"100\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclub.net/images/heringer/heringer_logo.png\" width=\"100\" height=\"100\" class=\"alignnone size-NinzioHalf\" />\r\n</td></tr><tr><td>\r\n<h2>August Briggs Winery</h2>\r\n</td><td>\r\n<h2>Saffron Fields Vineyards</h2>\r\n</td><td>\r\n<h2>Heringer Estates </h2>\r\n</td></tr><tr><td>\r\n<a target=\"_blank\" href=\"http://augustbriggswinery.com/wines/\">August Briggs Winery Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://saffronfields.com/shop/\">Saffron Fields Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://heringerestates.com/wines/\">Heringer Estates Cart</a>\r\n</td>\r\n</tr>\r\n\r\n<tr><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td></tr>\r\n<tr>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://secureclub.net/images/wildcoyote/wildcoyote_logo.png\" width=\"120\" height=\"120\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclub.net/images/casacassara/cc-logo-.jpg\" width=\"170\" height=\"170\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclub.net/images/redcarwine/logo_red_car.png\" width=\"200\" height=\"200\" class=\"alignnone size-NinzioHalf\" />\r\n</td></tr><tr><td>\r\n<h2>Wild Coyote Winery</h2>\r\n</td><td>\r\n<h2>Casa Cassara Winery</h2>\r\n</td><td>\r\n<h2>Red Car Wine</h2>\r\n</td></tr><tr><td>\r\n<a target=\"_blank\" href=\"http://www3.cleverconcepts.net/wildcoyote.biz/shop/index.php\">Wild Coyote Winery Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://http://ccwinery.com/wine-store/\">Casa Cassara Winery Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://www.secureclub.net/RedCarWine/catalog_mp.aspx\">Red Car Cart</a>\r\n</td>\r\n</tr>\r\n\r\n<tr><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td></tr>\r\n<tr>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://secureclub.net/images/fenestra/fenestra_logo.png\" width=\"100\" height=\"100\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclubwa.net/images/gordonwines/gordon_logo.png\" width=\"150\" height=\"150\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclub.net/images/huntcellars/huntcellars_logo.png\" width=\"160\" height=\"160\" class=\"alignnone size-NinzioHalf\" />\r\n</td></tr><tr><td>\r\n<h2>Fenestra Winery</h2>\r\n</td><td>\r\n<h2>Gordon Estate</h2>\r\n</td><td>\r\n<h2>Hunt Cellars</h2>\r\n</td></tr><tr><td>\r\n<a target=\"_blank\" href=\"http://fenestrawinery.com/fw.php?p=fenestra-eStore\">Fenestra Winery Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://gordonwines.com/shopping-cart.html\">Gordon Estate Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://huntcellars.com/shop-2/\">Hunt Cellars Cart</a>\r\n</td>\r\n</tr>\r\n\r\n<tr><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td></tr>\r\n<tr>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://secureclubva.net/images/sharrott/sharrott_logo.jpg\" width=\"100\" height=\"100\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclubwa.net/images/helvetiawinery/helvetia_logo.jpg\" width=\"130\" height=\"130\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclub.net/images/ericrosswinery/ericross_logo.jpg\" width=\"150\" height=\"150\" class=\"alignnone size-NinzioHalf\" />\r\n</td></tr><tr><td>\r\n<h2>Sharrott Winery</h2>\r\n</td><td>\r\n<h2>Helvetia Winery</h2>\r\n</td><td>\r\n<h2>Eric Ross Winery</h2>\r\n</td></tr><tr><td>\r\n<a target=\"_blank\" href=\"http://sharrottwinery.com/shop-online/\">Sharrott Winery Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://helvetiawinery.com/shop\">Helvetia Winery Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://ericross.com/catalogue-wine-selection/\">Eric Ross Winery Cart</a>\r\n</td>\r\n</tr>\r\n\r\n<tr><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td><td>[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]</td></tr>\r\n<tr>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://secureclubva.net/images/treleavenwines/treleavenPOS_logo.png\" width=\"120\" height=\"120\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclub.net/images/dueragazze/drvlogo_color.jpg\" width=\"170\" height=\"170\" class=\"alignnone size-NinzioHalf\" />\r\n</td>\r\n<td style=\"text-align: center;\">\r\n<img src=\"http://www.secureclubwa.net/images/wildgoose/wildgoose_logo.png\" width=\"120\" height=\"120\" class=\"alignnone size-NinzioHalf\" />\r\n</td></tr><tr><td>\r\n<h2>Treleaven Wines</h2>\r\n</td><td>\r\n<h2>Due Ragazze Vineyards</h2>\r\n</td><td>\r\n<h2>Wild Goose Vineyards</h2>\r\n</td></tr><tr><td>\r\n<a target=\"_blank\" href=\"http://www.secureclubva.net/TreleavenWines/catalog_mp.aspx\">Treleaven Wines Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://dueragazze.com/shoppingcart/\">Due Ragazze Vineyards Cart</a>\r\n</td><td>\r\n<a target=\"_blank\" href=\"http://wildgoosewinery.com/wine-shop/\">Wild Goose Vineyards Cart</a>\r\n</td>\r\n</tr>\r\n\r\n</table>\r\n\r\n</div>\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n[/fullbox]\r\n\r\n','Example Carts','','publish','closed','closed','','example-carts','','','2018-03-14 22:07:19','2018-03-15 05:07:19','',0,'https://activeclubsolutions.net/?page_id=3006',0,'page','',0),
(3013,2,'2018-03-17 20:29:43','2018-03-18 03:29:43','<h2>Shipping and Returns</h2>\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"20\" /]\r\n\r\nWe ship via FedEx, GSO or UPS. \r\n\r\nWe currently ship to Alaska, Arizona, California, Colorado, Connecticut, District of Columbia, Florida, Georgia, Hawaii, Idaho, Illinois, Indiana, Iowa, Kansas, Louisiana, Maine, Maryland, Massachusetts, Michigan, Minnesota, Missouri, Montana, Nebraska, Nevada, New Hampshire, New Jersey, New Mexico, New York, North Carolina, North Dakota, Oregon, Pennsylvania, South Carolina, South Dakota, Tennessee, Texas, Vermont, Virginia, Washington, West Virginia, Wisconsin, and Wyoming. Product availability varies by state and certain states are subject to volume limitations (details about your state\'s shipping laws can be found here.) We don\'t ship to counties or cities where wine shipping is prohibited, and we don\'t ship to these states at all:\r\n\r\nAlabama, Arkansas, Delaware, Kentucky, Mississippi, Ohio, Oklahoma, Rhode Island, Utah\r\n\r\nWe do our best to make sure shipments arrive quickly and in good condition. For that reason, if the weather is too hot or too cold, we may delay shipment until conditions are more favorable. We will keep you notified if this happens.\r\n\r\nProof of age — we can deliver only to people aged 21 and over, so our drivers will require valid ID.\r\n\r\nIf your order goes missing, or is damaged, between dispatch and delivery, we will send you a replacement order as soon as we can. If we are unable to dispatch replacement goods within 7 days we will offer you a full refund.\r\n\r\nIn almost all states, if you\'re not happy with the wine, the service or anything else, just email us support@activeclubsolutions.net and we will refund you the price you paid. As a general rule we will require return of the bottles you haven\'t drunk yet. Unless you tell us otherwise, we will credit your Activ8 account. If we feel that you are taking advantage of us, we reserve the right to close your account and banish you from Activ8 for ever and ever. In NJ, it\'s more complicated because this state won\'t even allow us to do simple things like cancel orders or return shipments. For help, please call us at 1-877-441-CLUB.','Shipping and Returns','','publish','closed','closed','','shipping-and-returns','','','2018-03-17 20:36:20','2018-03-18 03:36:20','',0,'https://activeclubsolutions.net/?page_id=3013',0,'page','',0),
(3024,2,'2018-03-31 22:14:48','2018-04-01 05:14:48','<h4 style=\"text-align:center; margin-top: -40px;\">You are welcome to try using the Shopping Cart feature and even place an order.<br>There is also a login you can use with the username: <b>P</b> with a password of: <b>P</b><br>If you are trying a guest shopper you can use the fake credit card number 4111111111111111.</h4>\r\n\r\n[ACSScript server=TEST dbname=demodb_3]\r\n[ACSiFrame2 server=TEST dbname=demodb_3 scenario=5 usesession=yes fcrid=FC0000013 bottommargin=20 scrollpoint=35]\r\n\r\n','Example Online Store - Dundee','','publish','closed','closed','','shopping-cart-5','','','2022-04-02 23:03:39','2022-04-03 06:03:39','',1497,'https://activeclubsolutions.net/?page_id=3024',0,'page','',0),
(3034,2,'2018-04-09 22:37:00','2018-04-10 05:37:00','','goldengatenightfall_1','','inherit','closed','closed','','goldengatenightfall_1','','','2018-04-09 22:37:00','2018-04-10 05:37:00','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/04/goldengatenightfall_1.png',0,'attachment','image/png',0),
(3037,2,'2018-04-10 17:18:16','2018-04-11 00:18:16','','Active_logo_190','','inherit','closed','closed','','active_logo_190','','','2018-04-10 17:18:16','2018-04-11 00:18:16','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/04/Active_logo_190.png',0,'attachment','image/png',0),
(3038,2,'2018-04-10 17:38:39','2018-04-11 00:38:39','','Active_logo_400@2x','','inherit','closed','closed','','active_logo_4002x','','','2018-04-10 17:38:39','2018-04-11 00:38:39','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/04/Active_logo_400@2x.png',0,'attachment','image/png',0),
(3042,2,'2018-04-23 19:40:07','2018-04-24 02:40:07','<script id=\"CatalogScript\" ACSHost=\"http://www.secureclubcartva.net\" type=\"text/javascript\" src=\"http://www.secureclubcartva.net/RedNewt/js/cataloghost.js\"></script>\r\n<script>document.getElementsByTagName(\"BODY\")[0].onresize = function() {ACSResizeFrame()};</script>\r\n\r\n<div id=\"CatalogBasketDiv\" class=\"BasketFrameDivV4\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogBasket\" class=\"BasketFrameV4\" src=\"http://www.secureclubcartva.net/RedNewt/catalogBasket.aspx?wcrshopid=WC0000011&wcripadshopid=WC0000011\" ACSHost=\"http://www.secureclubcartva.net\"></iframe>\r\n</div>\r\n<div id=\"CatalogMessageDiv\" class=\"MsgFrameDivV4\" style=\"display: none;\">\r\n<iframe id=\"CatalogMessage\" class=\"MsgFrameV4\" src=\"http://www.secureclubcartva.net/RedNewt/catalogmessage.aspx?wcrshopid=WC0000011&wcripadshopid=WC0000011\" ACSHost=\"http://www.secureclubcartva.net\"></iframe>\r\n</div>\r\n<div id=\"CatalogMenuDiv\" class=\"MenuFrameDivV4\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogMenu\" class=\"MenuFrameV4\" src=\"http://www.secureclubcartva.net/RedNewt/catalogmenu.aspx?wcrshopid=WC0000011&wcripadshopid=WC0000011\" ACSHost=\"http://www.secureclubcartva.net\"></iframe>\r\n</div>\r\n<div id=\"ACSWaitCursor\" style=\"position: fixed; display: inline-block; left: 25%; margin-top: 0px; z-index: 99;\">\r\n<img src=\"http://www.secureclub.net/images/activeclub/progressbar.gif\">\r\n</div>\r\n<div id=\"ManageDiv\" class=\"ManageFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"Manage\" class=\"ManageFrame\" src=\"http://www.secureclubcartva.net/RedNewt/manage.aspx?wcrshopid=WC0000011&wcripadshopid=WC0000011\" ACSHost=\"http://www.secureclubcartva.net\" ACSMasterFrame=\"1\" ACSScrollPoint=\"230\"></iframe>\r\n</div>\r\n<div id=\"CatalogDiv\"  class=\"CatalogFrameDivV4\" style=\"visibility: hidden;\">\r\n<iframe id=\"Catalog\" class=\"CatalogFrameV4\" src=\"http://www.secureclubcartva.net/RedNewt/catalog.aspx?wcrshopid=WC0000011&wcripadshopid=WC0000011\" ACSHost=\"http://www.secureclubcartva.net\" ACSScrollPoint=\"230\"></iframe>\r\n</div>\r\n<div id=\"RegisterDiv\" class=\"RegisterFrameDivV4\" style=\"display: none;visibility: hidden;\">\r\n<iframe id=\"Register\" class=\"RegisterFrameV4\" src=\"http://www.secureclubcartva.net/RedNewt/register.aspx?wcrshopid=WC0000011&wcripadshopid=WC0000011\" ACSHost=\"http://www.secureclubcartva.net\" ACSScrollPoint=\"230\"></iframe>\r\n</div>','RedNewt Manage+Shop','','publish','closed','closed','','rednewt','','','2018-04-23 20:00:54','2018-04-24 03:00:54','',0,'https://activeclubsolutions.net/?page_id=3042',0,'page','',0),
(3054,2,'2018-05-10 20:03:02','2018-05-11 03:03:02','','PricingChart_6','','inherit','closed','closed','','pricingchart_6','','','2018-05-10 20:03:02','2018-05-11 03:03:02','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/05/PricingChart_6.png',0,'attachment','image/png',0),
(3056,2,'2018-05-12 20:26:46','2018-05-13 03:26:46','<link href=\"http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700\"  rel=\"stylesheet\">\r\n\r\n\r\n\r\n[ACSScript server=TEST dbname=demodb_3]\r\n[ACSiFrame2 server=TEST dbname=demodb_3 scenario=5 usesession=yes fcrid=FC0000011 waitcursor=ring.gif bottommargin=20 scrollpoint=10]\r\n\r\n\r\n','Example Online Store - Napa','','publish','closed','closed','','shopping-cart-6','','','2022-04-03 15:04:35','2022-04-03 22:04:35','',1497,'https://activeclubsolutions.net/?page_id=3056',0,'page','',0),
(3069,2,'2017-12-27 13:01:49','2017-12-27 21:01:49','Efficiently manage and grow your direct-to-consumer wine, beer, or spirits sales with Activ8\'s powerful, all-in-one solution. Activ8\'s Mobile Tasting Room POS, Club Automation Software and eCommerce Solution all share one common database. Each of these toolsets communicates live to your unique and independent master database so they are always current and in sync with your customer and inventory data. With all systems sharing the same data, efficiencies improve, staff sells more and customer service is elevated across your entire operation.\r\n\r\nEliminate the hassle of running multiple systems. We\'ve integrated with many shipping and fulfillment payment, retail, accounting and marketing services. You\'ll have peace of mind knowing that our software features are based specifically on our customers\' need for them.\r\n\r\nActiv8\'s ease iPad POS is designed for busy winery tasting rooms, craft beverage businesses, and retail locations. It includes a powerful club features, inventory management, alcohol shipping, tips, functionality and kitchen/fulfillment printing built right it. It communicates live with your unique master database so it is always current with customer and inventory data.\r\n\r\nActiv8\'s club automation system will save you hours of time. With automation many of the time consuming tasks, like batch creation, batch payment processing, email communications, and more, are easily managed. Our flexible system allows you to run Standard Package, Member Choice/Allocation and Placeholder Clubs.\r\n\r\nActiv8\'s eCommerce Solution inserts right into your current website so there is no re-direct when customers are shopping. The pages have an open style sheet so your web designer has full control of the look and feel to carry your brand image through every page. Features include catalog shopping cart, club sign-ups and a member portal allowing customers to control their own profile. The solution is connected live to your unique master database so there is never a difference in customer data and inventory data.\r\n\r\nIf you want to see how your DTC business can better elevate service and maximize sales, stop by our booth at the 2018 Unified Wine & Grape Symposium to see for yourself the power of \"Active\" at your fingertips! www.activeaclubsolutions.com\r\n\r\n','Is Your DTC Strategy Ready for 2018?','','pending','closed','open','','is-your-dtc-strategy-ready-for-2018','','','2022-08-14 21:03:36','2022-08-15 04:03:36','',0,'https://activeclubsolutions.net/?p=3069',0,'post','',0),
(3070,2,'2018-01-10 13:14:29','2018-01-10 21:14:29','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/shutterstock_486675022_People-wine-sunset.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/shutterstock_486675022_People-wine-sunset-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" class=\"alignnone size-medium wp-image-3071\" /></a>Wineries, distilleries, breweries, wine shops, and wine bars are fun vibrant busy places. Processing sales, managing club members, taking special orders and shipping purchases can be vibrant and fun too! Activ8\'s platform is mobile, easy, quick and interactive.\r\n\r\nActiv8\'s tasting room POS mobile native app is all that and then some. The back end of Activ8\'s mobile POS solution offers unique level of powerful retail and club control, inventory management and accounting integration.\r\n\r\nActiv8\'s combination of mobile tasting room POS, leading wine club software and customizable eCommerce toolkit offers a truly integrated solution, all in one single and unique database.\r\n \r\nBelow are the top 20 features that can help your DTC business elevate service and maximize sales.\r\n1.	first with attached mobile EMV reader\r\n2.	is part of a true integration in one database: information gets updated across systems and locations full and in real time\r\n3.	is easy to use saving you hours of training time\r\n4.	has easy and powerful swaps, returns, voids, pending order changes\r\n5.	has automated discounts, tax, and S&H features\r\n6.	is affordable, with minimum equipment investment\r\n7.	is integrated with an extremely secure payment processor, using point-to-point encryption at card swipe and full tokenization\r\n8.	comes with multi-location Tasting Room POS and inventory management\r\n9.	shares orders across multiple locations\r\n10.	unlimited users and iPads at no additional license cost\r\n11.	allows you to add or edit club members\r\n12.	has amazing Wine Club pickup features, with iPad signatures\r\n13.	automates Swap Outs, reconciling both payment/credit and inventory\r\n14.	kitchen or fulfillment printers\r\n15.	modifiers for restaurant POS functionality\r\n16.	wholesale functionality, giving field reps a mobile solution for creating new accounts, generating invoices and even taking payments \r\n17.	comes with a full back office (Activ8 Manager) accessible from your mobile device\r\n18.	comes with expert support and free upgrades to new versions\r\n19.	is integrated with QuickBooks Accounting\r\n20.	blue tooth barcode scanners supported\r\n\r\nYou are invited to stop by Booth #1438 at Unified to see how Activ8\'s POS Platform can help your DTC business elevate service and maximize sales!\r\n\r\n','The Active DTC Mobile POS All-in-One Solution','','pending','closed','open','','mobile-pos-all-in-one-solution','','','2022-08-14 21:03:36','2022-08-15 04:03:36','',0,'https://activeclubsolutions.net/?p=3070',0,'post','',0),
(3071,10,'2018-05-14 13:20:08','2018-05-14 20:20:08','','shutterstock_486675022_People wine sunset','','inherit','closed','closed','','shutterstock_486675022_people-wine-sunset','','','2018-05-14 13:20:08','2018-05-14 20:20:08','',3070,'https://activeclubsolutions.net/wp-content/uploads/2018/05/shutterstock_486675022_People-wine-sunset.jpg',0,'attachment','image/jpeg',0),
(3073,2,'2018-01-23 13:39:13','2018-01-23 21:39:13','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/Dan-at-Unified-2018.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/Dan-at-Unified-2018-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-3074\" /></a>TRADE SHOW SPECIAL\r\n\r\nFor a limited time, when you decide to switch to Activ8\'s ALL-IN-ONE mobile solution to help your DTC business grow and thrive, Active will waive the set-up fee. Additionally, there will be ZERO down payment fees and no hidden costs. Act fast as this \"Trade Show Special\" is only good through 2/28/18! \r\n\r\nDon’t just take our word for it! Read the winery client testimonials below and stop by our booth #1438 at Unified January 24 and 25. Find us at Washington Winegrowers February 7 and 8 in Richland, Washington too!\r\n\r\n“Happy New Year! 2018 brings a new year and a new order management system for Red Car Wine. Activ8 Commerce is a new and very intuitive program that we are happy to share with you!”	-Kathleen B., Hospitality and Wine Club Concierge, Red Car Wine Co.\r\n\r\n“We have been using Active since 2009 and with their wine club and eCommerce software and support, we have been able to grow and maintain a thriving wine club of over two thousand members. Their eCommerce and online shop features are both easy for us to manage, and for our customers to use, which is a necessity in today’s wine market.” – Eric M.C., Ruby Hill Winery\r\n\r\n\r\n“Since employing Activ8 Commerce, my team and I have had a much easier time with many of the day to day operations of our business in real time. The exceptionally user-friendly point-of-sale makes communication with my floor staff much simpler, and the interactive club management ensures that organizing customer information and transaction history is a breeze. Not to mention the high level of encryption and security provided, which I know our clients greatly appreciate. We look forward to expanding our online sales even further with the cart option, which can easily link up to our business website.” – Brianna, Tasting Room and Wine Club Manager, Castle Hill Cider\r\n\r\n\r\nActive is an All-in-one single database. Our tasting room solution includes everything you need to manage and grow your wine sales, from our mobile winery POS to training and support. \r\n• iPad Winery/Tasting Room POS \r\n•	Responsive eCommerce and Account Management Apps\r\n•	Powerful Database App with Live Data Reporting\r\n•	Marketing and Customer Relations Management (CRM)\r\n•	Unparalleled Search and Data Mining Capabilities\r\n•	Expert technical support\r\n•	Integrated and certified\r\n•       Wine Club Automation with Wizard\r\n','Visit Booth #1438 at Unified','','pending','closed','open','','visit-booth-1438-at-unified','','','2022-08-14 21:03:36','2022-08-15 04:03:36','',0,'https://activeclubsolutions.net/?p=3073',0,'post','',0),
(3074,10,'2018-05-14 13:37:43','2018-05-14 20:37:43','','Dan at Unified 2018','','inherit','closed','closed','','dan-at-unified-2018','','','2018-05-14 13:37:43','2018-05-14 20:37:43','',3073,'https://activeclubsolutions.net/wp-content/uploads/2018/05/Dan-at-Unified-2018.jpg',0,'attachment','image/jpeg',0),
(3075,2,'2018-02-07 13:49:39','2018-02-07 21:49:39','Be an INFLUENTIAL AND DYNAMIC club manager with the most powerful and customizable club software in the industry. We at Activ8 Commerce have developed the ultimate customizable wine, beer, spirits, or retail shop “club” software. Our robot works for you 7/24! It is able to complete tasks in seconds that would take the average person hours to complete.\r\n\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/th_robot.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/th_robot.jpg\" alt=\"\" width=\"200\" height=\"160\" class=\"alignnone size-full wp-image-3076\" /></a>\r\n\r\nSome of our wine club software features:\r\n•	extensive Customer data features\r\n•	gift and prepaid membership features\r\n•	membership in multiple clubs\r\n•	club automation wizard – customizable steps\r\n•	address validation, email address validation, proximity calculation\r\n•	calculates package weights, custom discounts, handling fees, shipping fees, origin and destination taxes instantly\r\n•	fully integrated shipping, real-time rates, label printing and tracking\r\n•	the latest and smartest in member choice / allocation systems allows wine club members to select their own wines for shipment\r\n•	placeholder clubs – reusable abstracts can greatly simplify a club program\r\n•	automated assistant for declined credit card and revenue recovery\r\n•	easy personalized Customer emails sent from where you’re working\r\n•	customizable wine club software handles company specific exceptions\r\n•	employee incentive system\r\n•	automated anniversary (2) and birthdate emails (2)\r\n•	automated weather\r\n•	automated club management tools\r\n•	unparalleled search provides an astonishing set of query tools – like,… show: members with a non-payment history\r\n•	database change tracking and job queue with \r\n\r\nPOWERFUL WEB TOOLS\r\n\r\nGiving your club members access to their information online and through mobile interfaces allows you to easily build your winery into your member’s lives.\r\n•	member sign up\r\n•	member account management\r\n•	Member choice / allocations / futures\r\n•	integrated into your website seamlessly\r\n•	integrated into your Facebook page\r\n\r\nFind us at activeclubsolutions.net to learn more!\r\n','Dynamic Club & Database Software','','pending','closed','open','','dynamic-club-database-software','','','2022-08-14 21:03:14','2022-08-15 04:03:14','',0,'https://activeclubsolutions.net/?p=3075',0,'post','',0),
(3076,10,'2018-05-14 13:46:09','2018-05-14 20:46:09','','th_robot','','inherit','closed','closed','','th_robot','','','2018-05-14 13:46:09','2018-05-14 20:46:09','',3075,'https://activeclubsolutions.net/wp-content/uploads/2018/05/th_robot.jpg',0,'attachment','image/jpeg',0),
(3077,2,'2018-02-21 13:58:42','2018-02-21 21:58:42','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2017/01/wizard160x160.png\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2017/01/wizard160x160.png\" alt=\"\" width=\"160\" height=\"160\" class=\"alignnone size-full wp-image-2298\" /></a>\r\nNew CLUBs Wizard System to Help you Batch your Various Clubs One Step at a Time\r\n\r\nYour customers know they bought wine, beer or spirits from your winery, brewery or distillery and often don’t care if they purchased in your tasting room, received wine from a club shipment or bought online. They do care that they bought wine, beer, or spirits from you. \r\n\r\nNow you can drastically improve the efficiencies of your consumer direct sales programs, specifically running your clubs, by training staff using the club wizard that best suits the type of club you are processing. Running the batches in a “step-by-step\" methodology keeps the club manager on track, allows management and ownership to “see” where the club billing is in the process, and provides accurate shipping, compliance, inventory, and accounting numbers to the back of the house for seamless G/L ledger entries, if not full integration.\r\n\r\nWhether you are running a regular club where everyone gets the same wines in the package (Package Club) or if your winery allocates the wines or let’s club members choose what they would like to receive (Member Choice or Allocation Club) or, you have run out of a vintage and you call it a Placeholder club for the next vintage release (Placeholder/Member Choice/Allocation club,  Active’s wizard system will take you through all the steps, one at a time, to ensure you complete your club billing start to finish with accuracy. \r\n\r\nVisit our website to view the club wizard tutorials to decide that ACTIVE is for you! To find out more information call us at 1-877-441-CLUB (2582) x.48 or contact Debbie@activeclubsolutions.net.\r\n\r\nFind us at activeclubsolutions.net to learn more or ask for a demo!','Introducing New CLUBs Wizard System','','pending','closed','open','','introducing-new-clubs-wizard-system','','','2022-08-14 21:03:14','2022-08-15 04:03:14','',0,'https://activeclubsolutions.net/?p=3077',0,'post','',0),
(3078,2,'2018-03-07 14:07:25','2018-03-07 22:07:25','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/BIG-DATA-pic_ACS.png\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/BIG-DATA-pic_ACS-300x136.png\" alt=\"\" width=\"300\" height=\"136\" class=\"alignnone size-medium wp-image-3079\" /></a>\r\n\r\nIn a recent article Rob McMillan, founder and executive vice president of Silicon Valley Bank\'s wine industry practice, was quoted, saying that \"the wine industry needs to do a better job on sales and marketing using digital tools.\" I would add to that thought that all craft beverage businesses should listen to that advice too. The article goes on to talk about the need for a big data product that\'s approachable yet useful to the industry.\r\n\r\nThere is an approachable DTC cloud-based solution available to wineries, breweries and distilleries to use data management from more than 18,000 fields to sort and segment your customer list in any way you wish with the parameters you set. Active’s Mobile Tasting Room POS, Club Automation Software and eCommerce Solution all share one common database. Each of these tool sets speak live to your unique and independent master database so they are always current and in sync with your customer and inventory data. With all systems sharing the same data, efficiencies improve, staff sells more and customer service is elevated across your entire operation in \"real\" time.\r\n\r\nEliminate the hassle of running multiple systems. Active is integrated with many shipping & fulfillment, payment, retail, accounting and marketing services. You’ll have peace of mind knowing that our software features are based specifically on our customers’ need for them.\r\n\r\n\"Active has streamlined the way I run my club with the ability to send newsletters, manage customers and inventory all from one dashboard. I\'m just sorry it took so long to find it!\" Amanda Graziano - Spirit Works Distillery, Sebastopol, California\r\n\r\nActive’s easy iPad POS is designed for busy winery tasting rooms, craft beverage businesses, and retail locations. It includes powerful club features, inventory management, alcohol shipping, tips functionality and kitchen/fulfillment printing built right in. It communicates live with your unique master database so it is always current with customer and inventory data. Check out the website for more information. activeclubsolutions.net\r\n','ENDLESS DATA MINING CAPABILITIES IN ONE DATABASE','','pending','closed','open','','endless-data-mining-capabilities-in-one-database','','','2022-08-14 21:03:14','2022-08-15 04:03:14','',0,'https://activeclubsolutions.net/?p=3078',0,'post','',0),
(3079,10,'2018-05-14 14:05:42','2018-05-14 21:05:42','','BIG DATA pic_ACS','','inherit','closed','closed','','big-data-pic_acs','','','2018-05-14 14:05:42','2018-05-14 21:05:42','',3078,'https://activeclubsolutions.net/wp-content/uploads/2018/05/BIG-DATA-pic_ACS.png',0,'attachment','image/png',0),
(3080,2,'2018-03-21 15:08:09','2018-03-21 22:08:09','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/ruby-hill-winery-outdoor.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/ruby-hill-winery-outdoor-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" class=\"alignnone size-medium wp-image-3081\" /></a>\r\n\r\nWhether it is DTC or Wholesale within the winery or craft spirits business sector, sales performance is critical for the business. A winery or craft spirits business is no more than a hobby for many, but with “customers” it really is a business. Approaching the winery or craft spirits business requires a different way of thinking. How does one design the strategy for the business that provides a data driven machine towards increasing sales? The discernable answer is by tracking and using metrics or data analytics. While it is not easy, the main step into designing a strategy that is successfully using data points for optimization is by defining your key performance indicators or KPI’s.\r\n\r\nFor any winery or craft spirits producer DTC often is the lifeline for revenues. For example, wineries who produce less than 100,000 cases or less of product per annum, at least 30-70% of sales revenues can be derived from DTC channel. In smaller wineries or craft spirits, DTC often can be 100% of the revenue stream. In either scenario, most wineries or craft businesses have a basic understanding of KPI’s in relation to their sales channels do look at such as revenue by channel, revenue by month, number of club members, and total cases sold. That is usually it. But, what other data points could be utilized to give a better “picture” of what your winery or craft spirits business is doing?\r\n\r\nMany wineries or craft spirits businesses are missing out on data that could improve their sales. What are those other KPI’s to take note of? In the tasting room or lounge model there are several data points to observe starting with visitor source. How did your visitor come to your establishment? Are they returning customers, club members, guests of club members, or did a hotel or restaurant refer them? Did you place an add in a travel/tourism magazine or Groupon offer? With this data you are gleaning information to see if your marketing dollars are effective in bringing in new customers.\r\n\r\nAnother tasting room metric is what is your visitor conversion rate? Are your visitors becoming customers? Was a purchase made? Did they join the club? Who served the visitor? Data from these questions can help you as a manager/owner determine who needs more training, who is better with one-time sales versus repeat sales, and who are the team members reaching the daily, weekly, monthly goals set.\r\n\r\nIn the tasting room or lounge also consider the time to assess the average sales amount and the sales per person amount. The average sales metric is factored as net dollars divided by the number of people for the day. This data gives you detail as to are the visitors buying more than last visit? Does the average amount per person or the average sales amount fluctuate with seasonality or abrupt weather events? This data can point to offering specials or deals during seasonal down time or offers the manager insights in immediate response strategizes to conduct a telemarketing campaign or email offer to supplement the low seasonal shifts in per person sales or average sales for the day. \r\n\r\nClub programs also have their own set of KPI’s. Focused KPI’s include attrition rate, club loyalty and market basket analysis. Club members do sometimes move on as they like variety. Tracking attrition rate can help you as the owner or manager determine trends, such as who is leaving and when. What did they purchase before they left? This metric can help to identify trends to reveal you need to do other things to keep more customers in the club. How long is the average membership is monitored with tracking club loyalty. What is the average purchase amount for any member in a year? What is the average lifetime value? These metrics help you to better understand the customers you have so you can design programs to serve your club members better. Finally, one key to increasing sales is the ability to upsell or make the proper recommendations. Conducting a basket analysis will help you to understand what items your customers purchase together. An example of this, is Amazon, who mentions “frequently purchased together” in the hopes you will add more items to your cart. This KPI can be very useful for not only the club, but ecommerce and retail DTC marketing mix programs.\r\n\r\nThese are just a few of the KPI’s that any winery or craft spirits business can start to utilize. You need to bring together all your data points to give you a compete look into your DTC operations. When you have a complete automated system to manage all your data points, in one place, you would, essentially, find the “easy button” in your reports to give you better detail. You can make better decisions with data, because you have better insights for your winery or craft spirits business. Ask how ACTIVE can help with your winery or craft spirits business to improve your data capture management, so you can make better business decisions through KPI’s. activeclubsolutions.net \r\n','How to Sell More Wine/Craft Beverages with Data Analytics','','pending','closed','open','','how-to-sell-more-wine-craft-beverages-with-data-analytics','','','2022-08-14 21:03:14','2022-08-15 04:03:14','',0,'https://activeclubsolutions.net/?p=3080',0,'post','',0),
(3081,10,'2018-05-14 15:04:24','2018-05-14 22:04:24','','ruby-hill-winery-outdoor','','inherit','closed','closed','','ruby-hill-winery-outdoor','','','2018-05-14 15:04:24','2018-05-14 22:04:24','',3080,'https://activeclubsolutions.net/wp-content/uploads/2018/05/ruby-hill-winery-outdoor.jpg',0,'attachment','image/jpeg',0),
(3082,2,'2018-04-04 15:19:09','2018-04-04 22:19:09','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/tipping.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/tipping-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" class=\"alignnone size-medium wp-image-3083\" /></a>\r\n\r\nSome wineries have tip lines on their POS receipts and others do not allow tips at all. Other wineries casually place a tip jar on their counter/bar discreetly. Whether your winery allows tipping or not it is usually a philosophic choice that the winery makes. Nevertheless, wineries who would like their staff to collect tips on the ticket often face challenges with their current POS system, as their current system does not allow flexibility in software technologies to be able to create a tip line.\r\n\r\nTaking the tipping issue into account, Active has two ways in the POS system that allows Active clients to manage tipping the way they choose. The first option Active offers in tipping management is to offer “on-screen” tip suggestions. With this option the customer/guest selects which amount/percentage to tip based on the screen choices such as:\r\n•	10%\r\n•	15%\r\n•	20%\r\nfor example. Another option Active can customize for the winery, is to offer tipping like traditional, restaurant style tip tickets. Here the customer/guest has the ability to write in an amount to tip that is put onto and paid by the customer/guest credit card presented. Or, the customer/guest can leave the tip portion blank and give a cash tip instead; just like a restaurant setting. \r\n\r\nHowever you, the winery, want to address tips, Active has you covered. Active’s easy iPad POS is designed for busy winery tasting rooms, craft beverage businesses, and retail locations. It includes powerful club features, inventory management, alcohol shipping, tips functionality, and kitchen/fulfillment printing built right in. It communicates live with your unique master database so it is always current with customer and inventory data. To request a DEMO contact Thomas@activeclubsolutions.net  directly.  Or, visit our website for more information at activeclubsolutions.net.\r\n','TIPPING: HOW TO MANAGE ON YOUR POINT-OF-SALE SYSTEM WITH SIMPLICITY','','pending','closed','open','','tipping-how-to-manage-on-your-point-of-sale-system-with-simplicity','','','2022-08-14 21:03:13','2022-08-15 04:03:13','',0,'https://activeclubsolutions.net/?p=3082',0,'post','',0),
(3083,10,'2018-05-14 15:17:26','2018-05-14 22:17:26','','tipping','','inherit','closed','closed','','tipping','','','2018-05-14 15:17:26','2018-05-14 22:17:26','',3082,'https://activeclubsolutions.net/wp-content/uploads/2018/05/tipping.jpg',0,'attachment','image/jpeg',0),
(3084,2,'2018-04-18 15:32:42','2018-04-18 22:32:42','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/Cloud-computing.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/Cloud-computing-300x264.jpg\" alt=\"\" width=\"300\" height=\"264\" class=\"alignnone size-medium wp-image-3086\" /></a>\r\n\r\nThe line between a cloud app (cloud) and a web app (browser) remains as unclear as ever. This is because of the natural similarities that exist between them. Active’s belief however, is that there are notable variances, especially when looking to leverage cloud apps for richer user customization experience and seamless integration with resilient and scalable back-end infrastructure. \r\n\r\nAs a winery or distillery why does this element even matter as a point of discussion? How will this have an impact in your craft business bottom line and overall operation? One reason to consider in switching to the cloud is the tight security, free from \"cookies\" and other browser tracking devices that allow Active users a faster response time. Using the cloud technology, Active also allows multiple users on many devices throughout your estate, lounge or retail setting. Your team is able to sell more with ease keeping your customer information safe and secure with all the transactions going through your system on a busy weekend at your facility or event.\r\n\r\nBasically, a cloud app is merely a web app on steroids if not a hybrid of the two methodologies. It accesses the internet like a regular web page/app but the difference being it does not always exclusively depend upon web browsers to work. Advanced features are more than likely to be such as:\r\n•	Data is stored in a cloud or cloud like infrastructure\r\n•	Data can be cached locally for full-offline mode\r\n•	Access can be used from a web browser and or custom-built apps installed on internet connected devices such as desktops, mobile phones and iPads\r\n•	Can be used to access a wider range of services as in on demand computing cycle, storage, application development platform\r\n\r\nIf you want the ultimate in speed, security and support, Active has you covered. Active’s easy iPad POS is designed for busy winery tasting rooms, craft beverage businesses, and retail locations. It includes powerful club features, inventory management, alcohol shipping, tips functionality, and kitchen/fulfillment printing built right in. Active’s native app allows you to communicate live with your unique master database, so it is always current with customer and inventory data. To request a DEMO contact Thomas@activeclubsolutions.net  directly.  Or, visit our website for more information at activeclubsolutions.net.\r\n\r\n','Cloud VS. Browser: What is the Difference?','','pending','closed','open','','cloud-vs-browser-what-is-the-difference','','','2022-08-14 21:03:13','2022-08-15 04:03:13','',0,'https://activeclubsolutions.net/?p=3084',0,'post','',0),
(3086,10,'2018-05-14 15:29:47','2018-05-14 22:29:47','','Cloud-computing','','inherit','closed','closed','','cloud-computing','','','2018-05-14 15:29:47','2018-05-14 22:29:47','',3084,'https://activeclubsolutions.net/wp-content/uploads/2018/05/Cloud-computing.jpg',0,'attachment','image/jpeg',0),
(3087,2,'2018-05-02 15:41:22','2018-05-02 22:41:22','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/duskhomepagex380.png\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/duskhomepagex380-300x144.png\" alt=\"\" width=\"300\" height=\"144\" class=\"alignnone size-medium wp-image-3088\" /></a>\r\n\r\nAdded Value with Active\r\n \r\nLet\'s face it. Change is hard, even if it is good change that will improve your workflow, business efficiencies, and systems for the better in your winery or distillery business. Whether you and your staff are frustrated with your current system, or, for many other reasons, you are shopping for a new POS system for your winery or distillery, what elements should you consider?\r\n \r\nCertainly factors to ponder include what is the time necessary to transition to a new system, the number of people it will take to execute, and will the financial results intended from the expected actions be improved from the current status quo. Then other questions come to mind, such as, will the system be able to handle multiple locations of inventory or club member swaps on demand? \r\n\r\nWhile researching you need to also weigh ease-of-use against functionality. Next, be sure to look for a system than can start small and grow with your needs and business model. Lastly, how helpful will the new system vendor be in your transitional time before going live? Or, are you and your staff left on your own to figure it out with a training manual and some self-help videos?\r\n \r\nWhen you sign with Active now you have a direct to consumer software service provider with your business needs in mind. Active takes away the worry of transitioning into a new POS system with the recently launched SET-UP CONCIERGE program. Every step of the way you are guided through set-up where Active manages your data from your former provider with custom parsing. Activ8\'s own gateway specialist will personally enable your tokenization and connect you to your personal gateway. Activ8\'s founder, president, and tech guru personally oversees each private database build for every new client! \r\n\r\nTalk about peace of mind for your craft beverage business, your passion, and your investment. To speak with an Active sales management executive to learn more or, to request a demo, please go to our website activeclubsolutions.net or call 1-877-441-CLUB (x.52).\r\n','Great POS First. Functionality is What Makes Active Greater!','','pending','closed','open','','great-pos-first-functionality-is-what-makes-active-greater','','','2022-08-14 21:03:13','2022-08-15 04:03:13','',0,'https://activeclubsolutions.net/?p=3087',0,'post','',0),
(3088,10,'2018-05-14 15:39:26','2018-05-14 22:39:26','','duskhomepagex380','','inherit','closed','closed','','duskhomepagex380','','','2018-05-14 15:39:26','2018-05-14 22:39:26','',3087,'https://activeclubsolutions.net/wp-content/uploads/2018/05/duskhomepagex380.png',0,'attachment','image/png',0),
(3089,2,'2018-05-16 17:16:02','2018-05-17 00:16:02','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/is.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/is.jpg\" alt=\"\" width=\"240\" height=\"223\" class=\"alignnone size-full wp-image-3090\" /></a>\r\n\r\nBefore your winery or distillery gets started in developing an app or are figuring out your POS eCommerce and Club platform for your system you must have an understanding. What is important is deciding in how you are going to create and use your app. Basically, at this point you have two choices to utilize and develop either a native app or a Web app.\r\n\r\nNow the questions can be asked, what are native apps and Web apps and how do they differ? Which is better for you and your business? To know which type is better suited to your needs, you should compare each option by the following four categories. \r\n\r\nA native app is developed primarily for one particular device and it is usually installed directly onto the specific device. Users of native apps download then via app stores or online. Apple App Store is the most notable example. On the other hand, Web apps are essentially internet enabled apps that are accessible via the Web browser.\r\n\r\n1. User Interface\r\n\r\nTo the everyday user some native apps and Web apps look and work similarly, with no notable differences between the two. Really when making the choice between the two types of apps, the choice must be made only when you need to decide whether to develop a user-centric app or an application centric app.\r\nSome businesses develop both native apps and Web apps, so to broaden reach of their apps while also providing a rich user experience.\r\n\r\n2. App Development Process\r\n\r\n“The app development process of these two types of apps is what distinguishes them from each other,” according to P. Viswanathan of Lifewire.com. P. Viswanathan continues to explain the app development process below.\r\n\r\n•Each mobile platform that the native app is developed for, stipulates its own unique development process. In the case of Web apps running on a mobile device’s Web browser, the problem that arises is that each of these mobile devices have unique features and come with their unique problems as well.\r\n\r\n•Every mobile platform uses a different native programming language. While iOS uses Objective-C, Android uses Java, Windows Mobile uses C++ and so on. Web apps, on the other hand, use languages such as JavaScript, HTML5, CSS3 or other Web application frameworks as per the developer’s preferences.\r\n\r\n•Each mobile platform offers the developer its own standardized SDK, development tools and other user interface elements, which they can use to develop their native app with relative ease. In the case of Web apps, though, there is no such standardization and the developer has no access to SDKs or tools of any sort.\r\n\r\n3. Accessibility\r\n\r\nA native app is totally compatible with the device’s hardware and native features, such as an accelerometer, camera and so on. Web apps, on the other hand, can access only a limited amount of a device’s native features.\r\n\r\n4. Efficiency\r\n\r\nGenerally, native apps are more expensive to develop. However, they are faster and more efficient, as they work in tandem with the mobile device they are developed for. Also, they are assured of quality, as users can access them only via app stores online. Web apps may result in higher costs of maintenance across multiple mobile platforms.  Also, there is no specific regulatory authority to control quality standards of these apps.\r\n\r\nAs a winery or distillery why does this element even matter as a point of discussion? How will this have an impact in your craft business bottom line and overall operation? One reason to consider in switching to the native app is the tight security, free from \"cookies\" and other browser tracking devices that allow Active users a faster response time. Using the Native app technology, Active also allows multiple users on many devices throughout your estate, lounge, retail setting or working from home. Your team, using Active’s native app, will sell more with ease keeping your customer information safe and secure with all the transactions going through your system on a busy weekend at your facility or event.\r\n\r\nIf you want the ultimate in speed, security and support, Active has you covered. Active’s easy iPad POS is designed for busy winery tasting rooms, craft beverage businesses, and retail locations. It includes powerful club features, inventory management, alcohol shipping, tips functionality, and kitchen/fulfillment printing built right in. Active’s native app allows you to communicate live with your unique master database, so it is always current with customer and inventory data.\r\n \r\nTo request a DEMO contact Thomas@activeclubsolutions.net directly.  Or, visit our website for more information at activeclubsolutions.net.\r\n\r\n','What is the Best Choice: Native Apps vs. Web Apps','','pending','closed','open','','what-is-the-best-choice-native-apps-vs-web-apps','','','2022-08-14 21:03:13','2022-08-15 04:03:13','',0,'https://activeclubsolutions.net/?p=3089',0,'post','',0),
(3090,10,'2018-05-16 17:13:48','2018-05-17 00:13:48','','is','','inherit','closed','closed','','is','','','2018-05-16 17:13:48','2018-05-17 00:13:48','',3089,'https://activeclubsolutions.net/wp-content/uploads/2018/05/is.jpg',0,'attachment','image/jpeg',0),
(3099,2,'2018-05-27 14:52:56','0000-00-00 00:00:00','<p>\n<strong>Important: GADWP is now ExactMetrics</strong><br />\nWe&#8217;re excited to share that Google Analytics Dashboard for WordPress (GADWP) plugin has a new name ExactMetrics, and it is now part of Awesome Motive.\n</p>\n<p><a href=\"http://exactmetrics.com/google-analytics-dashboard-wordpress-gadwp-now-exactmetrics/?utm_source=wpdashboard&#038;utm_medium=amnotification&#038;utm_campaign=acquisitionannouncement\" target=\"_blank\" class=\"button button-primary\">Read the full announcement &raquo;</a></p>\n<p>We look forward to continue improving website analytics for you.<br />\nSyed Balkhi<br />\nCEO of ExactMetrics</p>\n','','','draft','closed','closed','','','','','2018-05-27 14:52:56','0000-00-00 00:00:00','',0,'https://activeclubsolutions.net/?post_type=amn_exact-metrics&p=3099',0,'amn_exact-metrics','',0),
(3102,2,'2018-05-30 13:06:59','2018-05-30 20:06:59','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/treasure-chest.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/05/treasure-chest-300x240.jpg\" alt=\"\" width=\"300\" height=\"240\" class=\"alignnone size-medium wp-image-3104\" /></a>\r\n\r\nWhat is often overlooked when assessing and comparing a “current” POS system to a “new” POS system is the time to budget for the changes that will need to happen; and the level of ease your team has in the transition from old to new before going live. You need to bear in mind the value of the support resources, that the vendor you are considering can provide in parallel support through the transition of you, your team, and ultimately your winery/distillery business. Or, are you and your staff left on your own to figure it out with merely a training manual and some self-help videos?\r\n\r\nWhen you decide Active is right for your winery or distillery, and you become a client you and your business are supported with resources and helpful guides to learn as you go. Complete training takes place yet, prior to formal training sessions for you and your team, there are many introductory video tutorials on most subjects including the featured video on as part of this article, “Active POS Installation: Setup of Active POS on an iPad” that lasts 7 minutes.\r\n\r\nAdditionally, when you become an Active client you and your team will have help at every step with SETUP CONCIERGE! Custom parsing of your data from your former provider is managed for you. Our president and founder personally oversees all aspects of each new client database construction. Active’s gateway specialists will enable your tokenization and connect your new gateway. Active helps you identify your unique operational needs and gives you a solution that takes you where you want to go.\r\n\r\nIf you want the ultimate in speed, security and support, Active has you covered. Active’s easy iPad POS is designed for busy winery tasting rooms, craft beverage businesses, and retail locations. It includes powerful club features, inventory management, alcohol shipping, tips functionality, and kitchen/fulfillment printing built right in. Active’s native app allows you to communicate live with your unique master database, so it is always current with customer and inventory data.\r\n\r\nTo request a Demo: Contact Thomas@activeclubsolutions.net  directly.  Or, visit our website for more information at activeclubsolutions.net.','Active\'s Treasure Trove of Resources','','pending','closed','open','','actives-treasure-trove-of-resources','','','2022-08-14 21:03:13','2022-08-15 04:03:13','',0,'https://activeclubsolutions.net/?p=3102',0,'post','',0),
(3104,10,'2018-06-04 13:30:24','2018-06-04 20:30:24','','treasure-chest','','inherit','closed','closed','','treasure-chest','','','2018-06-04 13:30:24','2018-06-04 20:30:24','',3102,'https://activeclubsolutions.net/wp-content/uploads/2018/05/treasure-chest.jpg',0,'attachment','image/jpeg',0),
(3108,2,'2018-06-14 15:19:47','2018-06-14 22:19:47','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/06/loyalty-card-pic.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/06/loyalty-card-pic-300x113.jpg\" alt=\"\" width=\"300\" height=\"113\" class=\"alignnone size-medium wp-image-3109\" /></a>\r\n\r\nIn today’s retail world now, you can use your Point-of-Sale terminal to load and redeem both loyalty and gift cards. There are super reasons to add loyalty and gift cards to creating a digital love fest between your business and your customers.\r\n\r\nWineries and distilleries alike believe in promoting customer loyalty and finding creative ways of tackling that broadly defined goal. Many platforms utilize mobile rewards or coupons to get repeat business and “court” the customer. Vendors integrate loyalty cards in various ways depending on factors like program goals and intended customer base. Following are five reasons wineries and distilleries should consider adding loyalty and gift cards for their hyperlocal programs.\r\n\r\n1.	Loyalty and Gift Cards Drive Superior Consumer Behavior\r\n\r\nVia research, customers behave differently when spending with loyalty/gift cards, as there is a psychology of “the money is already spent” in this scenario. When using a Loyalty/gift card consumers tend to reach to the more expensive items when using a loyalty or gift card. Overspending also tends to occur. It’s hard to max out a card to the penny, usually, consumers spend more that is above the card’s stored value. According to Omri Dahan of Margeta, it’s about 25% or higher.\r\n\r\n2.	Stronger Emotional Memory\r\n\r\nIf you credit $5 or $10 onto a credit card or to your bank account, what happens? Essentially it gets lost into that account, so the consumer never really realizes the cash back effort. It is simply lumped into all the other cash in the account. On that note, how can future purchasing behavior be motivated by a reward you don’t even remember and really have no emotion to? Using virtual currencies and loyalty/gift cards over cash back offers is the better way to go.\r\n\r\n3.	Higher Perceived Value\r\n\r\nLoyalty/gift cards hold a different connotation altogether. People receive gift cards or loyalty cards on special occasions with the feeling of the card itself that the plastic is a “store of value”. With a coupon, it is seen as “useless” or as a piece of paper or a transparent effort to drive sales. It is perception where the perceived value of a card simply drives higher conversion rates, even up to 25% or more than with a coupon. Zack Smith of Boomerang says, “they get people in the door, and they protect the brand positioning what’s essentially a discount as a gift or earned reward.”\r\n\r\n4.	Convenient for Customers\r\n\r\nTying both loyalty and “store” value together is something that is very powerful for businesses, and, also extremely convenient for customers. There has been strong traction and consumer adoption so Active thinks this is a logical extension for wineries/distilleries loyalty service. According to Chris Luo of Five Stars, “certainly Starbucks has done a great job of proving value by using loyalty incentives to increase “pre-paid” purchases over 25% of US transactions are now\r\n delivered via Starbucks pre-paid cards that also accrue loyalty points.”\r\n\r\n5.	Lower Fees\r\n\r\nFinally, there is an additional retailer benefit when swiping a gift/loyalty card – lower credit card fees.  Gift cards are typically processed on different payment “rails”, they don’t trigger swipe fees the way typical credit card transactions do.  However, when a retailer first sells a gift card, it still pays interchanges on the entire amount (and even a higher costs if distribute cards via a 3rd party.  There is a perception by “retailers” that loyalty/gift cards are “cheaper” to process which is true but probably less than people think. \r\n\r\nActive is about to launch a loyalty/gift card program within the current mobile POS system. Stay tuned for the upcoming release detail. If you want the ultimate in service, speed, security and support, Active has you covered. Active’s easy iPad POS is designed for busy winery tasting rooms, craft beverage businesses, and retail locations. It includes powerful club features, inventory management, alcohol shipping, tips functionality, and kitchen/fulfillment printing built right in. Active’s native app allows you to communicate live with your unique master database, so it is always current with customer and inventory data. \r\n\r\nTo request a Demo: Contact Thomas@activeclubsolutions.net  directly.  Or, visit our website for more information at activeclubsolutions.net.\r\n','Top 5 Reasons to Include a Loyalty and Gift Card Program','','pending','closed','open','','top-5-reasons-to-include-a-loyalty-and-gift-card-program','','','2022-08-14 21:03:13','2022-08-15 04:03:13','',0,'https://activeclubsolutions.net/?p=3108',0,'post','',0),
(3109,10,'2018-06-14 15:18:48','2018-06-14 22:18:48','','loyalty card pic','','inherit','closed','closed','','loyalty-card-pic','','','2018-06-14 15:18:48','2018-06-14 22:18:48','',3108,'https://activeclubsolutions.net/wp-content/uploads/2018/06/loyalty-card-pic.jpg',0,'attachment','image/jpeg',0),
(3113,2,'2018-06-22 19:01:00','2018-06-23 02:01:00','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/06/online-shopping-cart-software.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/06/online-shopping-cart-software-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" class=\"alignnone size-medium wp-image-3114\" /></a>\r\n\r\nWineries/distilleries have different ways of collecting new mailing addresses. Many use a branded mailing list sign up card. Some wineries/distilleries insist on an email address for every POS transaction. Others incentivize staff to collect mailing list detail or email addresses by paying a dollar amount per name(s) collected per day/week/month etc. Some even offer perks to the guests who sign up, in the form of an immediate purchase discount or limited edition type products, such as signed magnums or engraved flasks.\r\n\r\nWhatever method your craft beverage business currently employs, you really should consider a Kiosk system. If your craft business setting already uses iPads you can easily turn an extra iPad into a Kiosk station to allow and encourage guests who are roaming around your tasting room to self-serve and sign up. Let your guests do the work of entering their data details directly into your POS system accomplishing a couple of things. Firstly, no staff member needs to stay late to input all the sign-ups collected. In fact, by employing a Kiosk system for addresses and emails for mailing lists, whether snail mail or email, you are making it very easy for guests to sign up! In this way no one can say your craft business tasting room has pushy sales people. In fact, if you already use a paper form it’s almost the same thing to ask folks to sign up just using a computer rather than a paper version. By letting the guest do the work you eliminate some of the administrative costs because no one on staff is manually entering the guest information. The main thing is to make sure your staff is trained to assist the guests in the sign-up process and are eager to promote it!\r\n\r\nCertainly your tasting room is providing you with an important opportunity for you to capture your customer emails and mailing addresses. You have welcomed them, toured, tasted and taken photos of and with them. Perhaps the guests want to sign up for the club to keep the experience of connectedness with the winery/distillery continuing. Here is another reason to have a Kiosk rather than a paper wine club application form. Invariably in many instances the guest is making a purchase and signing up for the club simultaneously. With a Kiosk the guest joining the club can enter their credit card number along with all the ship to/bill to data at the same time. Instead of a paper form which has to be entered in the back of the house at a later dated the details are already the system by the customer directly, often limiting errors from hard to read scribblings on a wine club form. The customer now is a new club member immediately rather than the delay of inputting the application later. \r\n\r\nHaving a Kiosk makes it easier for guests who visit your tasting room and serves as an efficient way to build continued excitement about your craft beverage business. The Kiosk then automatically syncs up with your POS and even updates your email marketing list to stay in touch with your guests in a personal manner.\r\n\r\nHowever you, the winery/distillery, want to collect mail and email addresses via paper forms or Kiosk, Active has you covered. Active’s easy iPad POS is designed for busy winery tasting rooms, craft beverage businesses, and retail locations. It includes powerful club features, inventory management, alcohol shipping, tips functionality, and kitchen/fulfillment printing built right in. It communicates live with your unique master database so it is always current with customer and inventory data. To request a DEMO contact Thomas@activeclubsolutions.net  directly.  Or, visit our website for more information at activeclubsolutions.net.\r\n','Consider A Kiosk in Your Tasting Room','','pending','closed','open','','consider-a-kiosk-in-your-tasting-room','','','2022-08-14 21:02:45','2022-08-15 04:02:45','',0,'https://activeclubsolutions.net/?p=3113',0,'post','',0),
(3114,10,'2018-06-22 18:59:39','2018-06-23 01:59:39','','online shopping cart software','','inherit','closed','closed','','online-shopping-cart-software','','','2018-06-22 18:59:39','2018-06-23 01:59:39','',3113,'https://activeclubsolutions.net/wp-content/uploads/2018/06/online-shopping-cart-software.jpg',0,'attachment','image/jpeg',0),
(3117,2,'2018-06-28 13:49:36','2018-06-28 20:49:36','\r\n\r\n\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/06/Dusted-Valley-TR_woodinville.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/06/Dusted-Valley-TR_woodinville-300x221.jpg\" alt=\"\" width=\"300\" height=\"221\" class=\"alignnone size-medium wp-image-3118\" /></a>\r\n\r\nTasting rooms at wineries, and now distilleries have become a big business, with ever-grander facilities that draw millions of people, which leads to fancier facilities and more visitors. It’s a virtuous cycle — mostly. Here are some tips for the tasting rooms themselves: a single bad experience can cost a brand a customer, every touch point matters, and customers expect a personalized experience. \r\n\r\nFrom the business perspective four key drivers of customer experience include: \r\n\r\n1.	Matter of mentality\r\n2.	The adoption of new IT technologies\r\n3.	A new approach of the market\r\n4.	A consciousness of where to go with your brand\r\n\r\nThe touchpoints for the wine or spirits consumer in the customer experience life cycle starts with the discovery facet. Whether in a tasting room setting or special event, stopping in accidently or via a referral, the experience felt from start to finish, sets the tone for the perceptions and expectations and ultimately value of the customer to that business. Opportunities to connect are many and can be executed at home, winery/distillery, retail shop, social events, websites, chat, and other options such as club or subscriber events only. \r\n\r\nThe best bet is to capitalize on best practices in customer experience, by having a set of systems, technological tools, and, efficient processes that will deliver to your visitors, the grand and welcoming experience you want them to have long term, and at every touch point.  Of course, be sure to train your staff to be friendly and welcoming.  A smile goes along way. \r\n\r\nActive’s Mobile all-in-one system will help you and your staff manage customer perception and expectation by simplifying tasks, offering real time data answers freeing the staff to sell more smartly with less effort. Active’s easy iPad POS is designed for busy winery/distillery tasting rooms, craft beverage businesses, and retail locations. It includes powerful club features, inventory management, alcohol shipping, tips functionality, kiosk feature, loyalty/gift cards capabilities, and kitchen/fulfillment printing built right in. It communicates live with your unique master database, so it is always current with customer and inventory data. \r\n\r\nTo request a DEMO contact Thomas@activeclubsolutions.net  directly.  Or, visit our website for more information at activeclubsolutions.net.\r\n\r\n\r\n','Importance of Customer Experience','','pending','closed','open','','importance-of-customer-experience','','','2022-08-14 21:02:45','2022-08-15 04:02:45','',0,'https://activeclubsolutions.net/?p=3117',0,'post','',0),
(3118,10,'2018-06-28 13:47:56','2018-06-28 20:47:56','','Dusted Valley TR_woodinville','','inherit','closed','closed','','dusted-valley-tr_woodinville','','','2018-06-28 13:47:56','2018-06-28 20:47:56','',3117,'https://activeclubsolutions.net/wp-content/uploads/2018/06/Dusted-Valley-TR_woodinville.jpg',0,'attachment','image/jpeg',0),
(3158,2,'2018-07-10 20:53:51','2018-07-11 03:53:51','<div style=\"margin-top: -100px;\"></div>\r\n\r\n[ACSScript server=TEST dbname=demodb_3]\r\n[ACSiFrame2 server=TEST dbname=demodb_3 scenario=5  usesession=yes fcrid=FC0000018 bottommargin=20 scrollpoint=35]','Example Online Store - Calistoga','','publish','closed','closed','','shopping-cart-7','','','2020-10-14 07:19:46','2020-10-14 14:19:46','',1497,'https://activeclubsolutions.net/?page_id=3158',0,'page','',0),
(3162,2,'2018-07-10 21:31:21','2018-07-11 04:31:21','[ACSScript server=CA dbname=demodb_3]\r\n[ACSiFrame2 server=CA dbname=demodb_3 scenario=5 usesession=yes fcrid=FC0000017 waitcursor=ring.gif bottommargin=20 scrollpoint=200]','Example Online Store - Paso Robles','','publish','closed','closed','','shopping-cart-8','','','2019-06-01 22:25:32','2019-06-02 05:25:32','',1497,'https://activeclubsolutions.net/?page_id=3162',0,'page','',0),
(3188,2,'2018-07-11 17:02:47','2018-07-12 00:02:47','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/07/RED-CAR-TR-600-x-400.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/07/RED-CAR-TR-600-x-400-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" class=\"alignnone size-medium wp-image-3189\" /></a>\r\n\r\nYou have planned your strategy, forecasted your budget, and implemented best practices for your tasting room staff. Faithfully every month you prepare your reports and gage progress against P&L to present to the upper management or ownership. You review data analytic reports throughout the month and notice a trend. Your visitor traffic has declined, yet as a secondary result your per person spend is up. You praise your staff for their effort as they are spending more time with each customer making the total sale higher than ever. Even with the per person spend increase, because the decline in traffic to your tasting room, you note gross sales are down on merchandise, wine sales and club sign-ups. Six months have already passed and now you need to react in some fashion to the lighter customer flow, so you can make up the difference in your numbers and keep your bosses happy. What is a tasting room manager to do?\r\n\r\nIf you have an all-in-one data base or a savvy data management system you can search your records to find ad hoc solutions that can help you mitigate the downward trends in revenue you are noticing. You have time to react and time to take a different tact that will ultimately help you to make the most of the next six months; to capitalize on meeting your numbers despite the lower visitor count in the tasting room. If you are a larger winery or distillery you can call in your marketing department to fill the gaps with new marketing programs. When you are a smaller scale winery or distillery and you already wear many hats; it is up to you to come with new ideas to stimulate your revenue streams.\r\n\r\nWhat are quick fix ideas based on your data reporting that could ease the downward decline of your revenues and get you back on track to your annual target goal? Email marketing is a quick fix solution. You review your inventory and come up with an email campaign that reaches the folks most likely to purchase because they have purchased from you before and you are inviting them to a “special” that is too compelling not to buy. You segment your email customers with an offer that is not available anywhere else, or you offer a pre-release, a library product, a discount on merchandise or shipping, or maybe a special invite to meet the winemaker in another city for dinner or a reception. You used your data to tell you what to do next. Your complete system allows you to send branded marketing messages and offers to your customer’s home or office 24/7.\r\n\r\nActive’s Mobile all-in-one system will help you and your staff take control of a negative trend of dwindling customer traffic affecting your bottom line. By simplifying tasks, offering real time data answers giving you as the tasting room manager other ways of stimulating your staff to sell more smartly with less effort. Active’s easy iPad POS is designed for busy winery/distillery tasting rooms, craft beverage businesses, and retail locations. It includes powerful club features, inventory management, marketing emails, alcohol shipping, tips functionality, kiosk feature, loyalty/gift cards capabilities, and kitchen/fulfillment printing built right in. It communicates live with your unique master database, so it is always current with customer and inventory data. \r\n\r\nTo request a DEMO contact Thomas@activeclubsolutions.net directly.  Or, visit our website for more information at activeclubsolutions.net.\r\n','In the Tasting Room Manager\'s Shoes','','pending','closed','open','','in-the-tasting-room-managers-shoes','','','2022-08-14 21:02:45','2022-08-15 04:02:45','',0,'https://activeclubsolutions.net/?p=3188',0,'post','',0),
(3189,10,'2018-07-11 17:01:38','2018-07-12 00:01:38','','RED CAR TR (600 x 400)','','inherit','closed','closed','','red-car-tr-600-x-400','','','2018-07-11 17:01:38','2018-07-12 00:01:38','',3188,'https://activeclubsolutions.net/wp-content/uploads/2018/07/RED-CAR-TR-600-x-400.jpg',0,'attachment','image/jpeg',0),
(3199,2,'2018-07-13 14:18:03','2018-07-13 21:18:03','<div style=\"margin-top: -100px;\"></div>\r\n\r\n[ACSScript server=TEST dbname=demodb_3]\r\n[ACSiFrame2 server=TEST dbname=demodb_3 scenario=5 usesession=yes fcrid=FC0000015 waitcursor=ring.gif bottommargin=0 scrollpoint=1]\r\n\r\n','Example Online Store - Sonoma','','publish','closed','closed','','shopping-cart-9','','','2022-04-03 15:11:43','2022-04-03 22:11:43','',1497,'https://activeclubsolutions.net/?page_id=3199',0,'page','',0),
(3215,2,'2018-07-14 15:54:03','2018-07-14 22:54:03','','DesignLivermore','','inherit','closed','closed','','designlivermore','','','2018-07-14 15:54:03','2018-07-14 22:54:03','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/07/DesignLivermore.png',0,'attachment','image/png',0),
(3216,2,'2018-07-14 15:54:17','2018-07-14 22:54:17','','DesignElkgrove','','inherit','closed','closed','','designelkgrove','','','2018-07-14 15:54:17','2018-07-14 22:54:17','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/07/DesignElkgrove.png',0,'attachment','image/png',0),
(3217,2,'2018-07-14 15:54:22','2018-07-14 22:54:22','','DesignStockton','','inherit','closed','closed','','designstockton','','','2018-07-14 15:54:22','2018-07-14 22:54:22','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/07/DesignStockton.png',0,'attachment','image/png',0),
(3218,2,'2018-07-14 15:54:26','2018-07-14 22:54:26','','DesignWallaWalla','','inherit','closed','closed','','designwallawalla','','','2018-07-14 15:54:26','2018-07-14 22:54:26','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/07/DesignWallaWalla.png',0,'attachment','image/png',0),
(3219,2,'2018-07-14 15:54:30','2018-07-14 22:54:30','','DesignDundee','','inherit','closed','closed','','designdundee','','','2018-07-14 15:54:30','2018-07-14 22:54:30','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/07/DesignDundee.png',0,'attachment','image/png',0),
(3220,2,'2018-07-14 15:54:34','2018-07-14 22:54:34','','DesignNapa','','inherit','closed','closed','','designnapa','','','2018-07-14 15:54:34','2018-07-14 22:54:34','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/07/DesignNapa.png',0,'attachment','image/png',0),
(3221,2,'2018-07-14 15:54:38','2018-07-14 22:54:38','','DesignSonoma','','inherit','closed','closed','','designsonoma','','','2018-07-14 15:54:38','2018-07-14 22:54:38','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/07/DesignSonoma.png',0,'attachment','image/png',0),
(3222,2,'2018-07-14 15:54:43','2018-07-14 22:54:43','','DesignPasoRobles','','inherit','closed','closed','','designpasorobles','','','2018-07-14 15:54:43','2018-07-14 22:54:43','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/07/DesignPasoRobles.png',0,'attachment','image/png',0),
(3225,2,'2018-07-14 18:30:03','2018-07-15 01:30:03','','DesignCalistoga','','inherit','closed','closed','','designcalistoga','','','2018-07-14 18:30:03','2018-07-15 01:30:03','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/07/DesignCalistoga.png',0,'attachment','image/png',0),
(3267,2,'2018-07-20 17:41:52','2018-07-21 00:41:52','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/07/MollyGregg-Apelgren1-368-x-358.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/07/MollyGregg-Apelgren1-368-x-358-300x292.jpg\" alt=\"\" width=\"300\" height=\"292\" class=\"alignnone size-medium wp-image-3268\" /></a>\r\n\r\nPleasanton, CA – Activ8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, club software, ecommerce) since 2003, and is pleased to welcome Molly Gregg to the team, in a new role for the company, as In-House Web Designer.\r\n\r\nAs Web Designer for ACS, Gregg will perform a broad range of web and website projects, programming duties in a dynamic, entrepreneurial environment. Gregg’s service will be to offer current and future Active clients the ability to hire Active’s in-house web design developer; whether it be an entire website redesign or, a simple modification to ensure a smooth transition when onboarding with Active’s Ecommerce platform. \r\n\r\n“I love what I do for a living! With many years in the web industry, my job is to take my client’s ideas and turn them into stunning digital representations of their vision. Whether it’s creating website or software designs, presentations, researching and developing UX, wire-framing, prototyping, iconography, a combinations of all of these or some other digital creation yet to be determined, I bring a passion and focus down to the last detail of all I do,” says Gregg.\r\n\r\nMolly joins Activ8 Commerce after many years working a variety of roles in the technology world. Her resume entries include web developer for the American Symphony, web designer for Kendall Jackson managing over 40 branded websites within their portfolio, then spending nearly a decade as senior web designer with a large bio-tech firm. Recently starting her own web design business Molly is “happiest where design meets beauty and functionality” according to her LinkedIn profile! A graduate of San Francisco State University Gregg received her Master’s in Instructional Technologies with an emphasis on user interaction. This program mainly focuses on instructional skills such as web design, graphics animation and video. Molly strengthens Active by adding web design to Active’s menu of services. Not just basic web design but breathtaking web design is now an option with Active. \r\n\r\n“Molly Gregg brings unparalleled creativity and design skills to Active’s team.  We could not be more excited to provide our clients an opportunity to enhance their online presence with Molly’s experience and commitment to innovation.”  Dan Nechemias, VP of Sales and Marketing Activ8 Commerce\r\n\r\nAbout Activ8 Commerce:\r\nActiv8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, club software, ecommerce). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net.\r\nContact: Dan Nechemias\r\nDan Nechemias, Vice President of Sales and Marketing\r\nDan@activeclubsolutions.net\r\n(925) 248-4190 (ext. 56) or (877) 441-CLUB (ext. 56)\r\n# # #\r\n','Activ8 Commerce, Inc. Introduces New In-House Web Designer to Team','','pending','closed','open','','active-club-solutions-inc-introduces-new-in-house-web-designer-to-team','','','2022-08-14 21:02:45','2022-08-15 04:02:45','',0,'https://activeclubsolutions.net/?p=3267',0,'post','',0),
(3268,10,'2018-07-20 17:37:54','2018-07-21 00:37:54','','MollyGregg-Apelgren1 (368 x 358)','','inherit','closed','closed','','mollygregg-apelgren1-368-x-358','','','2018-07-20 17:37:54','2018-07-21 00:37:54','',3267,'https://activeclubsolutions.net/wp-content/uploads/2018/07/MollyGregg-Apelgren1-368-x-358.jpg',0,'attachment','image/jpeg',0),
(3271,2,'2018-07-24 12:12:47','2018-07-24 19:12:47','','PricingChart_7','','inherit','closed','closed','','pricingchart_7','','','2018-07-24 12:12:47','2018-07-24 19:12:47','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/07/PricingChart_7.png',0,'attachment','image/png',0),
(3275,15,'2018-07-27 12:12:51','2018-07-27 19:12:51','<div style=\"width: 100%; padding-bottom: 20%; margin: auto; margin-top: -10px;\">\r\n<div style=\"width: 15%; float: right; margin-right: 60px;\">\r\n<p style=\"font-size: 1em;\">Activ8\'s Preferred Hosting Service:\r\n<a href=\"http://shareasale.com/r.cfm?b=742056&amp;u=1835062&amp;m=41388&amp;urllink=&amp;afftrack=\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"/wp-content/uploads/2018/08/WPE-300x250-fastest-3-300x250.jpg\" width=\"300\" height=\"250\" class=\"alignright size-medium wp-image-3419\" alt=\"WP Engine\" border=\"0\" /></a></p>\r\n\r\n</div>\r\n<div style=\"width: 80%; margin-left: 90px;\">\r\n<p style=\"padding-bottom: 15px; font-size: 4em; line-height: 1em;\">Customize Your Look</p>\r\nNot a wizard with html and need to brighten up your emails with a look that will catch your customers attention? We now offer Custom Email Designs to get your brand accross all digital marketing platforms.\r\n\r\nAre looking for a new website, need a refresh on the one you have, or want to keep your current site updated? We can help you with our professional digital design and development services offering expert knowledge of Activ8\'s eCommerce integration.\r\n\r\nFor more information please call 925-248-4190 ext. 47 or <a href=\"/contact-active-club-solutions/\">email us</a>.</p></div>\r\n\r\n<div style=\"width: 60%; margin-left: 90px;\">\r\n<p style=\"padding-bottom: 0px; margin-bottom: -5px;\"><strong>Below is a portfolio</strong> of some of Molly\'s work in the wine, spirits, and hospitality industries. Rollover images and click on the plus icon <img class=\"alignnone size-full wp-image-3376\" style=\"vertical-align: bottom; margin-bottom: 3px;\" src=\"/wp-content/uploads/2018/07/plus-icon2.png\" alt=\"\" width=\"18\" height=\"17\" /> to see more layouts the design. </p>\r\n\r\n</div>\r\n[portfolio-x mode=\"portfolio\" portfolio=\"3338\" theme_style=\"template-13\" orderby=\"menu_order\" order=\"ASC\"]\r\n\r\n</div>\r\n\r\n<div style=\"width: 60%; margin-left: 90px;\">\r\n\r\n<p style=\"padding-bottom: 15px; font-size: 4em; line-height: 1em;\"><img style=\"float: right; padding-left: 10px;\" src=\"/wp-content/uploads/2018/08/molly_gregg_apelgren.png\" alt=\"\" width=\"154\" height=\"154\" />About the Designer</p>\r\n\r\n<p style=\"padding-bottom: 25px;\">As a Web Designer for Activ8 Commerce, Molly Gregg performs a broad range of web and website projects, programming duties in a dynamic, entrepreneurial environment. Gregg’s service will be to offer current and future Active clients the ability to hire Active’s in-house web design developer; whether it be an entire website redesign or, a simple modification to ensure a smooth transition when onboarding with Active’s E-commerce platform.</p>\r\n\r\n</div>\r\n\r\n<div style=\"width: 100%; padding-bottom: 3%; margin: 0 auto;\">\r\n<p style=\"font-size: 1em; text-align: center;\">Activ8\'s Preferred Hosting Service:\r\n<a href=\"http://shareasale.com/r.cfm?b=742056&amp;u=1835062&amp;m=41388&amp;urllink=&amp;afftrack=\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"/wp-content/uploads/2018/08/YourWordPressDXP728x90.png\" alt=\"WP Engine\" width=\"728\" height=\"90\" class=\"aligncenter size-full wp-image-3420\" /></a></p>\r\n\r\n</div>\r\n\r\n','Digital Design Services','','publish','closed','closed','','web-design-portfolio','','','2021-12-30 10:54:09','2021-12-30 18:54:09','',2816,'https://activeclubsolutions.net/?page_id=3275',6,'page','',0),
(3281,15,'2018-07-26 14:56:40','2018-07-26 21:56:40','','header-design-portfolio','','inherit','closed','closed','','header-design-portfolio','','','2018-07-26 14:56:40','2018-07-26 21:56:40','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/07/header-design-portfolio.jpg',0,'attachment','image/jpeg',0),
(3288,15,'2018-07-26 17:10:46','2018-07-27 00:10:46','','showcase-5by10-wines-main','','inherit','closed','closed','','showcase-5by10-wines-main','','','2018-07-26 17:10:46','2018-07-27 00:10:46','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/07/showcase-5by10-wines-main.jpg',0,'attachment','image/jpeg',0),
(3289,15,'2018-07-26 17:13:02','2018-07-27 00:13:02','','layout-5by10-wines','','inherit','closed','closed','','layout-5by10-wines','','','2018-07-26 17:13:02','2018-07-27 00:13:02','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/07/layout-5by10-wines.jpg',0,'attachment','image/jpeg',0),
(3290,15,'2018-07-26 17:44:44','2018-07-27 00:44:44','','showcase-Q-spirits','','inherit','closed','closed','','showcase-q-spirits','','','2018-07-26 17:44:44','2018-07-27 00:44:44','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/07/showcase-Q-spirits.jpg',0,'attachment','image/jpeg',0),
(3291,15,'2018-07-26 17:45:13','2018-07-27 00:45:13','','layout-Qspirits','','inherit','closed','closed','','layout-qspirits','','','2018-07-26 17:45:13','2018-07-27 00:45:13','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/07/layout-Qspirits.jpg',0,'attachment','image/jpeg',0),
(3292,2,'2018-07-26 21:47:31','2018-07-27 04:47:31','<link href=\"http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700\"  rel=\"stylesheet\">\r\n\r\n<div class=\"ACSLoginDiv\" onclick=\"ACSLoginClicked();\"><span id=\"ACSLogin\" class=\"ACSLogin\">Member Login</span></div>\r\n\r\n[ACSScript server=CA dbname=demodb_3]\r\n[ACSiFrame server=CA dbname=demodb_3 scenario=5 usesession=yes fcrid=FC0000022 waitcursor=rotator2.gif bottommargin=20 scrollpoint=135]\r\n\r\n','Example Online Store - Petaluma','','publish','closed','closed','','shopping-cart-10','','','2019-02-25 20:21:00','2019-02-26 04:21:00','',1497,'https://activeclubsolutions.net/?page_id=3292',0,'page','',0),
(3296,15,'2018-07-27 19:30:06','2018-07-28 02:30:06','','header-design-portfolio4','','inherit','closed','closed','','header-design-portfolio4','','','2018-07-27 19:30:06','2018-07-28 02:30:06','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/07/header-design-portfolio4.jpg',0,'attachment','image/jpeg',0),
(3298,15,'2018-07-27 19:34:06','2018-07-28 02:34:06','','header-design-portfolio4','','inherit','closed','closed','','header-design-portfolio4-2','','','2018-07-27 19:34:06','2018-07-28 02:34:06','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/07/header-design-portfolio4-1.jpg',0,'attachment','image/jpeg',0),
(3300,2,'2018-07-28 13:25:19','2018-07-28 20:25:19','','Media','','private','closed','closed','','media','','','2018-07-28 13:25:19','2018-07-28 20:25:19','',0,'https://activeclubsolutions.net/?option-tree=media',0,'option-tree','',0),
(3302,2,'2018-07-28 22:57:42','2018-07-29 05:57:42','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n<h1><i>Activ8 POS</i>&nbsp; Bug Video Collection</h1>\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[gap height=\"40\" /]\r\n[one_third last=\"no\"]\r\n[box title=\"POS - breaks in front of a live audience\"][ACSUTube id=\"K1F6d5sWgTI\"/][/box]\r\n[box title=\"POS - Schedule\"][ACSUTube id=\"4bNfEV5LYyk\"/][/box]\r\n[box title=\"POS - Wholesale POS - Delete a paid transaction bug\"][ACSUTube id=\"Ma-5TtwAay4\"/][/box]\r\n[box title=\"POS - Enhancement Request\"][ACSUTube id=\"f36Y_5F0xLI\"/][/box]\r\n[box title=\"POS - Schedule List - Enhancement Request\"][ACSUTube id=\"1vkCZLRCoXk\"/][/box]\r\n[box title=\"POS - Eliminate Print/Email window switch\"][ACSUTube id=\"5cChku6jwdI\"/][/box]\r\n[box title=\"POS - Forced Pickup Signature - Swap bypass from setting\"][ACSUTube id=\"RjJBCtdSeFk\"/][/box]\r\n[/one_third]\r\n[one_third last=\"no\"]\r\n[box title=\"POS - Email Window\"][ACSUTube id=\"EQ-LHqyK_wQ\"/][/box]\r\n[box title=\"POS - Add Inventory does not understand update\"][ACSUTube id=\"BVESGFgOVKg\"/][/box]\r\n[box title=\"POS - Adjust On Hand on POS\"][ACSUTube id=\"PZLubuaHxE0\"/][/box]\r\n[box title=\"POS - Reports Menu Options bug\"][ACSUTube id=\"d74K8L55W4Y\"/][/box]\r\n[box title=\"POS - Schedule - the 3 buttons on the right\"][ACSUTube id=\"wGHf0tGUGNQ\"/][/box]\r\n[box title=\"POS - Email Window - First / Last Names missing\"][ACSUTube id=\"JZ_GupvrWf4\"/][/box]\r\n[box title=\"POS - Customer Search includes cell phone which is not displayed on POS\"][ACSUTube id=\"Ng1w-lqyrjc\"/][/box]\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n[box title=\"POS - Pending order missing name\"][ACSUTube id=\"dhk8xwLJC_Y\"/][/box]\r\n[box title=\"POS - Wholesale Only Bugs\"][ACSUTube id=\"JgF4CRvWrXA\"/][/box]\r\n[box title=\"POS Location Display list - we can do better\"][ACSUTube id=\"4nNbhBIgrdc\"/][/box]\r\n[box title=\"POS - Clock in Clock out - Manage - Inconsistency\"][ACSUTube id=\"LWr3mZgTf9I\"/][/box]\r\n[box title=\"POS - Checks Collected Value Bug\"][ACSUTube id=\"FlzygJZapjs\"/][/box]\r\n[box title=\"POS - Print / Email Window - cannot close\"][ACSUTube id=\"0-CWCPtqOfI\"/][/box]\r\n[/one_third]\r\n\r\n[/fullbox]\r\n\r\n','POS Bug Video Collection','','publish','closed','closed','','pos-bug-video-collection','','','2018-11-13 20:19:30','2018-11-14 04:19:30','',0,'https://activeclubsolutions.net/?page_id=3302',0,'page','',0),
(3321,15,'2018-08-06 15:59:11','2018-08-06 22:59:11','5 by 10 Wines was created to showcase the winery’s events, vineyard, and products – all of which are available to the customer online, including a wine club signup. The site was designed to seamlessly develop in a WordPress environment, giving the client full access to updating web pages as needed.','5 by 10 Wines','','publish','closed','closed','','5-by-10-wines-2','','','2018-08-08 12:42:40','2018-08-08 19:42:40','',0,'https://activeclubsolutions.net/?post_type=portfolio-x&#038;p=3321',1,'portfolio-x','',0),
(3322,15,'2018-07-31 15:58:55','2018-07-31 22:58:55','','showcase-5by10-wines','','inherit','closed','closed','','showcase-5by10-wines','','','2018-07-31 15:58:55','2018-07-31 22:58:55','',3321,'https://activeclubsolutions.net/wp-content/uploads/2018/07/showcase-5by10-wines.jpg',0,'attachment','image/jpeg',0),
(3323,15,'2018-08-07 09:01:13','2018-08-07 16:01:13','Q Spirits was designed to showcase Active Solutions dynamic shopping cart. The cart is created entirely of iFrames and CSS, eliminating the need for browser cookies. It’s an affordable solution for managing your online experience and inventory. Active Solutions primary customers are currently in the wine and spirits industry.','Q Spirits eCommerce','','publish','closed','closed','','q-spirits-ecommerce','','','2018-08-08 12:41:49','2018-08-08 19:41:49','',0,'https://activeclubsolutions.net/?post_type=portfolio-x&#038;p=3323',0,'portfolio-x','',0),
(3324,15,'2018-07-31 16:00:57','2018-07-31 23:00:57','','showcase-Q-spirits-2','','inherit','closed','closed','','showcase-q-spirits-2','','','2018-07-31 16:00:57','2018-07-31 23:00:57','',3323,'https://activeclubsolutions.net/wp-content/uploads/2018/07/showcase-Q-spirits-2.jpg',0,'attachment','image/jpeg',0),
(3325,15,'2018-08-04 16:07:13','2018-08-04 23:07:13','My Vine Experience was created to offer the tourist traveling to the wine country a unique and tailored experience ranging from a couples weekend to a friends getaway or perhaps a wedding or pre-wedding celebration. The service gave customers a chance to experience the wine country in a way previously not possible for a newcomer visiting the area.','My Vine Experience','','publish','closed','closed','','my-vine-experience','','','2018-08-08 12:44:36','2018-08-08 19:44:36','',0,'https://activeclubsolutions.net/?post_type=portfolio-x&#038;p=3325',4,'portfolio-x','',0),
(3326,15,'2018-07-31 16:06:36','2018-07-31 23:06:36','','my-vine-2-1024x666','','inherit','closed','closed','','my-vine-2-1024x666','','','2018-07-31 16:06:36','2018-07-31 23:06:36','',3325,'https://activeclubsolutions.net/wp-content/uploads/2018/07/my-vine-2-1024x666.jpg',0,'attachment','image/jpeg',0),
(3327,15,'2018-07-31 16:07:04','2018-07-31 23:07:04','','my-vine-feature-1024x569','','inherit','closed','closed','','my-vine-feature-1024x569','','','2018-07-31 16:07:04','2018-07-31 23:07:04','',3325,'https://activeclubsolutions.net/wp-content/uploads/2018/07/my-vine-feature-1024x569.jpg',0,'attachment','image/jpeg',0),
(3329,15,'2018-08-05 19:18:22','2018-08-06 02:18:22','While working at Kendall Jackson, I was involved in designing and coding a variety of email campaigns and websites. The company, who is known for their name brand wines, also owned many boutique wineries. As a designer for the company, I helped keep each brands unique look-and-feel. Byron was one of those wineries.','Byron Winery','','publish','closed','closed','','byron','','','2018-08-08 12:59:14','2018-08-08 19:59:14','',0,'https://activeclubsolutions.net/?post_type=portfolio-x&#038;p=3329',2,'portfolio-x','',0),
(3330,15,'2018-07-31 19:17:39','2018-08-01 02:17:39','','byron_l2_3_0','','inherit','closed','closed','','byron_l2_3_0','','','2018-07-31 19:17:39','2018-08-01 02:17:39','',3329,'https://activeclubsolutions.net/wp-content/uploads/2018/07/byron_l2_3_0.jpg',0,'attachment','image/jpeg',0),
(3331,15,'2018-07-31 19:17:47','2018-08-01 02:17:47','','port-thumb-7-1024x714','','inherit','closed','closed','','port-thumb-7-1024x714','','','2018-07-31 19:17:47','2018-08-01 02:17:47','',3329,'https://activeclubsolutions.net/wp-content/uploads/2018/07/port-thumb-7-1024x714.jpg',0,'attachment','image/jpeg',0),
(3338,15,'2018-07-31 19:29:58','2018-08-01 02:29:58','','Portfolio','','publish','closed','closed','','portfolio','','','2021-12-30 10:49:35','2021-12-30 18:49:35','',0,'https://activeclubsolutions.net/?post_type=qcpx_portfolio&#038;p=3338',0,'qcpx_portfolio','',0),
(3345,15,'2018-08-02 00:53:01','2018-08-02 07:53:01','[portfolio-x mode=\"portfolio\" portfolio=\"3338\" theme_style=\"template-01\" orderby=\"date\" order=\"ASC\"]\r\n\r\n[portfolio-x mode=\"portfolio\" portfolio=\"3359\" theme_style=\"template-01\" orderby=\"date\" order=\"ASC\" limit=\"2\"]','PX-test','','private','closed','closed','','px-test','','','2018-08-07 19:03:38','2018-08-08 02:03:38','',0,'https://activeclubsolutions.net/?page_id=3345',0,'page','',0),
(3359,15,'2018-08-07 15:44:00','0000-00-00 00:00:00','','test','','draft','closed','closed','','','','','2018-08-07 15:44:00','2018-08-07 22:44:00','',0,'https://activeclubsolutions.net/?post_type=qcpx_portfolio&#038;p=3359',0,'qcpx_portfolio','',0),
(3366,15,'2018-08-07 20:06:16','2018-08-08 03:06:16','','feature-image-Q','','inherit','closed','closed','','feature-image-q','','','2018-08-07 20:06:16','2018-08-08 03:06:16','',3323,'https://activeclubsolutions.net/wp-content/uploads/2018/07/feature-image-Q.jpg',0,'attachment','image/jpeg',0),
(3374,15,'2018-08-07 20:36:42','2018-08-08 03:36:42','','feature-image-5by10','','inherit','closed','closed','','feature-image-5by10-5','','','2018-08-07 20:36:42','2018-08-08 03:36:42','',3321,'https://activeclubsolutions.net/wp-content/uploads/2018/07/feature-image-5by10-4.jpg',0,'attachment','image/jpeg',0),
(3375,15,'2018-08-07 20:41:28','2018-08-08 03:41:28','','plus-icon','','inherit','closed','closed','','plus-icon','','','2018-08-07 20:41:28','2018-08-08 03:41:28','',3321,'https://activeclubsolutions.net/wp-content/uploads/2018/07/plus-icon.png',0,'attachment','image/png',0),
(3376,15,'2018-08-07 20:51:51','2018-08-08 03:51:51','','plus-icon2','','inherit','closed','closed','','plus-icon2','','','2018-08-07 20:51:51','2018-08-08 03:51:51','',3321,'https://activeclubsolutions.net/wp-content/uploads/2018/07/plus-icon2.png',0,'attachment','image/png',0),
(3378,15,'2018-08-08 10:35:58','2018-08-08 17:35:58','','feature-image-my-vine','','inherit','closed','closed','','feature-image-my-vine','','','2018-08-08 10:35:58','2018-08-08 17:35:58','',3325,'https://activeclubsolutions.net/wp-content/uploads/2018/07/feature-image-my-vine.jpg',0,'attachment','image/jpeg',0),
(3380,15,'2018-08-08 10:52:32','2018-08-08 17:52:32','','feature-image-my-vine','','inherit','closed','closed','','feature-image-my-vine-2','','','2018-08-08 10:52:32','2018-08-08 17:52:32','',3325,'https://activeclubsolutions.net/wp-content/uploads/2018/07/feature-image-my-vine-1.jpg',0,'attachment','image/jpeg',0),
(3381,15,'2018-08-08 11:11:08','2018-08-08 18:11:08','','my-vine-travel-page-2','','inherit','closed','closed','','my-vine-travel-page-2','','','2018-08-08 11:11:08','2018-08-08 18:11:08','',3325,'https://activeclubsolutions.net/wp-content/uploads/2018/07/my-vine-travel-page-2.jpg',0,'attachment','image/jpeg',0),
(3382,15,'2018-08-08 11:11:13','2018-08-08 18:11:13','','my-vine-home-2','','inherit','closed','closed','','my-vine-home-2','','','2018-08-08 11:11:13','2018-08-08 18:11:13','',3325,'https://activeclubsolutions.net/wp-content/uploads/2018/07/my-vine-home-2.jpg',0,'attachment','image/jpeg',0),
(3384,15,'2018-08-08 11:27:54','2018-08-08 18:27:54','','feature-image-byron','','inherit','closed','closed','','feature-image-byron','','','2018-08-08 11:27:54','2018-08-08 18:27:54','',3329,'https://activeclubsolutions.net/wp-content/uploads/2018/07/feature-image-byron.jpg',0,'attachment','image/jpeg',0),
(3385,15,'2018-08-08 11:42:53','2018-08-08 18:42:53','','feature-image-byron','','inherit','closed','closed','','feature-image-byron-2','','','2018-08-08 11:42:53','2018-08-08 18:42:53','',3329,'https://activeclubsolutions.net/wp-content/uploads/2018/07/feature-image-byron-1.jpg',0,'attachment','image/jpeg',0),
(3386,15,'2018-08-03 11:57:38','2018-08-03 18:57:38','The Bench Tasting Room was located in Santa Barbara and focused on a variety of artisan estate winery collections. The site was built to show people where the tasting room was located while featuring select wines and winemakers and showing any specials they were offering.','The Bench Tasting Room','','publish','closed','closed','','the-bench-tasting-room','','','2018-08-08 12:51:42','2018-08-08 19:51:42','',0,'https://activeclubsolutions.net/?post_type=portfolio-x&#038;p=3386',8,'portfolio-x','',0),
(3387,15,'2018-08-08 11:55:59','2018-08-08 18:55:59','','feature-image-the-bench','','inherit','closed','closed','','feature-image-the-bench','','','2018-08-08 11:55:59','2018-08-08 18:55:59','',3386,'https://activeclubsolutions.net/wp-content/uploads/2018/08/feature-image-the-bench.jpg',0,'attachment','image/jpeg',0),
(3388,15,'2018-08-08 11:57:18','2018-08-08 18:57:18','','bench-2-1024x777','','inherit','closed','closed','','bench-2-1024x777','','','2018-08-08 11:57:18','2018-08-08 18:57:18','',3386,'https://activeclubsolutions.net/wp-content/uploads/2018/08/bench-2-1024x777.jpg',0,'attachment','image/jpeg',0),
(3389,15,'2018-08-08 11:57:22','2018-08-08 18:57:22','','bench-feature-1024x569','','inherit','closed','closed','','bench-feature-1024x569','','','2018-08-08 11:57:22','2018-08-08 18:57:22','',3386,'https://activeclubsolutions.net/wp-content/uploads/2018/08/bench-feature-1024x569.jpg',0,'attachment','image/jpeg',0),
(3391,15,'2018-08-08 12:35:40','2018-08-08 19:35:40','While working at Kendall Jackson, I was involved in designing and coding a variety of email campaigns and websites. The company, who is known for their name brand wines, also owned many boutique wineries. As a designer for the company, I helped keep each brands unique look-and-feel. Cambria Estate Wines was one of those wineries.','Cambria Estate Wines','','publish','closed','closed','','cambria-estate','','','2018-08-08 13:00:43','2018-08-08 20:00:43','',0,'https://activeclubsolutions.net/?post_type=portfolio-x&#038;p=3391',8,'portfolio-x','',0),
(3392,15,'2018-08-08 12:34:44','2018-08-08 19:34:44','','feature-image-cambria','','inherit','closed','closed','','feature-image-cambria','','','2018-08-08 12:34:44','2018-08-08 19:34:44','',3391,'https://activeclubsolutions.net/wp-content/uploads/2018/08/feature-image-cambria.jpg',0,'attachment','image/jpeg',0),
(3394,15,'2018-08-08 13:00:22','2018-08-08 20:00:22','','cambria-1-back-1024x698','','inherit','closed','closed','','cambria-1-back-1024x698','','','2018-08-08 13:00:22','2018-08-08 20:00:22','',3391,'https://activeclubsolutions.net/wp-content/uploads/2018/08/cambria-1-back-1024x698.jpg',0,'attachment','image/jpeg',0),
(3395,15,'2018-08-08 13:00:26','2018-08-08 20:00:26','','cambria-2-new-1024x732','','inherit','closed','closed','','cambria-2-new-1024x732','','','2018-08-08 13:00:26','2018-08-08 20:00:26','',3391,'https://activeclubsolutions.net/wp-content/uploads/2018/08/cambria-2-new-1024x732.jpg',0,'attachment','image/jpeg',0),
(3396,15,'2018-08-08 14:07:56','2018-08-08 21:07:56','La Crema Wines, which produces Chardonnay, Pinot Noir &amp; Pinot Gris from the best regions in California, is another winery I designed for while working at Kendall Jackson. This layout, for wine club members, was created to keep the look-and-feel of the brand while also establishing a clean easy-to-read design that helps promote the winery\'s products and events.','La Crema Wines','','publish','closed','closed','','la-crema-wines','','','2018-08-08 14:28:25','2018-08-08 21:28:25','',0,'https://activeclubsolutions.net/?post_type=portfolio-x&#038;p=3396',8,'portfolio-x','',0),
(3397,15,'2018-08-08 14:07:13','2018-08-08 21:07:13','','feature-image-le-crema','','inherit','closed','closed','','feature-image-le-crema','','','2018-08-08 14:07:13','2018-08-08 21:07:13','',3396,'https://activeclubsolutions.net/wp-content/uploads/2018/08/feature-image-le-crema.jpg',0,'attachment','image/jpeg',0),
(3399,15,'2018-08-08 14:18:33','2018-08-08 21:18:33','','le-crema-2','','inherit','closed','closed','','le-crema-2','','','2018-08-08 14:18:33','2018-08-08 21:18:33','',3396,'https://activeclubsolutions.net/wp-content/uploads/2018/08/le-crema-2.jpg',0,'attachment','image/jpeg',0),
(3400,15,'2018-08-08 14:18:42','2018-08-08 21:18:42','','la-crema-layout','','inherit','closed','closed','','la-crema-layout','','','2018-08-08 14:18:42','2018-08-08 21:18:42','',3396,'https://activeclubsolutions.net/wp-content/uploads/2018/08/la-crema-layout.jpg',0,'attachment','image/jpeg',0),
(3401,15,'2018-08-08 14:36:24','2018-08-08 21:36:24','','molly_gregg_apelgren','','inherit','closed','closed','','molly_gregg_apelgren','','','2018-08-08 14:36:24','2018-08-08 21:36:24','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/08/molly_gregg_apelgren.png',0,'attachment','image/png',0),
(3405,15,'2018-08-09 15:54:36','2018-08-09 22:54:36','','header-design-portfolio5','','inherit','closed','closed','','header-design-portfolio5','','','2018-08-09 15:54:36','2018-08-09 22:54:36','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/08/header-design-portfolio5.jpg',0,'attachment','image/jpeg',0),
(3407,15,'2018-08-09 15:57:18','2018-08-09 22:57:18','','header-design-portfolio5','','inherit','closed','closed','','header-design-portfolio5-2','','','2018-08-09 15:57:18','2018-08-09 22:57:18','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/08/header-design-portfolio5-1.jpg',0,'attachment','image/jpeg',0),
(3408,15,'2018-08-09 16:42:39','2018-08-09 23:42:39','','header-design-portfolio5','','inherit','closed','closed','','header-design-portfolio5-3','','','2018-08-09 16:42:39','2018-08-09 23:42:39','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/08/header-design-portfolio5-2.jpg',0,'attachment','image/jpeg',0),
(3409,15,'2018-08-09 19:01:41','2018-08-10 02:01:41',' ','','','publish','closed','closed','','3409','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',2816,'https://activeclubsolutions.net/?p=3409',10,'nav_menu_item','',0),
(3410,15,'2018-08-09 20:59:32','2018-08-10 03:59:32','','header-design-portfolio6','','inherit','closed','closed','','header-design-portfolio6','','','2018-08-09 20:59:32','2018-08-10 03:59:32','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/08/header-design-portfolio6.jpg',0,'attachment','image/jpeg',0),
(3411,15,'2018-08-09 21:01:41','2018-08-10 04:01:41','','header-design-portfolio6','','inherit','closed','closed','','header-design-portfolio6-2','','','2018-08-09 21:01:41','2018-08-10 04:01:41','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/08/header-design-portfolio6-1.jpg',0,'attachment','image/jpeg',0),
(3412,15,'2018-08-09 21:03:08','2018-08-10 04:03:08','','header-design-portfolio6','','inherit','closed','closed','','header-design-portfolio6-3','','','2018-08-09 21:03:08','2018-08-10 04:03:08','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/08/header-design-portfolio6-2.jpg',0,'attachment','image/jpeg',0),
(3413,15,'2018-08-09 21:20:33','2018-08-10 04:20:33','','header-design-portfolio6','','inherit','closed','closed','','header-design-portfolio6-4','','','2018-08-09 21:20:33','2018-08-10 04:20:33','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/08/header-design-portfolio6-3.jpg',0,'attachment','image/jpeg',0),
(3414,15,'2018-08-09 21:36:51','2018-08-10 04:36:51','','header-design-portfolio6','','inherit','closed','closed','','header-design-portfolio6-5','','','2018-08-09 21:36:51','2018-08-10 04:36:51','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/08/header-design-portfolio6-4.jpg',0,'attachment','image/jpeg',0),
(3417,2,'2018-08-13 21:12:27','2018-08-14 04:12:27','<div style=\"margin-top:-94px;\"></div>\r\n<style type=\"text/css\">.MenuFrameDiv{top:230px;}</style>\r\n[ACSScript server=CA dbname=marketing]\r\n[ACSiFrame2 server=CA dbname=marketing scenario=5 usesession=no fcrid=FC0000005 waitcursor=ring.gif bottommargin=20 scrollpoint=1 cursortopmargin=150]','Video Demo - MarketingDB Cart Napa','','publish','closed','closed','','video-demo-marketing-napa','','','2019-06-10 22:31:23','2019-06-11 05:31:23','',0,'https://activeclubsolutions.net/?page_id=3417',0,'page','',0),
(3419,15,'2018-08-15 11:32:03','2018-08-15 18:32:03','','WPE-300x250-fastest-3','','inherit','closed','closed','','wpe-300x250-fastest-3','','','2018-08-15 11:33:30','2018-08-15 18:33:30','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/08/WPE-300x250-fastest-3.jpg',0,'attachment','image/jpeg',0),
(3420,15,'2018-08-15 11:32:07','2018-08-15 18:32:07','','YourWordPressDXP728x90','','inherit','closed','closed','','yourwordpressdxp728x90','','','2018-08-15 11:37:05','2018-08-15 18:37:05','',3275,'https://activeclubsolutions.net/wp-content/uploads/2018/08/YourWordPressDXP728x90.png',0,'attachment','image/png',0),
(3424,2,'2018-08-08 16:11:55','2018-08-08 23:11:55','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/08/No-DUPS_pic.png\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/08/No-DUPS_pic-300x146.png\" alt=\"\" width=\"300\" height=\"146\" class=\"alignnone size-medium wp-image-3425\" /></a>No matter the business size, whether winery or distillery, businesses that succeed with their CRM Strategy, do a couple of things very smartly. First, they recognize the right CRM software implemented will perform exactly for their needs. Second, they explore more possibilities to scale and grow their business with the use of data technology. It’s simply working smarter, not harder for economic gains once the business decision is made.\r\n\r\nWhen it comes to ways to increase sales using CRM, implementation of the right CRM software platform is the first of the actionable steps you need to take. If you are still using a notepad or an excel spreadsheet to track your customers, you are working in the “dark ages” with little or no efficiency. “CRM applications increase revenue of up to 41% per sales person.”\r\n<strong>Source:</strong> <em>Benchmark Studies, according to Search CRM</em>\r\n\r\nWith a well-managed client database, automated communications, forecast accuracy and a comprehensive overview of sales stats, including dynamic reporting features, business goals can be defined and met with near certainty. CRM software technologies have become an invaluable management tool that not only simplifies or streamlines your business but also boosts your sales and productivity.\r\n\r\nBut that’s not all. In a way, by discussing how to grow your sales, we will underline what features you should be looking for while selecting a CRM software system for your organization, to increase sales using CRM software technology. While reading this article, if you find your CRM software not being able to do all this for you, it’s the time for you to switch and go for a better equipped, all in one, mobile, CRM software system. Let’s examine the items for consideration and all the ways to increase your sales using a CRM.\r\n\r\n<strong>Know Your Customer</strong>\r\n\r\nWhen you know your customer (likes and dislikes, frequency, $$$) you are better able to target them with an offer they are likely to buy. According to Marketing Metrics it’s far easier to (about 50% easier) sell to existing customers than to brand new prospects.\r\n\r\n<strong>Reward Your Loyal Customers</strong>\r\n\r\nGiving your return customers and loyal club customers perks (whether points, dollars, or bottles) works in your favor in the long run. Bain & Co. states that a 5% increase in customer retention can increase a company’s profitability by 75%! Referral business closes and concerts more than 70% of the time according to Jonathan F. of Canada Goose Thompson Jacket.\r\n\r\n<strong>Segment Your Customer Base</strong>\r\n\r\nUsing the Pareto Principle here, 80% of your revenue comes from the top 20% of your customers. You need to identify your top 20% in your current pool of consumers, so you can better target market them to maximize revenues for your bottom line. If you are not segmenting your list, you are essentially just throwing a dart at the board hoping it hits!\r\n\r\n<strong>Renew Your Dead Opportunities</strong>\r\n\r\nNever give up on your prospects. Your mantra should be “until they buy or die”, according to Pipedrive CRM.\r\n\r\n<strong>Be in Constant Touch with Your Present Clients Beyond Work</strong>\r\n\r\nIt takes 9 new customer interactions to become somewhat loyal. If it takes that long why lose them? Stay in touch with them, especially on celebratory occasions such as birthday, anniversary with spouse and as a customer and more. This special attention will help you stand out from the crowd of other wineries or distilleries.\r\n\r\n<strong>Connect Your Website to CRM Basic (first) then Advanced</strong>\r\n\r\n“35 – 50% of sales go to vendor that responds first when speaking of lead management. In advanced mode, 57% of marketers acquire new customers from blogging,” State of Inbound Marketing, Hubspot March 2012\r\n\r\n\r\n<strong>Generate Fresh Leads on Automation</strong>\r\n\r\nPlace lead capturing forms discussed above on your site at most potential places. Additionally, track your site visitors. Offer something useful to the visitors (discount on product or shipping) for them whom you are targeting. Gather their email Ids in your CRM. Set your email marketing campaigns.\r\n\r\n<strong>Reduce Data Duplication</strong>\r\n\r\nData duplication is a major problem in business, as it reduces your efficiency, generates mistakes, and wastes your productive time. Share the leads or opportunity data with your team. This way no one must send data to any department, so there is no data duplication at all.  This saves your sales reps to replicate the information to higher authorities. Saves lead execution time and improves performance.\r\n\r\n<strong>Use CRM Software to the See BIG Picture</strong>\r\n\r\nMake use of the reports and analysis section of your CRM Software. Allow sales analysis access to your sales managers as well. Build a strategy for managers to track your pipelines. Divide your sales opportunity pipeline into number of definable stages.\r\n		\r\n<strong>Automate Your Business Process</strong>\r\n\r\nAutomation on the best strategy that works in your industry will give you a definite edge over your competition, when you can appoint a CRM Software for this why leave it anyway. “Companies that automate lead management see a 10% or greater increase in revenue in 6-9 months.” Source: Gartner Research\r\n\r\nBottom line is that use of a CRM empowers your winery or distillery to induce your customers to return. Your actual sales increase as a result. A CRM allows you to up-sell and cross promote your products and events. Finally, a CRM system allows you to initiate referral schemes and track the results even rewarding the staff or customers who help you grow your business!\r\n\r\n<strong>About Activ8 Commerce:</strong>\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales technology solutions (Mobile Winery POS, club software, ecommerce). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.\r\nFor more information, visit activeclubsolutions.net.\r\n','How to Grow Your Sales with CRM','','pending','closed','open','','how-to-grow-your-sales-with-crm','','','2022-08-14 21:02:45','2022-08-15 04:02:45','',0,'https://activeclubsolutions.net/?p=3424',0,'post','',0),
(3425,10,'2018-08-23 16:10:42','2018-08-23 23:10:42','','No DUPS_pic','','inherit','closed','closed','','no-dups_pic','','','2018-08-23 16:10:42','2018-08-23 23:10:42','',3424,'https://activeclubsolutions.net/wp-content/uploads/2018/08/No-DUPS_pic.png',0,'attachment','image/png',0),
(3426,2,'2018-08-22 16:24:53','2018-08-22 23:24:53','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2014/07/news8.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2014/07/news8-300x199.jpg\" alt=\"wine club custom selection winemaker&#039;s selection\" width=\"300\" height=\"199\" class=\"alignnone size-medium wp-image-1525\" /></a>\r\n\r\nYour database software has the potential to improve the efficiency of your (winery) sales team and can impact your bottom line according to the blog www.maximizer.com/categories/business-technology. With a well-managed database system, automated communications, forecast accuracy and a comprehensive overview of sales stats, including dynamic reporting features, business goals can be defined and met with near certainty. Database software technologies have become an invaluable management tool, that not only simplifies or streamlines your winery business, but also boosts your sales and productivity.\r\n\r\nIn <strong>“Top IT Priorities for Wineries Revealed”</strong> by the Wine Business Monthly Annual Technology Survey in the August 2018 issue, three major points stood out after reading. Paraphrasing from page 84 the items to ponder include:\r\n\r\n•	Improving the mobile experience on winery websites is a top priority\r\n\r\n•	Better integration of company systems seems important to wineries of all sizes\r\n\r\n•	Wineries tend to use third parties to store credit card information and have been slow to accept EMV and other payment forms\r\n\r\nBasically, if you are still using a binder, notepad, or an excel spreadsheet to track your business information you are working in the “dark ages” with little, or, no efficiency. Certainly, spreadsheets are a great tool for number crunching. However, if you have lots of data whether it be customers, inventory or employees your winery would benefit from a more efficient data management tool. Seemingly wineries are notorious for being behind in technologies leaving a disconnect in service perception. The more tech savvy customer wants to pay with a chip card or Apple Pay, Venmo, or PayPal and all you have at your winery is an old-fashioned credit card machine. Time for an upgrade stat! \r\n\r\nThe wineries of all sizes who took the survey did answer that they do need to better integrate all the company systems. Let’s review the top five reasons your winery needs a super all in one database system.\r\n\r\n\r\n<strong>Centralized Systems</strong>\r\n\r\nYour chances of success at your winery greatly improve when you can manage all your critical data centrally, safely and securely with access whenever you need it, from wherever you might be traveling or otherwise occupied (golf course). Your staff increases as your business life stage or the season changes but keeping track of the growing amount of data with an increasing business flow makes it even more critical to ensure your data is safe and accessible. Logically all your business information in one location is what makes the most sense.\r\n\r\n<strong>Better Management of HR Resources</strong>\r\n\r\nWhen you have a growing staff, managing employee records electronically also can save time and money. Most any HR tasks can be automated to speed up the process of payroll, benefits, hours, and staff leave. Efficiency in this department can allow more time to focus on other business issues for forward movement. With smaller wineries, ownership does most things wearing many hats, so relying on automation is integral to time management success ensuring smooth business operations. \r\n\r\n<strong>Inventory Tracking Efficiencies</strong>\r\n\r\nManaging inventory can be challenging for even the most detail oriented individual and winery. Multiple tasting rooms, multi-storage facilities, club swaps, returns and more can feel like you are doing a balancing act on a circus high wire. Even if you track your inventory manually mistakes can be made in typos, miscounting, lost notes or spreadsheets. Utilizing an inventory tracking database in tandem with an electronic scanner can help avoid those risks and improve P&L figures.\r\n\r\n<strong>Manage Customer Data & Developing Relationships</strong>\r\n\r\nIf you rely on customers or, as we call the channel in the wine business, “Direct to Consumer”, you really need to have all your data in one place. At the heart of your growth plans should be a relationship building model with a database system including invaluable features. A powerful system is strong enough to store, process everything from customer profile, transaction history whether Ecom, retail or club, length of membership and more. A true all in one system even allows segmented marketing campaigns executed and sourced directly from the unique client database where all the winery’s data is housed. No more need to use outside products such as Mail Chimp, Constant Contact, Vertical Response or Socket Labs to send emails that can’t even be tracked when sending your winery newsletters to your fans.\r\n\r\n<strong>Dashboard Reporting</strong>\r\n\r\nDashboard reporting is just another way to describe analyze and assess your stats. Your data extracted from your business database will give you anything you need to know with the right custom report or query. Analytics and data give you information on how to make the new choices or next business decision. You can track the life cycle value of all your club members or your big spenders. You can determine what is the average sales order value per day, week, month or any financial period you designate. You can predict how fast your club(s) are growing to then forecast your need for varietal wine inventory for the club shipments in 2019 for example. You can review your inventory reports and even move inventory between multiple locations if that is part of your winery model. You can even calculate or forecast sales performance of your sales team. There is so much more you can extract from the data you already have collected. \r\n\r\nBottom line is that use of a complete (all-in-one) database empowers your winery to induce your customers to return. Your actual sales increase as a result. A complete database allows you the ability to up-sell and cross promote your products and events. Finally, an integrated database system allows you to initiate referral schemes and track the results even rewarding the staff or customers who help you grow your business!\r\n\r\n<strong>About Activ8 Commerce:\r\n</strong>\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales technology solutions (Mobile Winery POS, club software, ecommerce). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net.\r\n','5 Reasons Why Your Winery Needs an All-in-One Database','','pending','closed','open','','5-reasons-why-your-winery-needs-an-all-in-one-database','','','2022-08-14 21:02:45','2022-08-15 04:02:45','',0,'https://activeclubsolutions.net/?p=3426',0,'post','',0),
(3431,2,'2019-02-25 20:30:27','0000-00-00 00:00:00','<div class=\"ACSLoginDiv\" onclick=\"ACSLoginClicked();\"><span id=\"ACSLogin\" class=\"ACSLogin\">Member Login</span></div>\r\n\r\n[ACSScript server=CA dbname=marketing]\r\n[ACSiFrame server=CA dbname=marketing scenario=5 usesession=yes fcrid=FC0000005 waitcursor=gears.gif bottommargin=20 scrollpoint=135]','Video','','draft','closed','closed','','','','','2019-02-25 20:30:27','2019-02-26 04:30:27','',0,'https://activeclubsolutions.net/?page_id=3431',0,'page','',0),
(3433,2,'2018-08-31 22:49:12','2018-09-01 05:49:12','<div class=\"ACSLoginDiv\" onclick=\"ACSLoginClicked();\"><span id=\"ACSLogin\" class=\"ACSLogin\">Member Login</span></div>\r\n\r\n[ACSScript server=CA dbname=marketing]\r\n[ACSiFrame server=CA dbname=marketing scenario=5 usesession=yes fcrid=FC0000006 waitcursor=winepour.gif bottommargin=20 scrollpoint=135]','Video Demo - Marketing DB Cart Livermore','','publish','closed','closed','','video-demo-marketing-livermore','','','2019-02-25 20:30:51','2019-02-26 04:30:51','',0,'https://activeclubsolutions.net/?page_id=3433',0,'page','',0),
(3441,2,'2018-09-21 17:17:36','2018-09-22 00:17:36','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n<h1><strong>Winery/Distillery Software Sales Specialist</strong></h1>\r\nActiv8 Commerce is a leading provider of DTC solutions (Mobile Winery/Distillery POS, wine/spirits club software, ecommerce) to wineries since 2003. Activ8 Commerce is nationwide and has employees in many states.\r\n\r\nWe are rapidly growing and are expanding our sales team.\r\n\r\nWe are looking for someone who:\r\n[icon_list size=\"small\" icon=\"pencil-square\"]\r\n<ul>\r\n 	<li>Has experience in the winery/distillery DTC sector (wine club, tasting room management, etc.)</li>\r\n 	<li>Is computer literate and is a fast learner</li>\r\n 	<li>Has great presentation talent</li>\r\n 	<li>Can close the sale</li>\r\n 	<li>Is willing to travel</li>\r\n</ul>\r\n[/icon_list]\r\nYou will:\r\n[icon_list size=\"small\" icon=\"pencil-square\"]\r\n<ul>\r\n 	<li>Prospect new sales opportunities</li>\r\n 	<li>Represent Activ8 Commerce at Trade Shows</li>\r\n 	<li>Participate in team and support meetings, contribute to the development of the solution and growth of the company</li>\r\n</ul>\r\n[/icon_list]\r\nNotes:\r\n[icon_list size=\"small\" icon=\"pencil-square\"]\r\n<ul>\r\n 	<li>This is a telecommuting position. A home office with reliable internet service is required from our team members.</li>\r\n 	<li>Compensation: Base hourly plus uncapped commission.</li>\r\n</ul>\r\n[/icon_list]\r\nTo apply, send your resume and cover letter to info@activeclubsolutions.net.\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<h1><strong>Customer Support</strong></h1>\r\nActiv8 Commerce is a leading provider of DTC/DTT solutions (Mobile POS, wine/spirits club software, ecommerce) to wineries and distilleries since 2003. Activ8 Commerce is nationwide and has employees in many states.\r\n\r\nWe are rapidly growing and are expanding our customer support team.\r\n\r\nWe are looking for someone who:\r\n[icon_list size=\"small\" icon=\"pencil-square\"]\r\n<ul>\r\n 	<li>Has experience in the winery/distillery DTC/DTT sector (wine club, tasting room management, etc.)</li>\r\n 	<li>Is computer literate and is a fast learner</li>\r\n 	<li>Has great customer service skills and standards</li>\r\n 	<li>Is a team player</li>\r\n</ul>\r\n[/icon_list]\r\nYou will:\r\n[icon_list size=\"small\" icon=\"pencil-square\"]\r\n<ul>\r\n 	<li>Provide clients with outstanding customer service</li>\r\n 	<li>Respond to technical support request via phone, email and support ticket system</li>\r\n 	<li>Learn to master a database system that is large and powerful.  It consists of mobile, web, and back-end components.</li>\r\n 	<li>Participate in team and support meetings, contribute to the development of the solution and growth of the company</li>\r\n</ul>\r\n[/icon_list]\r\nNotes:\r\n[icon_list size=\"small\" icon=\"pencil-square\"]\r\n<ul>\r\n 	<li>Activ8 Commerce has a virtual technical support office. This is a telecommuting position. A home office with reliable internet service is required from our team members.</li>\r\n 	<li>Compensation: This can be a full time or part time position. Pay will be commensurate with experience.</li>\r\n</ul>\r\n[/icon_list]\r\nTo apply, send your resume and cover letter to info@activeclubsolutions.net.\r\n\r\n[/fullbox]','Careers at Activ8 Commerce','','private','closed','closed','','careers','','','2024-06-12 13:29:13','2024-06-12 20:29:13','',0,'https://activeclubsolutions.net/?page_id=3441',0,'page','',0),
(3446,2,'2018-10-03 20:02:33','2018-10-04 03:02:33','','CISolutionsHeader','','inherit','closed','closed','','cisolutionsheader','','','2018-10-03 20:06:40','2018-10-04 03:06:40','',3447,'https://activeclubsolutions.net/wp-content/uploads/2018/10/CISolutionsHeader.png',0,'attachment','image/png',0),
(3447,2,'2018-10-03 20:04:15','2018-10-04 03:04:15','<div style=\"margin-top: -60px; \"></div>\r\n<img src=\"/wp-content/uploads/2018/10/CISolutionsHeader.png\" alt=\"\" class=\"aligncenter size-full wp-image-3446\" />\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"] [two_thirds last=\"no\"]\r\n\r\n<h1>Gift and Loyalty Card Printing - Integrated Services</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<img src=\"/wp-content/uploads/2018/10/CISolutionsSample.png\" alt=\"\" width=\"793\" height=\"288\" class=\"aligncenter size-full wp-image-3449\" />\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"10\" /]\r\n[one_half last=\"yes\"]\r\n\r\n[gap height=\"30\" /]\r\n<h3>CI Solutions</h3>\r\nContact: Taylor Cole\r\nCard Integrators Corporation\r\nTaylorC@cardintegrators.com\r\nOffice (562) 431-2594 ext.536\r\nDirect Line (562) 449-0217\r\nFax (562) 493-2714\r\n<br>\r\nWebsite: <a title=\"ci solutions card integrators corporation\" href=\"http://cardintegrators.com/\" target=\"_blank\">www.cardintegrators.com</a>\r\n[/one_half]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_quarter last=\"yes\"]\r\n<h1>View All Partners</h1>\r\n[ninzio_button text=\"Accounting Systems\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/winery-pos-features/accounting\" /]\r\n\r\n[ninzio_button text=\"Compliance Providers\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/compliance-providers\" /]\r\n\r\n[ninzio_button text=\"Payment Processing\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/payment-processing-partners\" /]\r\n\r\n[ninzio_button text=\"Shipping &amp; Fulfillment\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/shipping-fulfillment-partners\" /]\r\n\r\n[ninzio_button text=\"Website Marketing &amp; Media\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/active-club-solutions-partners/website-marketing-media\" /]\r\n\r\n[/one_quarter]\r\n\r\n[/fullbox]','Gift and Loyalty Card Printing','','publish','closed','closed','','gift-and-loyalty-card-printing','','','2018-10-31 22:24:36','2018-11-01 05:24:36','',1436,'https://activeclubsolutions.net/?page_id=3447',0,'page','',0),
(3449,2,'2018-10-03 20:24:48','2018-10-04 03:24:48','','CISolutionsSample','','inherit','closed','closed','','cisolutionssample','','','2018-10-03 20:24:48','2018-10-04 03:24:48','',3447,'https://activeclubsolutions.net/wp-content/uploads/2018/10/CISolutionsSample.png',0,'attachment','image/png',0),
(3451,2,'2018-10-03 20:35:37','2018-10-04 03:35:37',' ','','','publish','closed','closed','','3451','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',1436,'https://activeclubsolutions.net/?p=3451',16,'nav_menu_item','',0),
(3454,2,'2018-09-05 19:34:37','2018-09-06 02:34:37','No matter the business size, whether winery or distillery, businesses that succeed with their CRM Strategy, do a couple of things very smartly. First, they recognize the right CRM software implemented will perform exactly for their needs. Second, they explore more possibilities to scale and grow their business with the use of data technology. It’s simply working smarter, not harder for economic gains once the business decision is made.\r\n\r\nWhen it comes to ways to increase sales using CRM, implementation of the right CRM software platform is the first of the actionable steps you need to take. If you are still using a notepad or an excel spreadsheet to track your customers, you are working in the “dark ages” with little or no efficiency. “CRM applications increase revenue of up to 41% per sales person.” Source: Benchmark Studies, according to Search CRM\r\n\r\nWith a well-managed client database, automated communications, forecast accuracy and a comprehensive overview of sales stats, including dynamic reporting features, business goals can be defined and met with near certainty. CRM software technologies have become an invaluable management tool that not only simplifies or streamlines your business but also boosts your sales and productivity.\r\n\r\nBut that’s not all. In a way, by discussing how to grow your sales, we will underline what features you should be looking for while selecting a CRM software system for your organization, to increase sales using CRM software technology. While reading this article, if you find your CRM software not being able to do all this for you, it’s the time for you to switch and go for a better equipped, all in one, mobile, CRM software system. Let’s examine the items for consideration and all the ways to increase your sales using a CRM.\r\n\r\n<strong>Know Your Customer</strong>\r\n\r\nWhen you know your customer (likes and dislikes, frequency, $$$) you are better able to target them with an offer they are likely to buy. According to Marketing Metrics it’s far easier to (about 50% easier) sell to existing customers than to brand new prospects.\r\n\r\n<strong>Reward Your Loyal Customers\r\n</strong>\r\nGiving your return customers and loyal club customers perks (whether points, dollars, or bottles) works in your favor in the long run. Bain & Co. states that a 5% increase in customer retention can increase a company’s profitability by 75%! Referral business closes and concerts more than 70% of the time according to Jonathan F. of Canada Goose Thompson Jacket.\r\n\r\n<strong>Segment Your Customer Base</strong>\r\n\r\nUsing the Pareto Principle here, 80% of your revenue comes from the top 20% of your customers. You need to identify your top 20% in your current pool of consumers, so you can better target market them to maximize revenues for your bottom line. If you are not segmenting your list, you are essentially just throwing a dart at the board hoping it hits!\r\n\r\n<strong>Renew Your Dead Opportunities\r\n</strong>\r\nNever give up on your prospects. Your mantra should be “until they buy or die”, according to Pipedrive CRM.\r\n\r\n<strong>Be in Constant Touch with Your Present Clients Beyond Work</strong>\r\n\r\nIt takes 9 new customer interactions to become somewhat loyal. If it takes that long why lose them? Stay in touch with them, especially on celebratory occasions such as birthday, anniversary with spouse and as a customer and more. This special attention will help you stand out from the crowd of other wineries or distilleries.\r\n\r\n\r\n\r\n<strong>Connect Your Website to CRM Basic (first) then Advanced</strong>\r\n\r\n“35 – 50% of sales go to vendor that responds first when speaking of lead management. In advanced mode, 57% of marketers acquire new customers from blogging,” State of Inbound Marketing, Hubspot March 2012\r\n\r\n\r\n<strong>Generate Fresh Leads on Automation\r\n</strong>\r\nPlace lead capturing forms discussed above on your site at most potential places. Additionally, track your site visitors. Offer something useful to the visitors (discount on product or shipping) for them whom you are targeting. Gather their email Ids in your CRM. Set your email marketing campaigns.\r\n\r\n<strong>Reduce Data Duplication\r\n</strong>\r\nData duplication is a major problem in business, as it reduces your efficiency, generates mistakes, and wastes your productive time. Share the leads or opportunity data with your team. This way no one must send data to any department, so there is no data duplication at all.  This saves your sales reps to replicate the information to higher authorities. Saves lead execution time and improves performance.\r\n\r\n<strong>Use CRM Software to the See BIG Picture\r\n</strong>\r\nMake use of the reports and analysis section of your CRM Software. Allow sales analysis access to your sales managers as well. Build a strategy for managers to track your pipelines. Divide your sales opportunity pipeline into number of definable stages.\r\n		\r\n<strong>Automate Your Business Process\r\n</strong>\r\nAutomation on the best strategy that works in your industry will give you a definite edge over your competition, when you can appoint a CRM Software for this why leave it anyway. “Companies that automate lead management see a 10% or greater increase in revenue in 6-9 months.” Source: Gartner Research\r\n\r\nBottom line is that use of a CRM empowers your winery or distillery to induce your customers to return. Your actual sales increase as a result. A CRM allows you to up-sell and cross promote your products and events. Finally, a CRM system allows you to initiate referral schemes and track the results even rewarding the staff or customers who help you grow your business!\r\n\r\n<strong>About Activ8 Commerce:</strong>\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales technology solutions (Mobile Winery POS, club software, ecommerce). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success. For more information, visit activeclubsolutions.net.\r\n','What Can a CRM Do For You?','','pending','closed','open','','what-can-a-crm-do-for-you','','','2022-08-14 21:02:45','2022-08-15 04:02:45','',0,'https://activeclubsolutions.net/?p=3454',0,'post','',0),
(3455,2,'2018-09-19 19:50:24','2018-09-20 02:50:24','Recently a potential client emailed the sales team to ask how Active could produce technology services for this medium sized winery based on their basic needs including their multiple location retail tasting rooms. The prospective client summarized the needs as the following:\r\n\r\n•	Need of a wine club system than can manage the whole operation from membership selection until billing/invoicing/collection\r\n•	All data pushed/pulled from an existing ERP to avoid data duplication\r\n•	Billing/Invoicing/Collection Automation\r\n•	Real time connection with API to existing ERP\r\n•	Get advanced reporting (for marketing purposes to craft smart segmented offers)\r\n•	UX (front-end) to be customized to current website\r\n•	Use through app\r\n•	Flexibility to self-manage complete services (add more services, hold, cancel, change data like credit card, address, etc.)\r\n\r\nThe response was sweet and simple stating the relevant points that make prospects turn into clients. In simple terms Active is a relational database used to manage the customer, transaction, and inventory data primarily for alcohol beverage sales. \r\n\r\n•	Active will automate recurring transactions, whether they are clubs or allocation lists, in batches to automate credit card charges for members or list participants by charging the cards on file through gateway providers such as EVO Payments or OpenEdge. \r\n\r\n•	Active has an iPad POS for retail transactions that uses web services to speak to your live private master database. Active brought on board a seasoned UX Web Designer to offer Active clients impeccable web design focusing on customer or user experience tied in with branding elements. \r\n\r\n•	Active also offers an eCommerce solution for your online or web sales transactions, which also speaks to the live private database. This element is easily inserted into your existing website via iFrames.\r\n\r\n•	Active excels in its own email marketing design tools for the sharpest of campaigns. Email design features, list parsing, and email tracking eliminate the need for a 3rd party email systems. This marketing email feature streamlines your marketing communication presence. For example, the club manager can send credit card decline notices to those members whose card is declined without leaving the database to use another application to send the notices; and even tracks opens, clicks, etc. noting which device the recipients used while reading the email.  With Active there is no need to pay the fee for Vertical Response, Constant Contact, Mail Chimp or any other 3rd party email marketer any longer.\r\n\r\n•	Active offers an advanced inventory management system across multiple inventory locations which tracks and manages finished goods inventory even with returns, swaps or wholesale inventory issues.\r\n\r\n•	Lastly, Active integrates with Quickbooks desktop versions to push customer and sales transaction data for better financial management. There is no Accounts Payable or Accounts Receivable function as Active is sales software, not financial management software. However Active allows an open API or webservices capability if your team has IT resources to write the integration to your ERP system.\r\n\r\nCurrently Active’s system is set to run on US currency and tax code so Active will not work effectively outside of the US at this time despite all the requests from other wine regions in the world. Active is all-in-one mobile app solution for all the sales channels in alcohol beverage production that commercially touches the customer. \r\n\r\nFinally, Active differentiates itself from the other POS sales technology providers by developing innovations, as trusted partner listening to the client’s needs, and answers support calls with a live person. Active is built on reliability, integrity and service. Active’s daily mantra is to help you sell your grape or grain passion better! For specifics on Active and how it can give your business a boost in efficiencies, contact Thomas@activeclubsolutions.net.\r\n\r\n<strong>About Activ8 Commerce:</strong>\r\n\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales technology solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net.\r\n','What Does Active Do?','','pending','closed','open','','what-does-active-do','','','2022-08-14 21:02:45','2022-08-15 04:02:45','',0,'https://activeclubsolutions.net/?p=3455',0,'post','',0),
(3456,2,'2018-10-03 19:56:50','2018-10-04 02:56:50','When you become a client with Active your POS customer management system now includes the ability to use Loyalty Cards and Gift Cards; to keep your customers returning more frequently purchasing more of your delectable “grape or grain passion.” This helps you maintain records of your customers purchases and showers extra perks to the 20% of your fans that buy 80% of your collectible craft beverages!\r\n\r\nSo how do “points” work? Once the set-up has occurred in the database tables Merchant, Inventory, Rules and POS Configuration, purchases are tracked.  For every purchase made by the customer points are added to their loyalty account. The points awarded are based on the selling price of the order which excludes taxes, shipping and handling, and tips. Loyalty points are added on an order created on the POS, Club, Cart or Manager. A credit reverses the points on a loyalty account. Loyalty points can be redeemed on the POS, Cart, and Manager. With loyalty cards these are personalized with name and account and are tied specifically to their personal account at your winery or distillery.\r\n\r\nGift Cards work a couple of ways. Set up happens in the tables noted as Merchant, Inventory and POS configuration. Then in Active Manager the card numbers are generated as a batch in Gift Card interface. Export to CSV file first, then send the file to the printer. Issued cards can be completed on the POS or via mail. Essentially the procedures for gift cards vary from loyalty cards as there is no customer data attached to the gift cards. The cards are like cash. You can make a batch of generic cards then scan and hand out directly at the POS. Another method is to create personalized cards by customer and distribute by mail or hand out at POS. Even a combination of the two above choices can be done, such as, generic for non-members and personalized for members. Lastly, different cards for different clubs can be created such as Gold, Silver, Bronze denoting levels of club too. Even, and this may seem strange, using any existing card with a bar scanner code such as cereal box top, driver’s license, library card or such can be used as well. \r\n\r\nFor more specifics on Active and how it can give your business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activecubsolutions.com.\r\n\r\nAbout Activ8 Commerce:\r\n\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales technology solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.\r\n','Active\'s Hot New Features: Loyalty and Gift Cards','','pending','closed','open','','actives-hot-new-features-loyalty-and-gift-cards','','','2022-08-14 21:02:45','2022-08-15 04:02:45','',0,'https://activeclubsolutions.net/?p=3456',0,'post','',0),
(3462,2,'2018-10-20 20:19:00','2018-10-21 03:19:00','','flyingemail','','inherit','closed','closed','','flyingemail','','','2018-10-20 20:19:00','2018-10-21 03:19:00','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/10/flyingemail.png',0,'attachment','image/png',0),
(3464,2,'2018-10-21 16:10:14','2018-10-21 23:10:14','','lavenderfields','','inherit','closed','closed','','lavenderfields','','','2018-10-21 16:10:14','2018-10-21 23:10:14','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/10/lavenderfields.png',0,'attachment','image/png',0),
(3466,2,'2018-10-17 13:57:34','2018-10-17 20:57:34','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2018/10/black-gift-card.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2018/10/black-gift-card.jpg\" alt=\"\" width=\"275\" height=\"183\" class=\"alignnone size-full wp-image-3468\" /></a>\r\n\r\nNow your winery or distillery can offer gift cards on your shopping cart in time for the holidays to your top customers, friends and family, frequent visitors, and loyal club members. <strong>October 1, 2018 Active has formally launched</strong> the offering to all clients! \r\n\r\nWhen you become a client with <strong>Active</strong> your POS customer management system now includes the ability to use Gift Cards on your shopping cart; to keep your customers returning more frequently purchasing more of your delectable “grape or grain passion.” This helps you maintain records and purchasing habits of your customers’ purchases while giving you the ability to shower extra perks to the 20% of your fans that buy 80% of your collectible craft beverages!\r\n\r\nGet ready for the holiday shopping season. <strong>Active</strong> is now programmed for your winery/distillery to use your shopping cart with the new gift card system in the updated POS app available now in the app store. Promote and sell Gift Cards to your members so they facilitate their friends and family to purchase your wine or spirits all year long! Simplify the shopping season for your customers. In your newsletter, website, and social media postings mention an easy “gift ideas” in GIFT CARDS for the “hard to buy for” colleague, relative, or friend who has everything!\r\n\r\nFor more detail on the app functionality please visit <strong>Active’s website </strong>or click on the link below to see how it works!\r\n\r\nhttp://player.vimeo.com/video/294987696\r\n\r\nFor more specifics on Active and how Active’s sales software technology can give your business a boost in efficiencies and an uptick on your bottom line (ROI), contact <strong>Thomas@activecubsolutions.com.\r\n</strong>\r\n<strong>About Activ8 Commerce:\r\n</strong>\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales technology solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net. To <strong>Request a Demo</strong> email <strong>Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.\r\n</strong>','Active’s GIFT CARD SYSTEM on CART is Released','','pending','closed','open','','actives-gift-card-system-on-cart-is-released','','','2022-08-14 21:02:44','2022-08-15 04:02:44','',0,'https://activeclubsolutions.net/?p=3466',0,'post','',0),
(3468,10,'2018-10-26 13:51:30','2018-10-26 20:51:30','','black gift card','','inherit','closed','closed','','black-gift-card','','','2018-10-26 13:51:30','2018-10-26 20:51:30','',3466,'https://activeclubsolutions.net/wp-content/uploads/2018/10/black-gift-card.jpg',0,'attachment','image/jpeg',0),
(3479,2,'2018-10-31 17:30:04','2018-11-01 00:30:04','Choosing the right point of sale system is a daunting task for any small business, especially when it is necessary to choose and configure separate components. As Point of Sale News pointed out, an all-in-one POS is a complete system that is tailored to the needs of a particular business and already includes all the necessary components, including cash drawer, bar code scanner, keyboard, label printer, pole display and magnetic stripe reader (1). An all-in-one POS takes the guesswork out of configuring the system, and can also save small businesses money.\r\n\r\nhttp://vimeo.com/297431840\r\n\r\nHere are four reasons why:\r\n\r\n1. Mitigate EMV concerns\r\nAs of October 2015, businesses can be held liable for certain types of fraud if they do not have the technology to accept EMV chip-enabled credit and debit cards. According to a report by Hospitality Technology, 47 percent of business owners cited preparation for EMV as a driver in their decision to upgrade their POS systems and software (2). Many POS companies have already launched all-in-one POS systems that are EMV-enabled. By investing in this technology, small businesses can usually avoid the high costs associated with fraud liability.\r\n\r\n2. Less expensive maintenance\r\nWorking with separate vendors to customize your POS system can be costly, especially when the system requires maintenance. For example, if you are having difficulty with your card reader, there is the likelihood the vendor could blame the issues on a different component of the POS. As a result, small businesses can spend excess time and money solving a simple technical problem, which costs them sales and customers. With an all-in-one POS, one company is typically responsible for maintaining your technology, and technical issues are easier to address since everything is integrated.\r\n\r\n3. Longevity\r\nEven though all-in-one POS systems tend to have higher upfront costs, they save businesses money in the long term. The life expectancy of all-on-one POS systems often exceeds that of other systems because each component is equally durable. Today, POS companies know businesses need rugged technology that can handle high-volume situations in both retail shops and restaurants.\r\n\r\n4. Ease of use\r\nAll-in-one POS systems are also much easier to use, since each component is part of the same technology and software is better integrated. This means employees will spend less time with the machine, which equates to fewer and more efficient business hours. The ease of use of all-in-one POS systems also translates to shorter wait times for customers, which could drive increased sales. Finally, since every component is integrated, employers find they are able to train staff on the technology much more quickly.\r\n\r\nArticle Sourced from Postoday:\r\n1.	http://pointofsale.com/POS-101/All-In-One-POS-System-Simplifies-Business-Decisions.html\r\n2.	http://hospitalitytechnology.edgl.com/news/POS-Software-Trend-Report-201597065\r\n3.	http://www.postoday.com\r\n\r\n\r\nFor more specifics on Active and how Active’s All-In-One POS sales software technology can give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.\r\n\r\nAbout Activ8 Commerce:\r\n\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales technology solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.\r\n','Why Choose an All in One POS System?','','pending','closed','open','','why-choose-an-all-in-one-pos-system','','','2022-08-14 21:01:45','2022-08-15 04:01:45','',0,'https://activeclubsolutions.net/?p=3479',0,'post','',0),
(3482,2,'2018-10-31 18:28:42','2018-11-01 01:28:42','','favicon','','inherit','closed','closed','','favicon','','','2018-10-31 18:28:42','2018-11-01 01:28:42','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/10/favicon.ico',0,'attachment','image/x-icon',0),
(3484,2,'2018-11-03 14:15:16','2018-11-03 21:15:16','','personcarryingbox','','inherit','closed','closed','','personcarryingbox','','','2018-11-03 14:15:16','2018-11-03 21:15:16','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/11/personcarryingbox.jpg',0,'attachment','image/jpeg',0),
(3486,2,'2018-11-03 14:29:40','2018-11-03 21:29:40','','demorequest','','inherit','closed','closed','','demorequest','','','2018-11-03 14:29:40','2018-11-03 21:29:40','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/11/demorequest.png',0,'attachment','image/png',0),
(3487,2,'2018-11-03 16:31:27','2018-11-03 23:31:27','','carttool','','inherit','closed','closed','','carttool','','','2018-11-03 16:31:27','2018-11-03 23:31:27','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/11/carttool.jpg',0,'attachment','image/jpeg',0),
(3488,2,'2018-11-03 22:32:21','2018-11-04 05:32:21','','contactus','','inherit','closed','closed','','contactus','','','2018-11-03 22:32:21','2018-11-04 05:32:21','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/11/contactus.jpg',0,'attachment','image/jpeg',0),
(3489,2,'2018-11-03 23:17:47','2018-11-04 06:17:47','','dtcsoftware','','inherit','closed','closed','','dtcsoftware','','','2018-11-03 23:17:47','2018-11-04 06:17:47','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/11/dtcsoftware.jpg',0,'attachment','image/jpeg',0),
(3490,2,'2018-11-03 23:24:20','2018-11-04 06:24:20','','integratedcertified','','inherit','closed','closed','','integratedcertified','','','2018-11-03 23:24:20','2018-11-04 06:24:20','',0,'https://activeclubsolutions.net/wp-content/uploads/2018/11/integratedcertified.jpg',0,'attachment','image/jpeg',0),
(3497,2,'2018-11-14 16:15:16','2018-11-15 00:15:16','Sure, it’s just mid-November. Your winery is still deep in the 4th quarter revenue programs in your chosen DTC channels. You expect fourth quarter to be THE money-making time for your winery as it is for most in most years. Checking reports frequently to see how projections match against actual, is what you’re doing with your fingers crossed. This prompts you to think “are we really getting the bang for the proverbial buck in revenues and efficiencies with our current business programming and sales systems?”\r\n\r\nNovember is THE time to reassess your current sales systems as year end is fast approaching and you need to have updates and new integrations researched, planned for, and approved in the budget well before the new year. The quiet time within the wine business is typically in the new calendar year where changes in systems and new technologies are implemented. You really don’t want to wait until after the holidays to begin this important process. 2019 is right around the corner with time off for holidays upcoming limiting the actual working revenue days remaining in 2018. \r\n\r\nWhile you are in the middle of the last push within the busy season, it’s time to checklist your systems. Did you have constant API interruptions impeding your business flow to the customer after an online order? Are calls dropping or orders being missed if you have a call center onsite at your winery? With outsourcing certain tasks, are orders/profiles being duplicated at every channel even though the customer has a defined profile at your winery? These and more issues are things to consider and assess of your sales systems. To manage a customer profile do you have to use 3 or more sales systems to process the entire order or manage a profile update? \r\n\r\nEssentially your reports, research efforts and documented issues can direct you to see where your sales systems failed you and your winery business plan. Now you need to think about how to better your systems and streamline the channels to give you peace of mind in the next fiscal/calendar year! What you really should look for and consider is an all-in-one system. \r\n\r\nYou want and need a sales system that is easy to train and easy to use. You want to save time and money, so efficiency is most important. You secretly want a member login that “gels” the fact you are using an all-in-one solution. You either already have multiple tasting room locations or are thinking about opening a second or third tasting room location. Knowing your system can handle real time or true inventory at each location is supreme peace of mind. Active is the answer to all the above concerns.\r\n\r\nFor more specifics on Active and how Active’s All-In-One POS sales software sales system can give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.\r\n\r\n<strong>About Activ8 Commerce:</strong>\r\n\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.\r\n','The Right POS Can Save Time and Money','','pending','closed','open','','the-right-pos-can-save-time-and-money','','','2022-08-14 21:01:45','2022-08-15 04:01:45','',0,'https://activeclubsolutions.net/?p=3497',0,'post','',0),
(3500,2,'2018-11-24 22:07:36','2018-11-25 06:07:36','<h1 style=\"text-align:center;\">Example Reset Password Demonstration</h1>\r\n<style type=\"text/css\">.ResetPasswordFrameDiv{margin-top:-30px;margin-left:0px;width:100%;}</style>\r\n[ACSScript server=CA dbname=demodb_3]\r\n[ACSResetPassword server=CA dbname=demodb_3 fcrid=FC0000002 bottommargin=0 waitcursor=http://www.secureclub.net/images/activeclub/ring.gif]','Example Password Reset','','publish','closed','closed','','example-password-reset','','','2018-11-30 19:59:27','2018-12-01 03:59:27','',0,'https://activeclubsolutions.net/?page_id=3500',0,'page','',0),
(3506,2,'2018-11-25 16:50:05','2018-11-26 00:50:05','<style type=\"text/css\">.ResetPasswordFrameDiv{margin-top:-100px;margin-left:0px;width:100%;}</style>\r\n[ACSScript server=CA dbname=activeclub]\r\n[ACSResetPassword server=CA dbname=activeclub fcrid=FC0000001 bottommargin=0 waitcursor=http://www.secureclub.net/images/activeclub/ring.gif cursortopmargin=-200]','Reset Password','','publish','closed','closed','','reset-password','','','2018-11-25 21:46:18','2018-11-26 05:46:18','',0,'https://activeclubsolutions.net/?page_id=3506',0,'page','',0),
(3511,2,'2018-11-26 23:25:23','2018-11-27 07:25:23','<style type=\"text/css\">.ForgotPasswordFrameDiv{margin-top:-100px;margin-left:0px;width:100%;}</style>\r\n[ACSScript server=CA dbname=activeclub]\r\n[ACSForgotPassword server=CA dbname=activeclub fcrid=FC0000001 bottommargin=0 waitcursor=http://www.secureclub.net/images/activeclub/ring.gif cursortopmargin=-200]','Request Password Reset','','publish','closed','closed','','request-password','','','2018-11-27 16:14:11','2018-11-28 00:14:11','',0,'https://activeclubsolutions.net/?page_id=3511',0,'page','',0),
(3518,2,'2018-11-30 20:05:48','2018-12-01 04:05:48','<style type=\"text/css\">.ForgotPasswordFrameDiv{margin-top:-100px;margin-left:0px;width:100%;}</style>\r\n[ACSScript server=CA dbname=demodb_3]\r\n[ACSForgotPassword server=CA dbname=demodb_3 fcrid=FC0000001 bottommargin=0 waitcursor=http://www.secureclub.net/images/activeclub/ring.gif cursortopmargin=-200]','Example Request Password Reset','','publish','closed','closed','','example-request-password','','','2018-11-30 20:13:04','2018-12-01 04:13:04','',0,'https://activeclubsolutions.net/?page_id=3518',0,'page','',0),
(3522,2,'2018-12-02 21:42:50','2018-12-03 05:42:50','<style type=\"text/css\">.UnsubscribeFrameDiv{margin-top:-100px;margin-left:20%;margin-bottom:0%;width:60%;}</style>\r\n[ACSScript server=CA dbname=activeclub]\r\n[ACSUnsubscribe server=CA dbname=activeclub fcrid=FC0000001 bottommargin=-30 waitcursor=http://www.secureclub.net/images/activeclub/ring.gif cursortopmargin=-200]\r\n','Opt Out','','publish','closed','closed','','opt-out','','','2018-12-05 22:09:07','2018-12-06 06:09:07','',0,'https://activeclubsolutions.net/?page_id=3522',0,'page','',0),
(3527,2,'2018-12-05 21:25:29','0000-00-00 00:00:00','<style type=\"text/css\">.ForgotPasswordFrameDiv{margin-top:-100px;margin-left:0px;width:100%;}</style>\n[ACSScript server=CA dbname=activeclub]\n[ACSForgotPassword server=CA dbname=activeclub fcrid=FC0000001 bottommargin=0 waitcursor=http://www.secureclub.net/images/activeclub/ring.gif cursortopmargin=-200]','Opt','','draft','closed','closed','','','','','2018-12-05 21:25:29','2018-12-06 05:25:29','',0,'https://activeclubsolutions.net/?page_id=3527',0,'page','',0),
(3533,2,'2018-12-05 22:51:20','2018-12-06 06:51:20','<style type=\"text/css\">.UnsubscribeFrameDiv{margin-top:-100px;margin-left:20%;margin-bottom:0%;width:60%;}</style>\r\n[ACSScript server=CA dbname=demodb_3]\r\n[ACSUnsubscribe server=CA dbname=demodb_3 fcrid=FC0000001 bottommargin=-30 waitcursor=http://www.secureclub.net/images/activeclub/ring.gif cursortopmargin=-200]','Example Unsubscribe','','publish','closed','closed','','example-unsubscribe','','','2018-12-05 22:55:29','2018-12-06 06:55:29','',0,'https://activeclubsolutions.net/?page_id=3533',0,'page','',0),
(3564,2,'2018-11-28 19:08:30','2018-11-29 03:08:30','<!-- wp:paragraph -->\n<p>Is your winery or distillery taking advantage of email marketing this holiday season? If not, why not?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Email marketing is a cost-effective solution that gives any business the power to reach customers in a place most people visit every day – their IN box. There is plenty of data to back that up. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example:<br>•    91 percent of US adults like to receive promotional emails from companies they do business with (MarketingSherpa, 2015)<br>•    Email is almost 40 times more effective than Facebook and Twitter combined in helping a business acquire new customers. (McKinsey, 2014)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Other reasons that should prompt you to implement an email marketing program, if you are not already doing so, include building credibility, and an added boost to your winery or distillery sales, and ultimately to ROI. Another reason to do email marketing is to have your winery or distillery strengthen relationships between yourself and the customers by educating, entertaining or notifying them of various events, offers, and insights. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Connect further by tracking loyalty and tenure and send them special emails of thanks with gifts to redeem in your tasting room or online offerings. Send birthday notes, anniversary greetings or anything you want that connects your business to your customers and fits your brand strategies. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Certainly, trial and error fit into your email marketing and is part of the mix to find what messages work best for your brand. Using metrics can help to improve your messages and offers for improved results each campaign you execute. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From a small business owner, following is a loosely paraphrased quote on the effectiveness of email marketing. “Email has definitely helped us with web traffic and attendance at our events. I like that after I send an email out, I can go back to “tracking” and see how many people clicked through on which links, and, on which devices they viewed the email from. That way I can tell people are interacting with our content and click throughs on our website.”  A. Whitaker, Public Relations</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Active allows emails to be sent to any selected customers from any place you are working within the Active POS database. For more specifics on Active and how Active’s All-In-One POS sales software sales system, including comprehensive email marketing solutions; and to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>About Activ8 Commerce:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Activ8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1>Sources: </h1>\n<!-- /wp:heading -->\n\n<!-- wp:embed {\"url\":\"http://www.forbes.com/sites/constantcontact/2015/09/17/10-reasons-to-use-email-marketing-as-told-by-small-businesses/#782dc4d258c0\"} -->\n<figure class=\"wp-block-embed\"><div class=\"wp-block-embed__wrapper\">\nhttp://www.forbes.com/sites/constantcontact/2015/09/17/10-reasons-to-use-email-marketing-as-told-by-small-businesses/#782dc4d258c0\n</div></figure>\n<!-- /wp:embed -->','Top Reasons for Email Marketing','','pending','closed','open','','top-reasons-for-email-marketing','','','2022-08-14 21:01:45','2022-08-15 04:01:45','',0,'https://activeclubsolutions.net/?p=3564',0,'post','',0),
(3565,10,'2018-12-14 19:00:12','2018-12-15 03:00:12','{{unknown}}','','','publish','closed','closed','','0da63506771e8494d54f9b225c8dd94a','','','2018-12-14 19:00:12','2018-12-15 03:00:12','',0,'https://activeclubsolutions.net/0da63506771e8494d54f9b225c8dd94a/',0,'oembed_cache','',0),
(3567,2,'2018-12-12 19:16:41','2018-12-13 03:16:41','<!-- wp:paragraph -->\n<p>Active has released another new feature for making life a little easier for staff and managers of tasting rooms, club and Ecommerce within the wine and spirits category. Now part of the Active Marketing Tools is “Email Unsubscribe” or the “Opt-Out” feature. This feature is not for all uses, however. Email Unsubscribe or Opt-Out is only for marketing emails. What email types do not support Opt-Out with Active? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>•    Opt-Out cannot be used for “club membership” emails<br>\n•    Opt-Out cannot be used for “transaction” emails<br>\n•    Opt-Out cannot be used for “person” email</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What this means is that if your winery or distillery is sending out email campaigns using several systems, Active’s new web tools just made your life easier.  No longer do you have to search in your database to find them and manually click multiple times to take them off your email list. You really don’t need 3rd Party Email companies to send your emails (and collect no data) such as Mail Chimp, Vertical Response, and Constant Contact when you are an Active client end user as the system truly is an all-in-one solution for all your direct to consumer sales channels. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sending marketing emails to segmented lists or even general lists, where recipients no longer wish to be on your list, now in Active they just click on the unsubscribe icon or click on the opt-out button. Where ever you placed the icon or the button on your email document, no matter the message whether it is a call to action, informational piece, or event invite, once they click out your work is done by their effort. Period. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Certainly, <strong>Active will be at Unified Grape &amp; Wine Symposium in January of 2019 at Booth #519,</strong> but you don’t need to wait to find out more about how Active can simplify your life. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more specifics now on Active and how Active’s All-In-One POS software sales system; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact <strong>Thomas@activeclubsolutions.net to request a demo now.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>About Active:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Activ8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1>#</h1>\n<!-- /wp:heading -->\n\n<!-- wp:core-embed/vimeo {\"url\":\"http://vimeo.com/305177473\",\"type\":\"video\",\"providerNameSlug\":\"vimeo\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-vimeo wp-block-embed is-type-video is-provider-vimeo wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttp://vimeo.com/305177473\n</div></figure>\n<!-- /wp:core-embed/vimeo -->','Active\'s New Web Tools','','pending','closed','open','','actives-new-web-tools','','','2022-08-14 21:01:44','2022-08-15 04:01:44','',0,'https://activeclubsolutions.net/?p=3567',0,'post','',0),
(3571,18,'2018-12-22 11:27:18','0000-00-00 00:00:00','\r\n<div class=\"ACSLoginDiv\" onclick=\"ACSLoginClicked();\"><span id=\"ACSLogin\" class=\"ACSLogin\">Member Login</span></div>\r\n\r\n<script id=\"CatalogScript\" ACSHost=\"http://www.secureclubcartca.net\" type=\"text/javascript\" src=\"http://www.secureclubcartca.net/demodb_3/js/cataloghost.js\"></script>\r\n<script>document.getElementsByTagName(\"BODY\")[0].onresize = function() {ACSResizeFrame()};</script>\r\n\r\n<div id=\"CatalogBasketDiv\" class=\"BasketFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogBasket\" class=\"BasketFrame\" src=\"http://www.secureclubcartca.net/demodb_3/catalogBasket.aspx?wcrshopid=FC0000001&wcripadshopid=FC0000001\" ACSHost=\"http://www.secureclubcartca.net\"></iframe></div>\r\n\r\n<div id=\"CatalogMessageDiv\" class=\"MsgFrameDiv\" style=\"display: none;\">\r\n<iframe id=\"CatalogMessage\" class=\"MsgFrame\" src=\"http://www.secureclubcartca.net/demodb_3/catalogmessage.aspx?wcrshopid=FC0000001&wcripadshopid=FC0000001\" ACSHost=\"http://www.secureclubcartca.net\"></iframe></div>\r\n\r\n<div id=\"CatalogMenuDiv\" class=\"MenuFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"CatalogMenu\" class=\"MenuFrame\" src=\"http://www.secureclubcartca.net/demodb_3/catalogmenu.aspx?wcrshopid=FC0000001&wcripadshopid=FC0000001\" ACSHost=\"http://www.secureclubcartca.net\"></iframe></div>\r\n\r\n<div id=\"ACSWaitCursor\" style=\"position: fixed; display: inline-block; left: 45%; margin-top: 50px; z-index: 99;\">\r\n<img src=\"http://www.secureclub.net/images/activeclub/progressbar.gif\"/></div>\r\n\r\n<div id=\"CatalogDiv\" style=\"visibility: hidden;\" class=\"CatalogFrameDiv\">\r\n<iframe id=\"Catalog\" class=\"CatalogFrame\" ACSSession= src=\"http://www.secureclubcartca.net/demodb_3/catalog.aspx?wcrshopid=FC0000001&wcripadshopid=FC0000001\" ACSHost=\"http://www.secureclubcartca.net\" ACSMasterFrame=\"1\" ACSScrollPoint=\"230\"></iframe></div>\r\n\r\n<div id=\"ManageDiv\" class=\"ManageFrameDiv\" style=\"visibility: hidden;\">\r\n<iframe id=\"Manage\" class=\"ManageFrame\" src=\"http://www.secureclubcartca.net/demodb_3/manage.aspx?wcrshopid=FC0000001&wcripadshopid=FC0000001\" ACSHost=\"http://www.secureclubcartca.net\" ACSScrollPoint=\"230\"></iframe></div>\r\n\r\n<div id=\"RegisterDiv\" class=\"RegisterFrameDiv\" style=\"display:none;visibility: hidden;\">\r\n<iframe id=\"Register\" class=\"RegisterFrame\" src=\"http://www.secureclubcartca.net/demodb_3/register.aspx?wcrshopid=FC0000001&wcripadshopid=FC0000001\" ACSHost=\"http://www.secureclubcartca.net\" ACSScrollPoint=\"230\"></iframe></div>\r\n','Test Page','','draft','closed','closed','','','','','2018-12-22 11:27:18','2018-12-22 19:27:18','',0,'https://activeclubsolutions.net/?page_id=3571',0,'page','',0),
(3572,2,'2018-12-22 19:48:09','2018-12-23 03:48:09','<style type=\"text/css\">.NewsletterFrameDiv{margin-top:-100px;margin-left:20%;margin-bottom:0%;width:60%;}</style>\r\n[ACSScript server=CA dbname=demodb_3]\r\n[ACSNewsletter server=CA dbname=demodb_3 fcrid=FC0000002 bottommargin=20 waitcursor=ring.gif cursortopmargin=-100]','ACS Newsletter Signup','','publish','closed','closed','','example-newsletter','','','2018-12-28 18:22:55','2018-12-29 02:22:55','',0,'https://activeclubsolutions.net/?page_id=3572',0,'page','',0),
(3581,2,'2018-12-26 15:15:16','2018-12-26 23:15:16','<strong>Active</strong> has another new functionality in web tools introduced as “Password Retrieval/Reset.” Go to activeclubsolutions.net to click on the video link and learn in 8 minutes how and why this will work for your winery or distillery. There are several ways to access the system when a customer has forgotten their password. \r\n\r\nThe main way to access reset password request is when the customer goes to your website to buy but they don’t remember their password, they just click on “Forgot Password” on the log-in page. Clicking on a link the customer is taken to a landing page embedded in the website, allowing to then reset the password, while showing the strength of the new password entered. Finally the new password is accepted completing the process. Other examples of this application would be used when an <strong>ACTIVE</strong> client sends out the links in the welcome letter, with an account login link and a set or reset password link. These two links can also be used in the membership data letter and finally on any declined credit card letter links, allowing the recipients of any email communications to access the password reset.\r\n\r\nBut how does a customer reset their password without any email as cited in the paragraph above? In the shopping cart, a customer goes to member login and immediately clicks on “forgot password”, then enters user name, clicks and an email will be sent with a link to reset password. In check-out on cart this can be done and in Account Manager there is also a “forgot password” button.  The password reset function is even able to be accessed via the password link in the Member Choice system. \r\n\r\nWhat does this all imply for the actual web site design? In nearly all the scenarios mentioned the frame for “forgot password” is included. In “Member Sign-up” there is no login here. To employ the forgot password system your web designer will need to make a “forgot password” frame page as a special landing page. Also, make a “reset password” frame page as due to security reasons use WORD PRESS ONLY in tandem with Active V2.0 plugin or higher. Alternatively, use the secureclub.net Master Page if you do not use WordPress with your website. Watch the videos for each of the new web tools for complete understanding. \r\n\r\nCertainly, <strong>Active</strong> will be at <strong>Unified Grape & Wine Symposium in January of 2019 at Booth #519</strong>, but you don’t need to wait to find out more about how <strong>Active</strong> can simplify your life.\r\n\r\nFor more specifics now on <strong>Active</strong> and how <strong>Active’s All-In-One POS </strong>software sales system functionality; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), <strong>contact Thomas@activeclubsolutions.net to request a demo</strong>.\r\n\r\n<strong>About Activ8 Commerce:</strong>\r\n\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.\r\n','New Web Tool: Customer Forgot Password','','pending','closed','open','','new-web-tool-customer-forgot-password','','','2022-08-14 21:01:44','2022-08-15 04:01:44','',0,'https://activeclubsolutions.net/?p=3581',0,'post','',0),
(3587,2,'2019-01-13 21:56:50','2019-01-14 05:56:50','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h1>Responsive Ecommerce for Wineries / Distilleries</h1>\r\n<h1>Member Choice / Allocation for Wineries / Distilleries</h1>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nEcommerce is an essential part of any tasting room solution. Our ecommerce toolkit is embedded into your existing website and fully integrated with your Activ8 Commerce\' <a href=\"/winery-pos-features/ipad-winery-pos/\"><font color=\"#555555\">Tasting Room POS</font> </a>, and <a href=\"/winery-pos-features/wine-club-management/\"><font color=\"#555555\">Wine / Spirits Club Software</font></a>. It is all in one database.  \r\n<br>\r\nLet your customers enjoy a full, branded, state of the art online shopping experience and catapult your wine sales to the next level.  Multiple brands and shopping carts within one database is supported.  Active gift cards, which include a security code, can be used on the shopping cart.</li>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<h1>Explore our ecommerce features</h1>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<ul>\r\n<li>Our templates are fully responsive from smartphone to desktop devices.</li>\r\n<li>Your online customers will enjoy a refreshing and easy shopping experience with our single page checkout. Our smart and simple checkout process will reduce abandoned shopping carts and increase your sales.</li>\r\n<li>All online orders and updated customer data automatically flow into Active - <b>Manager</b> for customer record creation, payment card, order, and shipment processing, keeping all your sales in one single system.</li>\r\n<li>Rather than the shopping cart being hosted on our server, or other server, we add to your website our innovative <u>\'cookieless\'</u> <i>iframes</i> (creating our pages within your pages - embedded).</li>\r\n<li>With our many templates you have a starting point and subsequently full control of all the design elements that carry your brand image through to your <b>online store, on-line signup, kiosk, account management, and member choice</b> pages.</li>\r\n<li>Our <u>web design team</u> can take you from just adding the cart on to a existing page to a full redesign - or anything in between.</li>\r\n<li>The iframes use the latest industry \'Style Sheets\' to provide a totally customizable visual appearance.</li>\r\n<li>This allows our <u>web design team</u> to be creative and produce just the desired brand effect.</li>\r\n<li>In Wordpress, Active offers page persistence for customers that sets the user back to where they were if leaving and then returning to the page (bookmark within a page).</li>\r\n<li>In Wordpress, Active offers URL parameters for marketing campaigns to specify entry points into the catalog.</li>\r\n<li>Customers can benefit from our abandoned cart feature.</li>\r\n<li>Active <b>gift cards</b>, which include a security code, can be used on the shopping cart.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"25\" /]\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[gap height=\"75\" /]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<div style=\"margin-left: 10px;\">\r\n[ninzio_button text=\"Club Signup\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/sample-ecommerce/signup-kiosk\" /]\r\n\r\n[ninzio_button text=\"Manage Account\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/sample-ecommerce/account-management\" /]\r\n\r\n[ninzio_button text=\"Member Choice / Allocation\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/sample-ecommerce/member-choice\" /]\r\n\r\n[ninzio_button text=\"Shopping Cart\" size=\"medium\" target=\"_self _blank\" icon=\"arrow-circle-right\" back_color=\"\" color=\"\" href=\"/sample-ecommerce/shopping-cart\" /]\r\n</div>\r\n\r\n[gap height=\"25\" /]\r\n\r\n[splitter type=\"textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n<h2>ALL FEATURES</h2>\r\n[gap height=\"25\" /]\r\n<ul>\r\n   <li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n   <li><strong><a title=\"Automated Wine Club Processing\" href=\"/winery-pos-features/wine-club-management/\">Advanced Wine Club System</a></strong></li>\r\n   <li><strong><a title=\"Expert Technical Support\" href=\"/wine-club-software-features/free-expert-technical-support/\">Expert Technical Support</a></strong></li>\r\n   <li><strong><a title=\"Integrated & Certified Wine Club Management Software\" href=\"/wine-club-software-features/integrated-certified/\">Integrated & Certified</a></strong></li>\r\n   <li><strong><a title=\"Integration with QuickBooks Accounting\" href=\"/wine-club-software-features/accounting/\">Integration with QuickBooks Accounting</a></strong></li>\r\n   <li><strong><a title=\"Marketing, CRM & Customer Service\" href=\"/wine-club-software-features/marketing-crm-customer-service/\">Marketing, CRM & Customer Service</a></strong></li>\r\n   <li><strong><a title=\"Mobile Dashboards\" href=\"/wine-club-software-features/mobile-dashboards/\">Mobile Dashboards</a></strong></li>\r\n   <li><strong><a title=\"Web Design Services\" href=\"/winery-pos-features/platform/web-design-portfolio/\">Web Design Services</a></strong></li>\r\n   <li><strong><a title=\"Wine Club Software Technology\" href=\"/winery-pos-features/winery-software-technology/\">Winery Software Technology</a></strong></li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/one_third]\r\n\r\n[/fullbox]','Sample eCommerce','','publish','closed','closed','','sample-ecommerce','','','2019-01-17 08:55:53','2019-01-17 16:55:53','',0,'https://activeclubsolutions.net/?page_id=3587',0,'page','',0),
(3589,2,'2019-01-13 22:09:19','2019-01-14 06:09:19','<div class=\"ACSLoginDiv\" onclick=\"ACSLoginClicked();\"><span id=\"ACSLogin\" class=\"ACSLogin\">Member Login</span></div>\r\n[ACSScript server=CA dbname=sean]\r\n[ACSiFrame server=CA dbname=sean scenario=5 usesession=yes fcridcart=FC0000008 fcridclub=FC0000009 waitcursor=ring.gif bottommargin=20 scrollpoint=135]','Sample eCommerce - Shopping','','publish','closed','closed','','shopping-cart','','','2019-02-25 20:29:16','2019-02-26 04:29:16','',3587,'https://activeclubsolutions.net/?page_id=3589',0,'page','',0),
(3591,2,'2019-01-13 22:20:21','2019-01-14 06:20:21','[ACSScript server=CA dbname=sean]\r\n[ACSiFrame server=CA dbname=sean scenario=6 usesession=yes fcridcart=FC0000008 fcridclub=FC0000009 waitcursor=ring.gif bottommargin=20 scrollpoint=135]','Sample eCommerce - Account Management','','publish','closed','closed','','account-management','','','2019-02-25 20:27:52','2019-02-26 04:27:52','',3587,'https://activeclubsolutions.net/?page_id=3591',0,'page','',0),
(3593,2,'2019-01-13 22:30:31','2019-01-14 06:30:31','[ACSScript server=CA dbname=sean]\r\n[ACSiFrame server=CA dbname=sean scenario=1 fcridcart=FC0000008 fcridclub=FC0000009 waitcursor=ring.gif bottommargin=20 scrollpoint=135]','Sample eCommerce - Signup Kiosk','','publish','closed','closed','','signup-kiosk','','','2019-01-17 14:25:30','2019-01-17 22:25:30','',3587,'https://activeclubsolutions.net/?page_id=3593',0,'page','',0),
(3594,2,'2019-01-13 22:33:44','2019-01-14 06:33:44','[ACSScript server=CA dbname=sean]\r\n[ACSiFrame server=CA dbname=sean scenario=7 usesession=yes fcridcart=FC0000008 fcridclub=FC0000009 waitcursor=ring.gif bottommargin=20 scrollpoint=135]','Sample eCommerce - Member Choice','','publish','closed','closed','','member-choice','','','2019-02-25 20:28:40','2019-02-26 04:28:40','',3587,'https://activeclubsolutions.net/?page_id=3594',0,'page','',0),
(3600,2,'2019-01-09 12:39:29','2019-01-09 20:39:29','[embed]http://vimeo.com/309048103[/embed]\r\n\r\n<strong>Active</strong> has another new functionality in web tools introduced as “Club Sign-Ups.” Check out the video embedded in this article to and learn the secrets in 12 minutes, give or take, how and why this will work for your winery or distillery. There are several ways to think about club signups online or on a Kiosk platform. \r\n\r\nThe first example is the simplest, and, occurs with no complications. If a fan is interested in your wines or spirits and they happen to be shopping on-line they just click on the menu “club” or “club offerings”. They choose from the list of club offerings your winery or distillery offers then clicks to register by submitting billing information, shipping information, payment detail and then finally finishing with a final preview screen of the club selection made. Once the transaction is complete the Kiosk is ready for the next customer.\r\n\r\nAnother scenario is when a customer is a newsletter subscriber and they have already given your winery or distillery their email address. Once they have opted in and they decide to go online to join a club, the select the club choice, click submit and then are asked to register detail. But the database recognizes the email address and asks the customer to confirm if it is them, YES or NO. Since this example is a YES, the next step is to finish the registration with ship to/bill to detail and payment information. \r\n\r\nA third example is when a sign-up or new account is being set-up but the email is already being used by another account already on file. This is usually a gifting of a club membership to another party. In this instance a new user name must be used rather than an existing email address; so that the new membership can be put into the “giftee’s” name. This allows a new registration of account so that the “giftee” can put in the name, address, email, date of birth, etc. and yet the club member can use their member card on file for payment. \r\n\r\nLastly, in the case where a user name has already been used to sign-up and create an account, <strong>Active’s</strong> system will flag the duplicate and not let one proceed. Until a new user name or email is used to set-up a new account for registration, the new sign-up applicant/customer cannot continue. \r\n\r\nCertainly, <strong>Active will be at Unified Grape & Wine Symposium in January of 2019 at Booth #519</strong>, but you don’t need to wait to find out more about how <strong>Active</strong> can simplify your life. \r\n\r\nFor more specifics now on Active and how Active’s All-In-One POS software sales system; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.\r\n\r\n<strong>About Activ8 Commerce:</strong>\r\n\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net. <strong>To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.</strong>\r\n\r\n','Secrets of Club Sign-Ups on Kiosk','','pending','closed','open','','secrets-of-club-sign-ups-on-kiosk','','','2022-08-14 21:01:44','2022-08-15 04:01:44','',0,'https://activeclubsolutions.net/?p=3600',0,'post','',0),
(3611,15,'2019-01-17 08:55:24','2019-01-17 16:55:24','','sample-ecommerce-banner-short','','inherit','closed','closed','','sample-ecommerce-banner-short','','','2019-01-17 08:55:24','2019-01-17 16:55:24','',3587,'https://activeclubsolutions.net/wp-content/uploads/2019/01/sample-ecommerce-banner-short.jpg',0,'attachment','image/jpeg',0),
(3620,15,'2019-01-17 14:25:14','2019-01-17 22:25:14','','sample-ecommerce-banner-faded','','inherit','closed','closed','','sample-ecommerce-banner-faded','','','2019-01-17 14:25:14','2019-01-17 22:25:14','',3593,'https://activeclubsolutions.net/wp-content/uploads/2019/01/sample-ecommerce-banner-faded.jpg',0,'attachment','image/jpeg',0),
(3627,2,'2021-03-04 16:41:27','2021-03-05 00:41:27','<img src=\"https://activeclubsolutions.net/wp-content/uploads/2017/02/wallofcorks.jpg\" alt=\"\" width=\"200\" class=\"aligncenter size-full wp-image-2408\" /><img><br><br>\r\n\r\n<span style=\"font-size: 14pt;\">1.  An operator can run their club using any inventory stock location (Warehouse, Tasting Room, etc). This ability is not new, but it leads into what has been improved.</span>\r\n<br>\r\n<span style=\"font-size: 14pt;\">2.  Having done #1, club members can now go into any location and pick up. The system will un-allocate the inventory used in #1 and allocate it from the location where they are picking up and remove it from the pickup location\'s on-hand quantity. This will happen either on the “Sign For Pickup” feature on the “Order History” screen of the POS, if it was paid through manager, or it will happen on checkout for that club order at the POS. Currently an operator was forced to do an inventory transfer back to the original location stock to balance out the inventory movement.</span>\r\n<br>\r\n<span style=\"font-size: 14pt;\">3.  Some of our customers have multiple Tasting Rooms but they ship all orders from a different location. If someone bought wine at the winery and they wanted it shipped the operator would need to make a manual inventory transfer since the transaction used the Tasting Room Inventory location and it was depleted at the ship from location. Now an operator can put a location override in the POS Configuration record so each tasting room can have a different ship location if needed. If there is an override ship location in the POS Configuration record then that locations inventory will be used in the transaction rather than the tasting rooms inventory. This will take place on all ship orders. If the override ship location is left blank the system will use the POS location.</span>','Inventory Management Improvements','','pending','closed','open','','3627-2','','','2022-08-14 20:28:41','2022-08-15 03:28:41','',0,'https://activeclubsolutions.net/?p=3627',0,'post','',0),
(3631,2,'2019-01-23 17:31:38','2019-01-24 01:31:38','There are reasons to use 3rd party email companies like Mail Chimp, Constant Contact, Vertical Response and more. However, doesn’t every Retail Manager, Tasting Room Manager, Wine Club Administrator secretly wish to have all the bells and whistles in one complete program and user-friendly system? \r\n\r\nAs a manager, one outsources or uses those 3rd party entities because those partners clear out bounced or unsubscribes for you from your list, saving you some time. You still will have to manually unsubscribe those folks from your database though. Another compelling reason to enlist 3rd party email marketing companies is due, more than likely, to the fact that the POS platform you are using is unable to process and track that type of data which requires another technology platform or a 3rd party outsourcing. \r\n\r\nWhen using Mail Chimp, or any one of the choices that exist, what you cannot “see” in the back of the house is what did the user click on, and, where else did they visit on your website or social media links. The other disadvantage when using a 3rd party system is that none of the customer information is being captured to continue building the customer profile. \r\n\r\nWhen Active is on board at your winery or distillery you can actually “see” where the customers, who click beyond just opening, are clicking on your website, email links, and video attachments. In fact, Active can help you segment and sort your customers based on preferences, which in turn allow you a follow up “reason” with those customers who clicked. Next you automate a specialized message or enticement, in the format or communication method they prefer, to give them a special price or offering, that matches their interest on the places they clicked or where they searched on your site or social media links. \r\n\r\nWith Active there is no need to rely on 3rd party marketing companies. Some Active clients are comfortable to the 3rd party email marketing firms so Active does integrate and partner with many for the sake of convenience to the clients. Yet, once most clients have used Active for a longer period, they realize they don’t need to have both and move to relying on doing all their email marketing in the Active system. To view more insight on how Active can help your email campaigns succeed, and to continue to build your customer profiles, then check out the 12-minute video on Email Campaign Analysis.\r\n\r\nCertainly, Active will be at Unified Grape & Wine Symposium in January of 2019 at Booth #519, but you don’t need to wait to find out more about how Active can simplify your life. \r\n\r\nFor more specifics now on Active and how Active’s All-In-One POS software sales system; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.\r\n\r\nAbout Activ8 Commerce:\r\n\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.\r\n','Marketing Tools - Email Campaign Analysis','','pending','closed','open','','marketing-tools-email-campaign-analysis','','','2022-08-14 21:00:37','2022-08-15 04:00:37','',0,'https://activeclubsolutions.net/?p=3631',0,'post','',0),
(3638,2,'2019-02-13 21:16:57','2019-02-14 05:16:57','','Complete Combo Price Chart','','inherit','closed','closed','','complete-combo-price-chart','','','2019-02-13 21:20:10','2019-02-14 05:20:10','',1868,'https://activeclubsolutions.net/wp-content/uploads/2019/02/Complete-Combo-Price-Chart.pdf',0,'attachment','application/pdf',0),
(3643,2,'2019-02-13 21:29:58','2019-02-14 05:29:58','','pricechart','','inherit','closed','closed','','pricechart','','','2019-02-13 21:30:23','2019-02-14 05:30:23','',1868,'https://activeclubsolutions.net/wp-content/uploads/2019/02/pricechart.png',0,'attachment','image/png',0),
(3652,2,'2019-02-20 10:11:10','2019-02-20 18:11:10','<strong>Activ8 Commerce, Inc. Promotion of Team Member Punam Sinha</strong>\r\n\r\nPleasanton, CA – Activ8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, Club, Web Design, eCommerce) since 2003, and is pleased to announce the promotion of Punam Sinha within the Active team, to Vice President of Operations. Punam Sinha has been an important part of the support technology team since the early days of Active. Sinha joined <strong>Active</strong> in 2006 with the company still developing its product offerings. Punam’s experience within the DTC software development sector and tenure with Active have given her a unique perspective on how to resolve our client’s challenges. \r\n\r\nSinha has been developing technical solutions within Active for well over a decade, and, knows the system functionality intimately.  With this promotion Punam will continue to lead the technology support team to maintain clear processes internally as growth ensues. This will further cultivate Active’s commitment to a partnership approach with winery and distillery clients, bistros, wine bars, speakeasies, and more. \r\n\r\n<em>“I joined <strong>Active</strong> when the company was in it’s infancy. It has been an amazing journey to be part of this wonderful team of professionals. <strong>Active</strong> is the best all in one DTC solution combining Club, POS, and eCommerce all rolled into one. I look forward to the future and the many ways Active’s software system can make Active clients lives easier,”</em> says Sinha.\r\n\r\nPunam’s story starts in India where she met and married her husband. As her husband was into computers and engineering it stimulated interest in her own being. Motivated, yet managing small children, she attended school finishing with several post graduate degrees (Master’s in Organic Chemistry from GGU, Bilaspur, CG) (Applied Computer Science from CMC, Kolkata) from notable academic institutions. In 1998 Punam and her family moved from India to the United States and presently enjoys the west coast, located within the San Francisco Bay Area. Punam’s hobbies include traveling the globe with her husband, hanging out with her two daughters, and enjoying nature walks, with or without the family dog.\r\n\r\n<em>“Punam Sinha’s depth of experience, wealth of knowledge, and long-term engagement gives Punam a level of expertise in problem solving; and in the development of Active software, which often rivals my own as founder and Chief Technology Officer. Punam will give our team operational direction and a bit more thoughtful procedural structure with informed, comprehensive attention to detail as the company continues to grow,”</em> stated Arne Haugland, President and CTO of Activ8 Commerce. \r\n\r\n<strong>About Activ8 Commerce:</strong>\r\nActiv8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, club, web design, ecommerce software). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.\r\nFor more information, visit activeclubsolutions.net.\r\n\r\nContact: Dan Nechemias\r\nDan Nechemias, Vice President of Sales and Marketing\r\nDan@activeclubsolutions.net\r\n(925) 248-4190 (ext. 56) or (877) 441-CLUB (ext. 56)\r\n','Active Promotes Punam Sinha to Vice President of Operations','','pending','closed','open','','active-promotes-punam-sinha-to-vice-president-of-operations','','','2022-08-14 21:00:29','2022-08-15 04:00:29','',0,'https://activeclubsolutions.net/?p=3652',0,'post','',0),
(3653,10,'2019-02-28 10:05:07','2019-02-28 18:05:07','','Punam_bio2','','inherit','closed','closed','','punam_bio2','','','2019-02-28 10:05:07','2019-02-28 18:05:07','',3652,'https://activeclubsolutions.net/wp-content/uploads/2019/02/Punam_bio2.jpg',0,'attachment','image/jpeg',0),
(3655,2,'2019-03-08 13:00:44','2019-03-08 21:00:44','<html>\r\n<head>\r\n   <META HTTP-EQUIV=\"Content-Type\" CONTENT=\"text/html; charset=windows-1252\">\r\n<!--   <meta http-equiv=\"Page-Enter\" content=\"revealTrans(duration=.5, Transition=6)\"> -->\r\n   <TITLE>Activ8 help and support documents</TITLE>\r\n    <LINK REL=\"StyleSheet\" href=\"http://secureclub.net/help/acm1.css\">\r\n    <LINK REL=\"StyleSheet\" href=\"http://secureclub.net/help/acm-idx.css\">\r\n<SCRIPT SRC=\"scripts.js\" LANGUAGE=\"javascript\"></SCRIPT>  \r\n<style type=\"text/css\">\r\n	h1 { padding-top : 3px; }\r\n	h1 { padding-bottom : 4px; }\r\n	h3 { font-size : 100%; margin-left : 1em; }\r\n</style>\r\n</head>\r\n\r\n<body>\r\n\r\n<div class=\"main\">\r\n<h1>Activ8 help and support documents</h1>\r\n\r\n<div class=\"left\">\r\n<h2>Activ8 Manager</h2>\r\n\r\n<p><a href=\"http://secureclub.net/help/train/ACM_LG.pdf\" target=\"acsdocs\"><i>Learner&rsquo;s Guide</i>&nbsp;&nbsp;<img src=\"pix/pdficon_sm.png\" border=\"none\" alt=\"PDF\"></a></p>\r\n<p><a href=\"http://secureclub.net/help/acm/index.html\" target=\"acsdocs\"><b><i>User&rsquo;s Guide</i></b></a></p>\r\n<!-- 	<p class=\"indent\"><a href=\"http://secureclub.net/help/acm/ACM_User\'s_Guide.pdf\" target=\"acsdocs\"><img src=\"pix/pdficon_large.png\" border=\"none\" alt=\"PDF\"> PDF version</a></p> -->\r\n<ul>\r\n  <li><a href=\"http://secureclub.net/help/acm/UG/ug_RDC.htm\" target=\"acsdocs\">Setting up remote access</a></li>\r\n<!-- 	<li><a href=\"http://secureclub.net/help/acm/UG/ug_ftp.htm\" target=\"acsdocs\">Enabling ftp (Windows &amp; OS X)</a></li> -->\r\n	<li><a href=\"http://secureclub.net/help/acm/UG/ug_Job_list.htm\" target=\"acsdocs\">The Job Queue</a></li>\r\n	<li><a href=\"http://secureclub.net/help/acm/UG/ug_Ccard_gateway.htm#vaults\" target=\"acsdocs\">Credit card vaults and tokens</a></li>\r\n	<li><a href=\"http://secureclub.net/help/acm/UG/ug_Reports_dash.htm\" target=\"acsdocs\">Activ8 Dashboard reports</a></li>\r\n	<li><a href=\"http://secureclub.net/help/acm/UG/ug_Mail.htm\" target=\"acsdocs\">Sending custom e-mail</a></li>\r\n</ul>\r\n<!-- <p><a href=\"http://secureclub.net/help/technotes/index.html\" target=\"acsdocs\">Release notes</a></p> -->\r\n\r\n<!-- <h3>Club release checklists:</h3>\r\n<p><a href=\"http://secureclub.net/help/acm/cklst/cklst_pkgclub.html\" target=\"acsdocs\">Running a package club</a></p>\r\n<p><a href=\"http://secureclub.net/help/acm/cklst/cklst_selclub.html\" target=\"acsdocs\">Running a selection club</a></p> -->\r\n\r\n<h3>Accounting guides:</h3>\r\n<p><a href=\"http://secureclub.net/help/qba/qba_setup.htm\" target=\"acsdocs\"><i>QuickBooks database setup</i></a></p>\r\n<!-- 	<p class=\"indent\"><a href=\"http://secureclub.net/help/acctg/support/acctg_setup.pdf\" target=\"acsdocs\"><img src=\"pix/pdficon_large.png\" alt=\"PDF\"> PDF version</a></p> -->\r\n<p><a href=\"http://secureclub.net/help/qba/index.html\" target=\"acsdocs\"><i>QuickBooks integration</i></a></p>\r\n<!-- 	<p class=\"indent\"><a href=\"http://secureclub.net/help/acctg/qba/acctg_QBA.pdf\" target=\"acsdocs\"><img src=\"pix/pdficon_large.png\" alt=\"PDF\"> PDF version</a></p> -->\r\n<ul>\r\n  <li><a href=\"http://secureclub.net/help/qba/qba_faq.htm\" target=\"acsdocs\">Errors and troubleshooting</a></li>\r\n	<li><a href=\"http://secureclub.net/help/http://www.youtube.com/watch?v=LI5G157f4lM\" target=\"acsdocs\">Video: QuickBooks Accounting interface setup</a></li>\r\n</ul>\r\n\r\n</div>\r\n\r\n<div class=\"right\"><h2>Activ8 POS</h2>\r\n\r\n<p><a href=\"http://secureclub.net/help/pos/Hardware_setup.html\" target=\"acsdocs\"><i>Hardware Setup</i>&nbsp;&nbsp;<img src=\"pix/pdficon_sm.png\" border=\"none\" alt=\"PDF\"></a></p>\r\n<p><a href=\"http://secureclub.net/help/pos/index.html\" target=\"acsdocs\"><b><i>User&rsquo;s Guide</i></b></a></p>\r\n<ul>\r\n  <li><a href=\"http://secureclub.net/help/pos/pos_trouble.html\" target=\"acsdocs\">Troubleshooting the Star receipt printer</a></li>\r\n</ul>\r\n<p><a href=\"http://secureclub.net/help/pos/Release_notes.html\" target=\"acsdocs\">Release notes</a><!-- &nbsp;&nbsp;<img src=\"pix/pdficon_sm.png\" border=\"none\" alt=\"PDF\"> --></p>\r\n<br />\r\n<h2>Videos and tutorials</h2>\r\n<p><a href=\"http://secureclub.net/help/https://activeclubsolutions.net/videotutorials/\" target=\"acsdocs\">Activ8 tutorial videos</a></p>\r\n<br />\r\n<br />\r\n<span title=\"For web site developers, POS and accounting system integrators, and fulfillment centers\">\r\n<h2>Developer tools</h2>\r\n<p><a href=\"http://secureclub.net/help/http://www.secureclub.net/webservices/customerservice.asmx\" target=\"acsdocs\">Customer web services</a></p>\r\n<p><a href=\"http://secureclub.net/help/http://www.secureclub.net/Help/cart/cart_setup.html\" target=\"acsdocs\">Web toolkit with iframes</a></p>\r\n</span>\r\n<!-- <p style=\"margin-top: 6em;\"><a href=\"http://secureclub.net/help/ftp://ActiveClub:Olivia15@12.199.164.12/Help%20Documents/\" target=\"acsdocs\">Download documents by ftp</a></p> -->\r\n</div>\r\n\r\n<br clear=\"all\">\r\n\r\n<!-- <div class=\"left\">\r\n</div> -->\r\n</div>\r\n\r\n<p align=\"center\" style=\"font-size: 80%\">All documents &copy; 2014&ndash;2019 Activ8 Commerce, Inc.</p>\r\n\r\n</body>\r\n</html>\r\n\r\n<!-- Remember to update list in DO0000248 -->\r\n','Resource','','publish','closed','closed','','resource','','','2019-03-08 13:19:19','2019-03-08 21:19:19','',0,'https://activeclubsolutions.net/?page_id=3655',0,'page','',0),
(3659,2,'2019-03-06 08:58:50','2019-03-06 16:58:50','Do you know where your DTC growth comes from? There are five main areas to consider. Those channels include tasting room, club(s), web/eCommerce, telesales, and events.  Are you really looking at the numbers, setting goals, developing strategies to meet those goals and have determined key performance indicators for your winery or distillery? If you have answered no or not really, then perhaps reading further will help you better assess how best to set-up your craft beverage business for success. \r\n\r\nFor those wineries and distilleries that have a tasting room, many would agree that most of the winery DTC revenues are generated from the tasting room. Club sign-ups are usually initiated in the tasting room and at events held on or off-site. Events at the winery also generate revenues but again the initial point of contact is the tasting room. In general, the tasting room is the main channel for DTC revenue dollars. According to the WBM “two-thirds of DTC sales flow through the tasting rooms.” \r\n\r\nOnce staff have signed up visitors in the tasting room to join the club, the club channel is the next main producer of DTC revenues. Club billings can give the craft business a boost during a time of year that is slower than high season and offers a new release sampling to folks that are already fans of your brand. Often the club billing, whether monthly, quarterly, etc. can supersede the tasting room revenues in that same period. For smaller craft beverage businesses club is often the leader in revenues some months during the fiscal year. \r\n\r\nWhile telesales data was not really discussed much in articles reviewed for writing this piece, the old technology is new again and very much a part of new DTC business these days. Some wineries outsource tele-sales. Whether you conduct telesales campaigns in-house or outsource them, there are some wineries that report telesales have become the largest driver of new DTC business, (C. Penn, WBM, May 2011).\r\n\r\nOnline, web or eCommerce as its known while important is not the main driver of new DTC revenues. There is a limited number of people who will seek out a wine online and buy without any winery visit. Usually eCommerce sales are driven by wineries who send offers to customers already familiar with the winery or distillery and have tasted the product. In an article from Wine-Searcher News & Features, an Oregon winery executive said she noted online sales at 3% while tasting room sales were 20% in the same period. In the same article Judd Wallenbrock, President and CEO of C. Mondavi & Family, explains that currently online cart sales account for just 5% of the total DTC revenues, the majority coming from wine club and tasting room sales. Nevertheless, Wallenbrock and others all agree that the online channel will become more important in the future; and is already important to micro craft beverage businesses with limited distribution. \r\n\r\nKnowing where your DTC growth comes from can help you plan to maximize your ROI. Look at your revenue numbers in each channel to see where you are currently. Then you can set reachable goals, note your key performance indicators, create dashboards to measure and display results. This helps you evaluate how well your goals are being met based on the KPI’s. From this point you can change strategies and processes as needed to improve performance. Always assess the KPI’s to see if they still align with goals so you can adjust them as needed. \r\n\r\nSince most of your revenues come from the tasting room, make sure you have a strong POS system that can capture customer data. Having a complete system allows automation of tasks requiring less labor. Imagine having a sales system that allows you the ability to segment your lists (email, club, pos, events, telesales), sort through a data bank of 18,000 data points versus 65 data points, gives you dashboards to monitor your progress, and much more. \r\n\r\nFor more specifics now on Active and how Active’s All-In-One POS software sales system; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.\r\n\r\nAbout Activ8 Commerce:\r\n\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.\r\n','Where DTC Growth Comes From','','pending','closed','open','','where-dtc-growth-comes-from','','','2022-08-14 20:57:02','2022-08-15 03:57:02','',0,'https://activeclubsolutions.net/?p=3659',0,'post','',0),
(3661,2,'2019-03-20 17:29:05','2019-03-21 00:29:05','Email is the number one way to sell more online. Yes, there are many email service providers that can help you do that for a price of course. Even though those email service providers help your winery or distillery get more business, they lack one very important aspect. They don’t give you data on your email campaigns except for the nominal tally of the count of each category in outbound, sent, failed, complaints, opens, clicks, unsubscribes and inbound.\r\n\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2019/03/emailstatistics.png\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2019/03/emailstatistics-300x118.png\" alt=\"\" width=\"300\" height=\"118\" class=\"alignnone size-medium wp-image-3662\" /></a>\r\n\r\nRecently in conducting an email campaign analysis internally with Active, the CTO verified Active’s unique database system can track every link, click, and page the user clicks into the body of the email; even noting the actual device that is being used by the email recipient (iPhone, mac, pc, iPad, outlook). \r\n\r\nWith Active you can successfully execute email campaigns directly from your CRM without those email service provider integrations. Using Active for email marketing campaigns seemingly gives you the impression you have your finger on the pulse of your customers, your data, and your business all with Active’s mobile app system. \r\n\r\nYou don’t need to outsource APIs to Mail Chimp, Vertical Response, Constant Contact or any other email service provider any longer. Essentially you can save some money since you no longer need to outsource that marketing task; and you get real time data in seconds.\r\n\r\nActive also automatically unsubscribes those who want to opt out. With any of the email service providers they do sequester those that wish to opt-out. Yet your business still must manually pay staff (labor costs) to officially update that “opt-out” action in the customer’s profile within your CRM. In Active the customer clicks “opt-out” and is taken to the formal unsubscribe screen where the customer finishes the task. \r\n\r\nImagine having a sales system that allows you the ability to segment your lists (email, club, pos, events, telesales), sort through a data bank of 18,000 data fields versus only 65 data points in most, gives you dashboards to monitor your progress, and much more. This aspect of Active allows you to react quickly and send another email to those that didn’t “open” just with a quick sort of your data. You can also send a direct segmented offer to those that clicked on the link to your website while viewing a specific wine or spirit from the email. It is just that easy with Active.\r\n\r\nFor more specifics now on Active and how Active’s All-In-One POS software sales system; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.\r\n','Email Marketing Made Easy','','pending','closed','open','','email-marketing-made-eaasy','','','2022-08-14 20:29:56','2022-08-15 03:29:56','',0,'https://activeclubsolutions.net/?p=3661',0,'post','',0),
(3662,10,'2019-03-20 17:25:45','2019-03-21 00:25:45','','emailstatistics','','inherit','closed','closed','','emailstatistics','','','2019-03-20 17:25:45','2019-03-21 00:25:45','',3661,'https://activeclubsolutions.net/wp-content/uploads/2019/03/emailstatistics.png',0,'attachment','image/png',0),
(3671,2,'2019-04-10 14:44:00','2019-04-10 21:44:00','\r\n\r\nFor smoother tasting room service and operations functionality partial and split payments on Active’s POS are easy as pie! While some DTC focused software companies are only adding that feature now, Active has had this feature in place since Active began in 2003.  Active’s simple way to pay a tab in a tasting room allows groups to share the bill without having to create a separate invoice for each party included in the tab.\r\n\r\nSplitting a case purchase between customers has never been easier. Whether tasting fees, merchandise or any other items are purchased in a tasting room, Active’s POS sales system allows the winery or distillery to satisfy the guest’s wishes on how to split the payment on the final tab any which way with ease. \r\n\r\nWhen purchasing, any amounts to be shared with any payment configuration is simple, fast and secure in Active’s POS system. For example, the tab could be split two ways with two different credit cards, or, paid with one customer paying with a credit card and the other customer paying with cash or a check. The tab could be split a set amount per person in a larger group. The customer could also say “please put the entire tab on my account” or “use my card on file.” Active gives you and your tasting room customers more choice in paying the bill and closing the tab in various ways; whether partial or split payments are made to close the bill. \r\n\r\nMost wineries or distilleries usually need many software platforms to do everything Active can do from one, single, secure database. \r\nFor more specifics now on Active and how Active’s All-In-One POS software sales system; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.\r\n\r\nAbout Activ8 Commerce:\r\n\r\nActiv8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.\r\n','Easy POS Partial and Split Payments with Active','','pending','closed','open','','easy-pos-partial-and-split-payments-with-active','','','2022-08-14 20:29:24','2022-08-15 03:29:24','',0,'https://activeclubsolutions.net/?p=3671',0,'post','',0),
(3673,2,'2021-03-10 14:57:53','2021-03-10 22:57:53','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2019/04/digi-know-website-design-email-campaign-2-002-600-x-345.jpg\"><img src=\"https://activeclubsolutions.net/wp-content/uploads/2019/04/digi-know-website-design-email-campaign-2-002-600-x-345-300x173.jpg\" alt=\"\" width=\"300\" height=\"173\" class=\"alignnone size-medium wp-image-3674\" /></a>\r\n\r\n\r\nHow often should you redesign or refresh your website? Many experts will tell you to update your site every two or three years. Actually you may need to refresh or redesign your website more often. In fact over 94% of all website visitors have made up their mind about your site in the first two seconds. It\'s true! If you can get them past the first 2 seconds, you have 10 seconds to leave an impression. Active understands how to design sites that leave a good first impression! \r\n\r\nHow often you update your website also depends on how well your site performs across a variety of metrics. Molly Gregg at Active has noted a few situations that require an update or redesign including:\r\n\r\n•too few leads\r\n•traffic but no conversions\r\n•not a glance friendly site\r\n•outdated design\r\n•not mobile friendly\r\n\r\nA graduate of San Francisco State University Gregg received her Master\'s in Instructional Technologies with an emphasis on user interaction. This program mainly focuses on instructional skills such as web design, graphics animation and video. Molly strengthens Active by adding stellar \"web design\" to Activ8\'s menu of services! Give Molly a call or send her an email directly to find out how Molly can help your website make a good  first impression! \r\n\r\nCheck out some winery sites below that Molly has already refreshed! \r\n\r\nLIONSPEAKWINE.COM\r\nMCGRAILVINEYARDS.COM\r\nNOTTINGHAMCELLARS.COM\r\n\r\nCONTACT MOLLY@ACTIVECLUBSOLUTIONS.COM FOR MORE INFORMATION OR CALL 925-230-1347!','Did You Know Your Website Has 2 Seconds to Impress?','','pending','closed','open','','did-you-know-your-website-has-2-seconds-to-impress','','','2022-08-14 20:58:59','2022-08-15 03:58:59','',0,'https://activeclubsolutions.net/?p=3673',0,'post','',0),
(3674,10,'2019-04-23 14:55:30','2019-04-23 21:55:30','','digi-know-website-design-email-campaign-2 (002) (600 x 345)','','inherit','closed','closed','','digi-know-website-design-email-campaign-2-002-600-x-345','','','2019-04-23 14:55:30','2019-04-23 21:55:30','',3673,'https://activeclubsolutions.net/wp-content/uploads/2019/04/digi-know-website-design-email-campaign-2-002-600-x-345.jpg',0,'attachment','image/jpeg',0),
(3676,9,'2019-04-24 19:26:00','2019-04-25 02:26:00','[fullbox id=\"\" padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[two_thirds last=\"no\"]\r\n<h2>Integrated Hardware &amp; Accessories</h2>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nThere are so many players involved in winery <a href=\"https://activeclubsolutions.net/winery-pos-features\"><span style=\"color: #555555;\">DTC (direct to consumer)</span> </a> sales. We understand this so we have several links to compatible hardware and accessories for our All in One DTC Solution. The goal is to bring you a tasting room solution that can easily provide you with real time shipping, address validation, accounting integration and more.\r\n\r\n[/two_thirds]\r\n\r\n[one_third last=\"yes\"]\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><a href=\"http://www.amazon.com/gp/product/B01HRJRXZQ/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01HRJRXZQ&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=7dd3f106ca73637e9066b4a65032035f\" target=\"_blank\" rel=\"noopener noreferrer\">Star Micronics TSP143IIILAN Ethernet (LAN) Thermal Receipt Printer with Auto-cutter and Internal Power Supply - Gray</a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B01HRJRXZQ\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></li>\r\n 	<li>LAN versions. NO USB OR BLUETOOTH receipt printers please.</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<a href=\"http://www.amazon.com/gp/product/B01HRJRXZQ/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01HRJRXZQ&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=6e7729722f62e690f859d04788c0603c\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&amp;MarketPlace=US&amp;ASIN=B01HRJRXZQ&amp;ServiceVersion=20070822&amp;ID=AsinImage&amp;WS=1&amp;Format=_SL250_&amp;tag=active80c-20\" border=\"0\" /></a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B01HRJRXZQ\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n[/one_third]\r\n[one_third last=\"yes\"]\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><a href=\"http://www.amazon.com/gp/product/B018SPFE72/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B018SPFE72&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=2800e34908c1c20921e0960878878d66\" target=\"_blank\" rel=\"noopener noreferrer\">(50 Rolls) BPA FREE ROLLXY Thermal Paper - 3-1/8 x 230 Feet (CT-S300)</a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B018SPFE72\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></li>\r\n 	<li><a href=\"http://www.amazon.com/gp/product/B018SPH7WM/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B018SPH7WM&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=4d6b46c25b0a69aef1a75517d650aec9\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&amp;MarketPlace=US&amp;ASIN=B018SPH7WM&amp;ServiceVersion=20070822&amp;ID=AsinImage&amp;WS=1&amp;Format=_SL250_&amp;tag=active80c-20\" border=\"0\" /></a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B018SPH7WM\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n[/one_third]\r\n[two_thirds last=\"no\"]\r\n<ul>\r\n 	<li><strong>Ipad</strong> -The 9.7” iPad - needs the minimum amount of memory, 32GB.Current model is the 9.7-inch iPad Wi-Fi (2018) with 32GB (iPad Pro’s, 11 or 13 inch screen size no longer have audio jack that’s why not recommended. Please contact ACS before you order the iPad Pro)</li>\r\n\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><a href=\"http://www.amazon.com/gp/product/B07CZMMQPM/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07CZMMQPM&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=fdf888ef9f81b07b8a5e27feb1af1a30\" target=\"_blank\" rel=\"noopener noreferrer\">Apple iPad (Wi-Fi, 32GB) - Gold (Latest Model)</a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B07CZMMQPM\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n[/two_thirds]\r\n[one_third last=\"yes\"]\r\n<a href=\"http://www.amazon.com/gp/product/B07CZMMQPM/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07CZMMQPM&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=975b6d94c0b14222d6edc9c44219fda2\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&amp;MarketPlace=US&amp;ASIN=B07CZMMQPM&amp;ServiceVersion=20070822&amp;ID=AsinImage&amp;WS=1&amp;Format=_SL250_&amp;tag=active80c-20\" border=\"0\" /></a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B07CZMMQPM\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n[/one_third]\r\n<ul>\r\n 	<li style=\"list-style-type: none;\"><strong>Cash Drawer</strong></li>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>- Star Micronics SMD2-1317 Mobility Cash Drawer</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>Manufacturer’s link to all products:</ul>\r\n</li>\r\n</ul>\r\n<a href=\"http://www.starmicronics.com/pages/All-Products\">http://www.starmicronics.com/pages/All-Products</a></li>\r\n</ul>\r\n</li>\r\n 	<li><a href=\"http://www.amazon.com/gp/product/B01IK7LVDY/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01IK7LVDY&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=ac6ad219bdecfd4bad767d34e7873507\" target=\"_blank\" rel=\"noopener noreferrer\">Star Micronics 37964220 Cash Drawer, Printer Driven, 4 Bill, 4 Coin, DK Ready, 13\" W x 17\" D, Black</a><img class=\"aligncenter\" style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B01IK7LVDY\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\"><a href=\"http://www.amazon.com/gp/product/B01IK7LVDY/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01IK7LVDY&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=164814e7ff63fa1aa789f6427931fb54\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"aligncenter\" src=\"//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&amp;MarketPlace=US&amp;ASIN=B01IK7LVDY&amp;ServiceVersion=20070822&amp;ID=AsinImage&amp;WS=1&amp;Format=_SL250_&amp;tag=active80c-20\" border=\"0\" /></a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B01IK7LVDY\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<p style=\"text-align: center;\"><strong>Barcode Scanners</strong> - Socket Mobile Socket Scan S700 1D Imager Barcode Scanner with Bluetooth\r\nAnother option can be - Socket Mobile Dura Scan D700 1D Imager Barcode Scanner with Bluetooth\r\nManufacturer’s link to scanners : <a href=\"http://www.socketmobile.com/products\">http://www.socketmobile.com/products</a></p>\r\n\r\n<ul>\r\n 	<li style=\"list-style-type: none;\"><a href=\"http://www.amazon.com/gp/product/B07GC9F2X9/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07GC9F2X9&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=27e4479f8cdfd2cc1b9897632f06f6a7\" target=\"_blank\" rel=\"noopener noreferrer\">SocketScan S700, 1D Barcode Scanner, Green &amp; Charging Dock</a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B07GC9F2X9\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></li>\r\n</ul>\r\n\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\"><a href=\"http://www.amazon.com/gp/product/B07GC9F2X9/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07GC9F2X9&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=4518848b6391ff9859494425df7b6868\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"aligncenter\" src=\"//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&amp;MarketPlace=US&amp;ASIN=B07GC9F2X9&amp;ServiceVersion=20070822&amp;ID=AsinImage&amp;WS=1&amp;Format=_SL250_&amp;tag=active80c-20\" border=\"0\" /></a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B07GC9F2X9\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\"><a href=\"http://www.amazon.com/gp/product/B07GC95B6V/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07GC95B6V&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=301332d0c232fe2cecdfb63120420e86\" target=\"_blank\" rel=\"noopener noreferrer\">DuraScan D700, 1D Barcode Scanner, Gray &amp; Charging Dock</a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B07GC95B6V\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\"><a href=\"http://www.amazon.com/gp/product/B07GC95B6V/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07GC95B6V&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=4950d0a28a10efebbdfbb4b90c55f559\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"aligncenter\" src=\"//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&amp;MarketPlace=US&amp;ASIN=B07GC95B6V&amp;ServiceVersion=20070822&amp;ID=AsinImage&amp;WS=1&amp;Format=_SL250_&amp;tag=active80c-20\" border=\"0\" /></a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B07GC95B6V\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<p style=\"text-align: center;\"><strong>Stand for the iPads</strong> – Windfall Portrait Stand For iPad Air/iPad Air 2/iPad Pro 9.7. When ordering the stand, be sure you confirm that your iPad model will work with the stand.</p>\r\n\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\"></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<a href=\"http://www.amazon.com/gp/product/B01K1JTCNU/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01K1JTCNU&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=f7c9b0e84a881edf243567cd018f3eaa\" target=\"_blank\" rel=\"noopener noreferrer\">Secure Mounting to a Countertop or Tabletop with Pivot and Spin Capabilities Alo</a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B01K1JTCNU\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" /></li>\r\n</ul>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\"><a href=\"http://www.amazon.com/gp/product/B01K1JTCNU/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01K1JTCNU&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=a2c5456a6a6547b4e848d9c9f05ebbfe\" target=\"_blank\" rel=\"noopener noreferrer\"><img class=\"aligncenter\" src=\"//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&amp;MarketPlace=US&amp;ASIN=B01K1JTCNU&amp;ServiceVersion=20070822&amp;ID=AsinImage&amp;WS=1&amp;Format=_SL250_&amp;tag=active80c-20\" border=\"0\" /></a>\r\n<img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B01K1JTCNU\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<p style=\"text-align: center;\"><strong>Uninterruptible Power Supply (UPS)</strong> – Not required but recommended. It can be any UPS unit like APC® Back-UPS Pro 10-Outlet Tower Uninterruptible Power Supply, 1,500VA/900 Watts, BN1500M2</p>\r\n</li>\r\n</ul>\r\n<a href=\"http://www.amazon.com/gp/product/B06VY6FXMM/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B06VY6FXMM&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=6b02563d5a8f55ff8454830ea8c1fae1\" target=\"_blank\" rel=\"noopener noreferrer\">APC UPS Battery Backup &amp; Surge Protector with AVR, 1500VA, APC Back-UPS Pro (BX1500M)</a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B06VY6FXMM\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter\" src=\"//ws-na.amazon-adsystem.com/widgets/q?_encoding=UTF8&amp;MarketPlace=US&amp;ASIN=B06VY6FXMM&amp;ServiceVersion=20070822&amp;ID=AsinImage&amp;WS=1&amp;Format=_SL250_&amp;tag=active80c-20\" border=\"0\" /><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B06VY6FXMM\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n<p style=\"text-align: center;\"><strong>Credit card Reader(s) - The credit card readers are supplied by your credit card gateway. If you plan on using more than one iPad in the tasting room, please make sure you have a spare for each iPad. Offsite sales with an extra iPad with the POS, additional credit card readers should be considered.</strong></p>\r\n<a href=\"http://www.amazon.com/tryAB?ref_=assoc_tag_ph_1524210604088&amp;_encoding=UTF8&amp;camp=1789&amp;creative=9325&amp;linkCode=pf4&amp;tag=active80c-20&amp;linkId=2cbc536d3e31e8ffe2ecff211c89fdac\" target=\"_blank\" rel=\"noopener noreferrer\"> Create Amazon Business Account</a><img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=pf4&amp;o=1\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n\r\n\r\n[icon_list size=\"small\" type=\"circle square\" icon=\"angle-right\" icon_color=\"#ffffff\" background_color=\"#3a92aa\"]\r\n\r\n[gap height=\"25\" /]\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li><strong><a title=\"iPad Winery POS\" href=\"/winery-pos-features/ipad-winery-pos/\">Advanced Tasting Room iPad POS</a></strong></li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<img style=\"border: none !important; margin: 0px !important;\" src=\"//ir-na.amazon-adsystem.com/e/ir?t=active80c-20&amp;l=am2&amp;o=1&amp;a=B01HRJRXZQ\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n[/fullbox]','Hardware Retired','','publish','closed','closed','','hardwareretired','','','2019-07-05 12:54:03','2019-07-05 19:54:03','',0,'https://activeclubsolutions.net/?page_id=3676',0,'page','',0),
(3679,2,'2019-04-24 13:37:31','2019-04-24 20:37:31','When selecting a DTC sales software provider, are you looking at the whole picture? Most systems offer you a POS, Club Automation, Website Marketing and Sales Tools. But, do they accurately deplete inventory across multiple locations?\r\n\r\n<strong>Active’s</strong> inventory management software offers what most systems are missing. With Active inventory is tracked several ways such as:\r\n\r\n1.	On Hand\r\n2.	Allocated (the missing link)\r\n3.	Available to sell\r\n\r\n<strong>Active</strong> also relieves inventory from the selling location and tracks movement of inventory between locations. Bonded warehouse locations can be packed in cases and when you receive the inventory in a tax paid location, <strong>Active</strong> automatically “unpacks” the case lots into bottle counts.\r\n\r\nWant to see this in action? Contact our National Sales Manager – Thomas Crouch for a demo.\r\n\r\nThomas@activeclubsolutions.net or call 1-877-441-2582 x.52!\r\n','Are You Looking at the Whole Picture?','','pending','closed','open','','are-you-looking-at-the-whole-picture','','','2022-08-14 20:29:09','2022-08-15 03:29:09','',0,'https://activeclubsolutions.net/?p=3679',0,'post','',0),
(3680,2,'2019-05-01 13:50:53','2019-05-01 20:50:53','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2019/05/SNAyliffe-2-237-x-316.jpg\"><img class=\"alignnone size-medium wp-image-3681\" src=\"https://activeclubsolutions.net/wp-content/uploads/2019/05/SNAyliffe-2-237-x-316-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" /></a>\r\n\r\n<strong>Activ8 Commerce, Inc. Hires New Support Engineer</strong>\r\n\r\nPleasanton, CA – <strong>Activ8 Commerce, Inc.</strong> is a leading provider of DTC solutions (Mobile Winery POS, Club, Web Design, eCommerce) since 2003, and is pleased to welcome Scott N. Ayliffe to the team, as Support Engineer.\r\n\r\nJoining the Active team, Ayliffe will be an important part of the support team providing technical support to customers of the Active integrated all-in-one software solution. Scott has extensive operational experience in the front and back of house utilizing mission critical software to achieve operational goals and understands the daily concerns of staff and management.\r\n\r\n“Having used several software packages in the past, I believe Active’s integrated solution gives a DTC business great control and data integrity for POS, Club, and Inventory as well as tight integration with the Active’s cart in the web store. Unlike other systems where it can be challenging to produce useful views or reports, Active takes a more common-sense approach by actually providing great access to what is really “your data” in providing multi-view and reporting options.” says Ayliffe.\r\n\r\nScott joins Active bringing more than two decades of technical and managerial accomplishments within I.T. organizations in various industries including oil/gas, telecom/internet, and consulting. He lives in the Texas Hill Country west of Austin and has worked in the wine industry for 6 years as a Tasting Associate, Tasting Room and Wine Club Manager, as well as Operations Manager. While most of the fruit in Texas is grown in the north west of the state in the Texas High Plains AVA, Scott lives on the 33 mile stretch of US-290 between Fredericksburg and Johnson City known as “Wine Road 290” due to the concentration of 50-plus wineries and tasting rooms on this section of road that are within a 1 to 1 ½ hour drive of Austin and San Antonio.\r\n\r\nGraduating with a BA degree from Southern Methodist University in Dallas and a MSCIS degree from Univ. of Phoenix, Ayliffe continues to develop his knowledge of wine making and viticulture and is currently studying for his CSW certification. Scott regularly visits tasting rooms to sample the “hot weather” varieties that have established, and, continue to maintain, their excellent reputation in the Texas terroir.\r\n\r\n“Active is not just a great software solution, it’s a great company. When I was responsible for the business operations of a winery/tasting room my experience with Active’s technical support team was excellent. I am proud to join Active because of Active’s commitment to superior customer service,” stated Ayliffe.\r\n\r\n“Scott Ayliffe’s depth of IT experience, wealth of knowledge, and, as a former Active end user, gives Scott a unique level of expertise in problem solving; Scott will give Active clients support with focus and comprehensive attention to detail within the current team structure,” stated Arne Haugland, President and CTO of Activ8 Commerce.\r\n\r\n<strong>About Activ8 Commerce:</strong>\r\nActiv8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, club, web design, eCommerce software). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce’ commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.\r\n\r\nFor more information, visit activeclubsolutions.net.\r\nContact: Dan Nechemias\r\nDan Nechemias, Vice President of Sales and Marketing\r\nDan@activeclubsolutions.net\r\n(925) 248-4190 (ext. 56) or (877) 441-CLUB (ext. 56)','Activ8 Commerce, Inc. Introduces New Support Engineer to Team','','private','closed','open','','active-club-solutions-inc-introduces-new-support-engineer-to-team','','','2022-08-14 20:29:01','2022-08-15 03:29:01','',0,'https://activeclubsolutions.net/?p=3680',0,'post','',0),
(3681,10,'2019-05-01 13:48:16','2019-05-01 20:48:16','','SNAyliffe 2 (237 x 316)','','inherit','closed','closed','','snayliffe-2-237-x-316','','','2019-05-01 13:48:16','2019-05-01 20:48:16','',3680,'https://activeclubsolutions.net/wp-content/uploads/2019/05/SNAyliffe-2-237-x-316.jpg',0,'attachment','image/jpeg',0),
(3692,2,'2019-05-24 11:30:50','2019-05-24 18:30:50','[fullbox padding_top=\"0\" padding_bottom=\"40\"]\r\n\r\n[one_half last=\"no\"]\r\n\r\n<h2>Integrated Hardware & Accessories</h2>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\nThere are so many players involved in winery \r\n\r\nDTC (direct to consumer) sales. We understand this so we have several links to compatible hardware and accessories for our All in One DTC Solution. The goal is to bring you a tasting room solution that can easily provide you with real time shipping, address validation, accounting integration and more.\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n<img class=\"alignnone wp-image-1586 size-full\" src=\"/wp-content/uploads/2014/05/partner-shipc.jpg\" alt=\"ship compliant wine website partner\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n[/fullbox]\r\n\r\n[fullbox padding_top=\"0\" padding_bottom=\"40\"]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<ul>\r\n<li>extensive Customer data features</li>\r\n<li>gift and prepaid membership features</li>\r\n</ul>\r\n[/icon_list]\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n[/fullbox]\r\n\r\n\r\n[fullbox padding_top=\"0\" padding_bottom=\"40\"]\r\n[one_half last=\"no\"]\r\n\r\n<h2>Integrated Hardware & Accessories</h2>\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n[splitter type=\"textured\" color=\"\" top=\"0\" bottom=\"0\" /]\r\n\r\nThere are so many players involved in winery \r\n\r\nDTC (direct to consumer) sales. We understand this so we have several links to compatible hardware and accessories for our All in One DTC Solution. The goal is to bring you a tasting room solution that can easily provide you with real time shipping, address validation, accounting integration and more.\r\n\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n\r\n[/one_half]\r\n\r\n[one_half last=\"yes\"]\r\n\r\n<img class=\"alignnone wp-image-1586 size-full\" src=\"http://www.secureclub.net/images/activeclubmgmt/cartoon golfer (270 x 340).jpg\" alt=\"ship compliant wine website partner\" width=\"232\" height=\"150\" />\r\n\r\n[/one_half]\r\n\r\n[/fullbox]','Hardware 2 Retired','','publish','closed','closed','','hardware-2-retiredpage','','','2019-07-05 12:53:10','2019-07-05 19:53:10','',0,'https://activeclubsolutions.net/?page_id=3692',0,'page','',0),
(3725,2,'2019-06-24 22:05:21','2019-06-25 05:05:21','','pricechart_2','','inherit','closed','closed','','pricechart_2','','','2019-06-24 22:05:21','2019-06-25 05:05:21','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/06/pricechart_2.png',0,'attachment','image/png',0),
(3732,2,'2019-06-30 21:15:48','2019-07-01 04:15:48','','pricechart_3','','inherit','closed','closed','','pricechart_3','','','2019-06-30 21:15:48','2019-07-01 04:15:48','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/06/pricechart_3.png',0,'attachment','image/png',0),
(3736,2,'2019-07-01 22:20:45','2019-07-02 05:20:45','<div style=\"margin-top: -100px;\"/>\r\n\r\n\r\n[ACSScript server=TEST dbname=demodb_3]\r\n[ACSiFrame2 server=TEST dbname=demodb_3 scenario=5 usesession=yes fcridcart=FC0000028 fcridclub=FC0000028 bottommargin=20 waitcursor=ring.gif scrollpoint=1 cursortopmargin=0]','Example Online Store - Urban','','publish','closed','closed','','online-example-store-urban','','','2022-04-03 15:21:03','2022-04-03 22:21:03','',1497,'https://activeclubsolutions.net/?page_id=3736',0,'page','',0),
(3739,2,'2019-07-02 20:35:10','2019-07-03 03:35:10','','DesignUrban','','inherit','closed','closed','','designurban','','','2019-07-02 20:35:10','2019-07-03 03:35:10','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/07/DesignUrban.png',0,'attachment','image/png',0),
(3742,2,'2019-07-04 17:27:36','2019-07-05 00:27:36','','DesignLivermore2','','inherit','closed','closed','','designlivermore2','','','2019-07-04 17:27:36','2019-07-05 00:27:36','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/07/DesignLivermore2.png',0,'attachment','image/png',0),
(3746,2,'2019-07-04 17:37:18','2019-07-05 00:37:18','','DesignUrban3','','inherit','closed','closed','','designurban3','','','2019-07-04 17:37:18','2019-07-05 00:37:18','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/07/DesignUrban3.png',0,'attachment','image/png',0),
(3748,2,'2019-07-04 19:50:26','2019-07-05 02:50:26','<div style=\"margin-top: -100px;\"/>\r\n\r\n\r\n[ACSScript server=TEST dbname=demodb_6]\r\n[ACSiFrame2 server=TEST dbname=demodb_6 scenario=5 fcridcart=FC0000002 fcridclub=FC0000001 bottommargin=20 menu=yes waitcursor=ring.gif scrollpoint=1 cursortopmargin=0]','Example Online Store - Columbia','','publish','closed','closed','','online-example-store-columbia','','','2022-05-03 11:34:56','2022-05-03 18:34:56','',1497,'https://activeclubsolutions.net/?page_id=3748',0,'page','',0),
(3750,2,'2019-07-04 19:59:34','2019-07-05 02:59:34','','DesignColumbia','','inherit','closed','closed','','designcolumbia','','','2019-07-04 19:59:34','2019-07-05 02:59:34','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/07/DesignColumbia.png',0,'attachment','image/png',0),
(3753,2,'2019-07-04 20:20:03','2019-07-05 03:20:03','','DesignUrban6','','inherit','closed','closed','','designurban6','','','2019-07-04 20:20:03','2019-07-05 03:20:03','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/07/DesignUrban6.png',0,'attachment','image/png',0),
(3756,2,'2019-07-04 22:31:50','2019-07-05 05:31:50','<div style=\"margin-top: -100px;\"/>\r\n\r\n\r\n[ACSScript server=TEST dbname=demodb_3]\r\n[ACSiFrame2 server=TEST dbname=demodb_3 scenario=5 usesession=yes fcridcart=FC0000030 fcridclub=FC0000030 bottommargin=20 waitcursor=ring.gif scrollpoint=1 cursortopmargin=0]','Example Online Store - Finger Lakes','','publish','closed','closed','','online-example-store-finger-lakes','','','2022-04-03 15:00:11','2022-04-03 22:00:11','',1497,'https://activeclubsolutions.net/?page_id=3756',0,'page','',0),
(3758,2,'2019-07-04 22:45:38','2019-07-05 05:45:38','','DesignFingerLakes','','inherit','closed','closed','','designfingerlakes','','','2019-07-04 22:45:38','2019-07-05 05:45:38','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/07/DesignFingerLakes.png',0,'attachment','image/png',0),
(3762,2,'2019-07-06 19:35:28','2019-07-07 02:35:28','<div style=\"margin-left:10%;\">\r\n[icon_list size=\"medium\" type=\"circle square\" icon=\"chevron-right\" icon_color=\"#3a92aa\" background_color=\"\"]\r\n<h2 id=\"templates\"><strong>EXPLORE OUR DESIGN TEMPLATES</strong></h2>\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n<ul>\r\n<li>Below are various Active design templates showing what your online store might look like and how it would function.</li>\r\n<li>The examples shown here are running in WordPress which provides our web design team full flexibility and a universe of themes and plugins.</li>\r\n<li>Environments like Facebook, SquareSpace, and WIX, to varying degrees, have many limitations to what can be accomplished.</li>\r\n<li>Active specializes in customizing the design templates to suit your particular needs.</li>\r\n<li>Active specializes in a service to move existing Coldfusion, SquareSpace, and WIX web sites to WordPress… at an affordable price – without a redesign – a transfer.</li>\r\n</ul>\r\n[/icon_list]\r\n\r\n[splitter type=\"solid double dotted dashed-thick dashed-thin textured\" color=\"\" top=\"25\" bottom=\"25\" /]\r\n\r\n<h2><strong>Try all these designs on a phone, tablet in both orientations, and desktop</strong></h2>\r\n[gap height=\"10\" /]\r\n\r\n<table style=\"width: auto; height: auto;\">\r\n    <tbody>\r\n        <tr style=\"margin-bottom: 50px;\">\r\n            <td style=\"width: 400px;\">\r\n               <h3>Calistoga</h3>\r\n               <a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-7\"><img width=\"400px\" src=\"/wp-content/uploads/2018/07/DesignCalistoga.png\" /></a>\r\n            </td>\r\n            <td style=\"width: 400px;\">\r\n               <h3>Columbia</h3>\r\n               <a href=\"/winery-pos-features/winery-ecommerce/online-example-store-columbia\"><img width=\"400px\" src=\"/wp-content/uploads/2019/07/DesignColumbia.png\" /></a>\r\n            </td>\r\n            <td style=\"width: 400px;\">\r\n               <h3>Dundee</h3>\r\n               <a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-5\"><img width=\"400px\" src=\"/wp-content/uploads/2018/07/DesignDundee.png\" /></a>\r\n            </td>\r\n            <td style=\"width: 400px;\">\r\n               <h3>Elk Grove</h3>\r\n               <a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-2\"><img width=\"400px\" src=\"/wp-content/uploads/2018/07/DesignElkgrove.png\" /></a>\r\n            </td>\r\n        </tr>\r\n        <tr style=\"margin-bottom: 50px;\">\r\n            <td style=\"width: 400px;\">\r\n               <h3>Finger Lakes</h3>\r\n               <a href=\"/winery-pos-features/winery-ecommerce/online-example-store-finger-lakes\"><img width=\"400px\" src=\"/wp-content/uploads/2019/07/DesignFingerLakes.png\" /></a>\r\n            </td>\r\n            <td style=\"width: 400px;\">\r\n               <h3>Livermore</h3>\r\n               <a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-1\"><img width=\"400px\" src=\"/wp-content/uploads/2019/07/DesignLivermore2.png\" /></a>\r\n            </td>\r\n            <td style=\"width: 400px;\">\r\n               <h3>Napa</h3>\r\n               <a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-6\"><img width=\"400px\" src=\"/wp-content/uploads/2018/07/DesignNapa.png\" /></a>\r\n            </td>\r\n            <td style=\"width: 400px;\">\r\n               <h3>Paso Robles</h3>\r\n               <a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-8\"><img width=\"400px\" src=\"/wp-content/uploads/2018/07/DesignPasoRobles.png\" /></a>\r\n            </td>\r\n        </tr>\r\n        <tr style=\"margin-bottom: 50px;\">\r\n            <td style=\"width: 400px;\">\r\n               <h3>Sonoma</h3>\r\n               <a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-9\"><img width=\"400px\" src=\"/wp-content/uploads/2018/07/DesignSonoma.png\" /></a>\r\n            </td>\r\n            <td style=\"width: 400px;\">\r\n               <h3>Urban Mist</h3>\r\n               <a href=\"/winery-pos-features/winery-ecommerce/online-example-store-urban\"><img width=\"400px\" style=\"margin-left:20px\" src=\"/wp-content/uploads/2019/07/DesignUrban6.png\"/></a>\r\n            </td>\r\n            <td style=\"width: 400px;\">\r\n               <h3>Walla Walla</h3>\r\n               <a href=\"/winery-pos-features/winery-ecommerce/shopping-cart-4\"><img width=\"400px\" src=\"/wp-content/uploads/2018/07/DesignWallaWalla.png\" /></a>\r\n            </td>\r\n        <tr>\r\n    </tbody>\r\n</table>\r\n</div>\r\n<div style=\"margin-bottom:10%;\">\r\n</div>\r\n','Design Templates','','publish','closed','closed','','design-templates','','','2019-07-06 20:48:59','2019-07-07 03:48:59','',0,'https://activeclubsolutions.net/?page_id=3762',0,'page','',0),
(3772,2,'2019-09-02 13:29:03','2019-09-02 20:29:03','','Activ8ColorHoriz-250x250','','inherit','closed','closed','','activ8colorhoriz-250x250','','','2019-09-02 13:29:03','2019-09-02 20:29:03','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/09/Activ8ColorHoriz-250x250.png',0,'attachment','image/png',0),
(3773,2,'2019-09-02 13:29:23','2019-09-02 20:29:23','','Activ8ColorHoriz-300x300','','inherit','closed','closed','','activ8colorhoriz-300x300','','','2019-09-02 13:29:23','2019-09-02 20:29:23','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/09/Activ8ColorHoriz-300x300.png',0,'attachment','image/png',0),
(3774,2,'2019-09-02 13:29:32','2019-09-02 20:29:32','','Activ8ColorHoriz-350x350','','inherit','closed','closed','','activ8colorhoriz-350x350','','','2019-09-02 13:29:32','2019-09-02 20:29:32','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/09/Activ8ColorHoriz-350x350.png',0,'attachment','image/png',0),
(3775,2,'2019-09-02 13:58:27','2019-09-02 20:58:27','','Activ8ColorStacked-150','','inherit','closed','closed','','activ8colorstacked-150','','','2019-09-02 13:58:27','2019-09-02 20:58:27','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/09/Activ8ColorStacked-150.png',0,'attachment','image/png',0),
(3776,2,'2019-09-02 13:59:48','2019-09-02 20:59:48','','Activ8ColorStacked-300','','inherit','closed','closed','','activ8colorstacked-300','','','2019-09-02 13:59:48','2019-09-02 20:59:48','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/09/Activ8ColorStacked-300.png',0,'attachment','image/png',0),
(3779,2,'2019-09-02 14:55:39','2019-09-02 21:55:39','','Activ8ColorStacked150Transp','','inherit','closed','closed','','activ8colorstacked150transp','','','2019-09-02 14:55:39','2019-09-02 21:55:39','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/09/Activ8ColorStacked150Transp.png',0,'attachment','image/png',0),
(3780,2,'2019-09-02 14:58:33','2019-09-02 21:58:33','','favicon','','inherit','closed','closed','','favicon-2','','','2019-09-02 14:58:33','2019-09-02 21:58:33','',0,'https://activeclubsolutions.net/wp-content/uploads/2019/09/favicon.ico',0,'attachment','image/x-icon',0),
(3788,2,'2019-09-11 13:48:58','2019-09-11 20:48:58','','Users Guide','','publish','closed','closed','','users-guide-3','','','2020-09-18 11:18:19','2020-09-18 18:18:19','',0,'https://activeclubsolutions.net/?p=3788',31,'nav_menu_item','',0),
(3790,2,'2019-11-08 17:28:57','2019-11-09 01:28:57','','Default','','publish','closed','closed','','default','','','2019-11-08 17:28:58','2019-11-09 01:28:58','',0,'https://activeclubsolutions.net/feed-templates/default/',0,'wprss_feed_template','',0),
(3791,0,'2019-05-01 20:50:53','2019-05-01 20:50:53','<p><a href=\"https://i0.wp.com/activeclubsolutions.net/wp-content/uploads/2019/05/SNAyliffe-2-237-x-316.jpg?ssl=1\"><img src=\"https://i0.wp.com/activeclubsolutions.net/wp-content/uploads/2019/05/SNAyliffe-2-237-x-316.jpg?resize=225%2C300&amp;ssl=1\" alt=\"\" width=\"225\" height=\"300\" data-recalc-dims=\"1\"></a></p>\n<p><strong>Activ8 Commerce, Inc. Hires New Support Engineer</strong></p>\n<p>Pleasanton, CA &ndash; <strong>Activ8 Commerce, Inc.</strong> is a leading provider of DTC solutions (Mobile Winery POS, Club, Web Design, eCommerce) since 2003, and is pleased to welcome Scott N. Ayliffe to the team, as Support Engineer.</p>\n<p>Joining the Active team, Ayliffe will be an important part of the support team providing technical support to customers of the Active integrated all-in-one software solution. Scott has extensive operational experience in the front and back of house utilizing mission critical software to achieve operational goals and understands the daily concerns of staff and management.</p>\n<p>&ldquo;Having used several software packages in the past, I believe Active&rsquo;s integrated solution gives a DTC business great control and data integrity for POS, Club, and Inventory as well as tight integration with the Active&rsquo;s cart in the web store. Unlike other systems where it can be challenging to produce useful views or reports, Active takes a more common-sense approach by actually providing great access to what is really &ldquo;your data&rdquo; in providing multi-view and reporting options.&rdquo; says Ayliffe.</p>\n<p>Scott joins Active bringing more than two decades of technical and managerial accomplishments within I.T. organizations in various industries including oil/gas, telecom/internet, and consulting. He lives in the Texas Hill Country west of Austin and has worked in the wine industry for 6 years as a Tasting Associate, Tasting Room and Wine Club Manager, as well as Operations Manager. While most of the fruit in Texas is grown in the north west of the state in the Texas High Plains AVA, Scott lives on the 33 mile stretch of US-290 between Fredericksburg and Johnson City known as &ldquo;Wine Road 290&rdquo; due to the concentration of 50-plus wineries and tasting rooms on this section of road that are within a 1 to 1 &frac12; hour drive of Austin and San Antonio.</p>\n<p>Graduating with a BA degree from Southern Methodist University in Dallas and a MSCIS degree from Univ. of Phoenix, Ayliffe continues to develop his knowledge of wine making and viticulture and is currently studying for his CSW certification. Scott regularly visits tasting rooms to sample the &ldquo;hot weather&rdquo; varieties that have established, and, continue to maintain, their excellent reputation in the Texas terroir.</p>\n<p>&ldquo;Active is not just a great software solution, it&rsquo;s a great company. When I was responsible for the business operations of a winery/tasting room my experience with Active&rsquo;s technical support team was excellent. I am proud to join Active because of Active&rsquo;s commitment to superior customer service,&rdquo; stated Ayliffe.</p>\n<p>&ldquo;Scott Ayliffe&rsquo;s depth of IT experience, wealth of knowledge, and, as a former Active end user, gives Scott a unique level of expertise in problem solving; Scott will give Active clients support with focus and comprehensive attention to detail within the current team structure,&rdquo; stated Arne Haugland, President and CTO of Activ8 Commerce.</p>\n<p><strong>About Activ8 Commerce:</strong><br>\nActiv8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, club, web design, eCommerce software). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce&rsquo; commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.</p>\n<p>For more information, visit activeclubsolutions.net.<br>\nContact: Dan Nechemias<br>\nDan Nechemias, Vice President of Sales and Marketing<br>\nDan@activeclubsolutions.net<br>\n(925) 248-4190 (ext. 56) or (877) 441-CLUB (ext. 56)</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/active-club-solutions-inc-introduces-new-support-engineer-to-team/\">Activ8 Commerce, Inc. Introduces New Support Engineer to Team</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Commerce, Inc. Introduces New Support Engineer to Team','Activ8 Commerce, Inc. Hires New Support Engineer Pleasanton, CA – Activ8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, Club, Web Design, eCommerce) since 2003, and is pleased to welcome Scott N. Ayliffe to the team, as Support Engineer. Joining the Active team, Ayliffe will be an important part of the […]\nThe post Activ8 Commerce, Inc. Introduces New Support Engineer to Team appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-commerce-inc-introduces-new-support-engineer-to-team','','','2019-05-01 20:50:53','2019-05-01 20:50:53','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3791',0,'wprss_feed_item','',0),
(3792,0,'2019-04-24 20:37:31','2019-04-24 20:37:31','<p>When selecting a DTC sales software provider, are you looking at the whole picture? Most systems offer you a POS, Club Automation, Website Marketing and Sales Tools. But, do they accurately deplete inventory across multiple locations?</p>\n<p><strong>Active&rsquo;s</strong> inventory management software offers what most systems are missing. With Active inventory is tracked several ways such as:</p>\n<p>1.	On Hand<br>\n2.	Allocated (the missing link)<br>\n3.	Available to sell</p>\n<p><strong>Active</strong> also relieves inventory from the selling location and tracks movement of inventory between locations. Bonded warehouse locations can be packed in cases and when you receive the inventory in a tax paid location, <strong>Active</strong> automatically &ldquo;unpacks&rdquo; the case lots into bottle counts.</p>\n<p>Want to see this in action? Contact our National Sales Manager &ndash; Thomas Crouch for a demo.</p>\n<p>Thomas@activeclubsolutions.net or call 1-877-441-2582 x.52!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/are-you-looking-at-the-whole-picture/\">Are You Looking at the Whole Picture?</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Are You Looking at the Whole Picture?','When selecting a DTC sales software provider, are you looking at the whole picture? Most systems offer you a POS, Club Automation, Website Marketing and Sales Tools. But, do they accurately deplete inventory across multiple locations? Active’s inventory management software offers what most systems are missing. With Active inventory is tracked several ways such as: […]\nThe post Are You Looking at the Whole Picture? appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','are-you-looking-at-the-whole-picture','','','2019-04-24 20:37:31','2019-04-24 20:37:31','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3792',0,'wprss_feed_item','',0),
(3793,0,'2019-04-17 21:57:53','2019-04-17 21:57:53','<p><a href=\"https://i1.wp.com/activeclubsolutions.net/wp-content/uploads/2019/04/digi-know-website-design-email-campaign-2-002-600-x-345.jpg?ssl=1\"><img src=\"https://i1.wp.com/activeclubsolutions.net/wp-content/uploads/2019/04/digi-know-website-design-email-campaign-2-002-600-x-345.jpg?resize=300%2C173&amp;ssl=1\" alt=\"\" width=\"300\" height=\"173\" data-recalc-dims=\"1\"></a></p>\n<p>How often should you redesign or refresh your website? Many experts will tell you to update your site every two or three years. Actually you may need to refresh or redesign your website more often. In fact over 94% of all website visitors have made up their mind about your site in the first two seconds. It&rsquo;s true! If you can get them past the first 2 seconds, you have 10 seconds to leave an impression. Active understands how to design sites that leave a good first impression! </p>\n<p>How often you update your website also depends on how well your site performs across a variety of metrics. Molly Gregg at Active has noted a few situations that require an update or redesign including:</p>\n<p>&bull;too few leads<br>\n&bull;traffic but no conversions<br>\n&bull;not a glance friendly site<br>\n&bull;outdated design<br>\n&bull;not mobile friendly</p>\n<p>A graduate of San Francisco State University Gregg received her Master&rsquo;s in Instructional Technologies with an emphasis on user interaction. This program mainly focuses on instructional skills such as web design, graphics animation and video. Molly strengthens Active by adding stellar &ldquo;web design&rdquo; to Activ8&rsquo;s menu of services! Give Molly a call or send her an email directly to find out how Molly can help your website make a good  first impression! </p>\n<p>Check out some winery sites below that Molly has already refreshed! </p>\n<p>LIONSPEAKWINE.COM<br>\nMCGRAILVINEYARDS.COM<br>\nNOTTINGHAMCELLARS.COM</p>\n<p>CONTACT MOLLY@ACTIVECLUBSOLUTIONS.COM FOR MORE INFORMATION OR CALL 925-230-1347!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/did-you-know-your-website-has-2-seconds-to-impress/\">Did You Know Your Website Has 2 Seconds to Impress?</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Did You Know Your Website Has 2 Seconds to Impress?','How often should you redesign or refresh your website? Many experts will tell you to update your site every two or three years. Actually you may need to refresh or redesign your website more often. In fact over 94% of all website visitors have made up their mind about your site in the first two […]\nThe post Did You Know Your Website Has 2 Seconds to Impress? appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','did-you-know-your-website-has-2-seconds-to-impress','','','2019-04-17 21:57:53','2019-04-17 21:57:53','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3793',0,'wprss_feed_item','',0),
(3794,0,'2019-04-10 21:44:00','2019-04-10 21:44:00','<p>For smoother tasting room service and operations functionality partial and split payments on Active&rsquo;s POS are easy as pie! While some DTC focused software companies are only adding that feature now, Active has had this feature in place since Active began in 2003.  Active&rsquo;s simple way to pay a tab in a tasting room allows groups to share the bill without having to create a separate invoice for each party included in the tab.</p>\n<p>Splitting a case purchase between customers has never been easier. Whether tasting fees, merchandise or any other items are purchased in a tasting room, Active&rsquo;s POS sales system allows the winery or distillery to satisfy the guest&rsquo;s wishes on how to split the payment on the final tab any which way with ease. </p>\n<p>When purchasing, any amounts to be shared with any payment configuration is simple, fast and secure in Active&rsquo;s POS system. For example, the tab could be split two ways with two different credit cards, or, paid with one customer paying with a credit card and the other customer paying with cash or a check. The tab could be split a set amount per person in a larger group. The customer could also say &ldquo;please put the entire tab on my account&rdquo; or &ldquo;use my card on file.&rdquo; Active gives you and your tasting room customers more choice in paying the bill and closing the tab in various ways; whether partial or split payments are made to close the bill. </p>\n<p>Most wineries or distilleries usually need many software platforms to do everything Active can do from one, single, secure database.<br>\nFor more specifics now on Active and how Active&rsquo;s All-In-One POS software sales system; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.</p>\n<p>About Activ8 Commerce:</p>\n<p>Activ8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce&rsquo; commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.</p>\n<p>For more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/easy-pos-partial-and-split-payments-with-active/\">Easy POS Partial and Split Payments with Active</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Easy POS Partial and Split Payments with Active','For smoother tasting room service and operations functionality partial and split payments on Active’s POS are easy as pie! While some DTC focused software companies are only adding that feature now, Active has had this feature in place since Active began in 2003. Active’s simple way to pay a tab in a tasting room allows […]\nThe post Easy POS Partial and Split Payments with Active appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','easy-pos-partial-and-split-payments-with-active','','','2019-04-10 21:44:00','2019-04-10 21:44:00','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3794',0,'wprss_feed_item','',0),
(3795,0,'2019-03-21 00:29:05','2019-03-21 00:29:05','<p>Email is the number one way to sell more online. Yes, there are many email service providers that can help you do that for a price of course. Even though those email service providers help your winery or distillery get more business, they lack one very important aspect. They don&rsquo;t give you data on your email campaigns except for the nominal tally of the count of each category in outbound, sent, failed, complaints, opens, clicks, unsubscribes and inbound.</p>\n<p><a href=\"https://i1.wp.com/activeclubsolutions.net/wp-content/uploads/2019/03/emailstatistics.png?ssl=1\"><img src=\"https://i1.wp.com/activeclubsolutions.net/wp-content/uploads/2019/03/emailstatistics.png?resize=300%2C118&amp;ssl=1\" alt=\"\" width=\"300\" height=\"118\" data-recalc-dims=\"1\"></a></p>\n<p>Recently in conducting an email campaign analysis internally with Active, the CTO verified Active&rsquo;s unique database system can track every link, click, and page the user clicks into the body of the email; even noting the actual device that is being used by the email recipient (iPhone, mac, pc, iPad, outlook). </p>\n<p>With Active you can successfully execute email campaigns directly from your CRM without those email service provider integrations. Using Active for email marketing campaigns seemingly gives you the impression you have your finger on the pulse of your customers, your data, and your business all with Active&rsquo;s mobile app system. </p>\n<p>You don&rsquo;t need to outsource APIs to Mail Chimp, Vertical Response, Constant Contact or any other email service provider any longer. Essentially you can save some money since you no longer need to outsource that marketing task; and you get real time data in seconds.</p>\n<p>Active also automatically unsubscribes those who want to opt out. With any of the email service providers they do sequester those that wish to opt-out. Yet your business still must manually pay staff (labor costs) to officially update that &ldquo;opt-out&rdquo; action in the customer&rsquo;s profile within your CRM. In Active the customer clicks &ldquo;opt-out&rdquo; and is taken to the formal unsubscribe screen where the customer finishes the task. </p>\n<p>Imagine having a sales system that allows you the ability to segment your lists (email, club, pos, events, telesales), sort through a data bank of 18,000 data fields versus only 65 data points in most, gives you dashboards to monitor your progress, and much more. This aspect of Active allows you to react quickly and send another email to those that didn&rsquo;t &ldquo;open&rdquo; just with a quick sort of your data. You can also send a direct segmented offer to those that clicked on the link to your website while viewing a specific wine or spirit from the email. It is just that easy with Active.</p>\n<p>For more specifics now on Active and how Active&rsquo;s All-In-One POS software sales system; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/email-marketing-made-eaasy/\">Email Marketing Made Easy</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Email Marketing Made Easy','Email is the number one way to sell more online. Yes, there are many email service providers that can help you do that for a price of course. Even though those email service providers help your winery or distillery get more business, they lack one very important aspect. They don’t give you data on your […]\nThe post Email Marketing Made Easy appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','email-marketing-made-easy','','','2019-03-21 00:29:05','2019-03-21 00:29:05','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3795',0,'wprss_feed_item','',0),
(3796,0,'2019-03-06 16:58:50','2019-03-06 16:58:50','<p>Do you know where your DTC growth comes from? There are five main areas to consider. Those channels include tasting room, club(s), web/eCommerce, telesales, and events.  Are you really looking at the numbers, setting goals, developing strategies to meet those goals and have determined key performance indicators for your winery or distillery? If you have answered no or not really, then perhaps reading further will help you better assess how best to set-up your craft beverage business for success. </p>\n<p>For those wineries and distilleries that have a tasting room, many would agree that most of the winery DTC revenues are generated from the tasting room. Club sign-ups are usually initiated in the tasting room and at events held on or off-site. Events at the winery also generate revenues but again the initial point of contact is the tasting room. In general, the tasting room is the main channel for DTC revenue dollars. According to the WBM &ldquo;two-thirds of DTC sales flow through the tasting rooms.&rdquo; </p>\n<p>Once staff have signed up visitors in the tasting room to join the club, the club channel is the next main producer of DTC revenues. Club billings can give the craft business a boost during a time of year that is slower than high season and offers a new release sampling to folks that are already fans of your brand. Often the club billing, whether monthly, quarterly, etc. can supersede the tasting room revenues in that same period. For smaller craft beverage businesses club is often the leader in revenues some months during the fiscal year. </p>\n<p>While telesales data was not really discussed much in articles reviewed for writing this piece, the old technology is new again and very much a part of new DTC business these days. Some wineries outsource tele-sales. Whether you conduct telesales campaigns in-house or outsource them, there are some wineries that report telesales have become the largest driver of new DTC business, (C. Penn, WBM, May 2011).</p>\n<p>Online, web or eCommerce as its known while important is not the main driver of new DTC revenues. There is a limited number of people who will seek out a wine online and buy without any winery visit. Usually eCommerce sales are driven by wineries who send offers to customers already familiar with the winery or distillery and have tasted the product. In an article from Wine-Searcher News &amp; Features, an Oregon winery executive said she noted online sales at 3% while tasting room sales were 20% in the same period. In the same article Judd Wallenbrock, President and CEO of C. Mondavi &amp; Family, explains that currently online cart sales account for just 5% of the total DTC revenues, the majority coming from wine club and tasting room sales. Nevertheless, Wallenbrock and others all agree that the online channel will become more important in the future; and is already important to micro craft beverage businesses with limited distribution. </p>\n<p>Knowing where your DTC growth comes from can help you plan to maximize your ROI. Look at your revenue numbers in each channel to see where you are currently. Then you can set reachable goals, note your key performance indicators, create dashboards to measure and display results. This helps you evaluate how well your goals are being met based on the KPI&rsquo;s. From this point you can change strategies and processes as needed to improve performance. Always assess the KPI&rsquo;s to see if they still align with goals so you can adjust them as needed. </p>\n<p>Since most of your revenues come from the tasting room, make sure you have a strong POS system that can capture customer data. Having a complete system allows automation of tasks requiring less labor. Imagine having a sales system that allows you the ability to segment your lists (email, club, pos, events, telesales), sort through a data bank of 18,000 data points versus 65 data points, gives you dashboards to monitor your progress, and much more. </p>\n<p>For more specifics now on Active and how Active&rsquo;s All-In-One POS software sales system; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.</p>\n<p>About Activ8 Commerce:</p>\n<p>Activ8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce&rsquo; commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.</p>\n<p>For more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/where-dtc-growth-comes-from/\">Where DTC Growth Comes From</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Where DTC Growth Comes From','Do you know where your DTC growth comes from? There are five main areas to consider. Those channels include tasting room, club(s), web/eCommerce, telesales, and events. Are you really looking at the numbers, setting goals, developing strategies to meet those goals and have determined key performance indicators for your winery or distillery? If you have […]\nThe post Where DTC Growth Comes From appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','where-dtc-growth-comes-from','','','2019-03-06 16:58:50','2019-03-06 16:58:50','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3796',0,'wprss_feed_item','',0),
(3797,0,'2019-02-20 18:11:10','2019-02-20 18:11:10','<p><strong>Activ8 Commerce, Inc. Promotion of Team Member Punam Sinha</strong></p>\n<p>Pleasanton, CA &ndash; Activ8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, Club, Web Design, eCommerce) since 2003, and is pleased to announce the promotion of Punam Sinha within the Active team, to Vice President of Operations. Punam Sinha has been an important part of the support technology team since the early days of Active. Sinha joined <strong>Active</strong> in 2006 with the company still developing its product offerings. Punam&rsquo;s experience within the DTC software development sector and tenure with Active have given her a unique perspective on how to resolve our client&rsquo;s challenges. </p>\n<p>Sinha has been developing technical solutions within Active for well over a decade, and, knows the system functionality intimately.  With this promotion Punam will continue to lead the technology support team to maintain clear processes internally as growth ensues. This will further cultivate Active&rsquo;s commitment to a partnership approach with winery and distillery clients, bistros, wine bars, speakeasies, and more. </p>\n<p><em>&ldquo;I joined <strong>Active</strong> when the company was in it&rsquo;s infancy. It has been an amazing journey to be part of this wonderful team of professionals. <strong>Active</strong> is the best all in one DTC solution combining Club, POS, and eCommerce all rolled into one. I look forward to the future and the many ways Active&rsquo;s software system can make Active clients lives easier,&rdquo;</em> says Sinha.</p>\n<p>Punam&rsquo;s story starts in India where she met and married her husband. As her husband was into computers and engineering it stimulated interest in her own being. Motivated, yet managing small children, she attended school finishing with several post graduate degrees (Master&rsquo;s in Organic Chemistry from GGU, Bilaspur, CG) (Applied Computer Science from CMC, Kolkata) from notable academic institutions. In 1998 Punam and her family moved from India to the United States and presently enjoys the west coast, located within the San Francisco Bay Area. Punam&rsquo;s hobbies include traveling the globe with her husband, hanging out with her two daughters, and enjoying nature walks, with or without the family dog.</p>\n<p><em>&ldquo;Punam Sinha&rsquo;s depth of experience, wealth of knowledge, and long-term engagement gives Punam a level of expertise in problem solving; and in the development of Active software, which often rivals my own as founder and Chief Technology Officer. Punam will give our team operational direction and a bit more thoughtful procedural structure with informed, comprehensive attention to detail as the company continues to grow,&rdquo;</em> stated Arne Haugland, President and CTO of Activ8 Commerce. </p>\n<p><strong>About Activ8 Commerce:</strong><br>\nActiv8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, club, web design, ecommerce software). Our mission is to provide a single and comprehensive sales platform for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales technology solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce&rsquo; commitment to developing and continually improving its sales software and service has made us a leading and well-respected provider of direct sales software with a commitment to quality and customer success.<br>\nFor more information, visit activeclubsolutions.net.</p>\n<p>Contact: Dan Nechemias<br>\nDan Nechemias, Vice President of Sales and Marketing<br>\nDan@activeclubsolutions.net<br>\n(925) 248-4190 (ext. 56) or (877) 441-CLUB (ext. 56)</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/active-promotes-punam-sinha-to-vice-president-of-operations/\">Active Promotes Punam Sinha to Vice President of Operations</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Active Promotes Punam Sinha to Vice President of Operations','Activ8 Commerce, Inc. Promotion of Team Member Punam Sinha Pleasanton, CA – Activ8 Commerce, Inc. is a leading provider of DTC solutions (Mobile Winery POS, Club, Web Design, eCommerce) since 2003, and is pleased to announce the promotion of Punam Sinha within the Active team, to Vice President of Operations. Punam Sinha has been an […]\nThe post Active Promotes Punam Sinha to Vice President of Operations appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','active-promotes-punam-sinha-to-vice-president-of-operations','','','2019-02-20 18:11:10','2019-02-20 18:11:10','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3797',0,'wprss_feed_item','',0),
(3798,0,'2019-02-05 00:41:27','2019-02-05 00:41:27','<p><img src=\"https://i1.wp.com/secureclub.net/images/activeclubmgmt/kittylearningsmall.png?w=1200\" data-recalc-dims=\"1\"></p>\n<p><span>1.  An operator can run their club using any inventory stock location (Warehouse, Tasting Room, etc). This ability is not new, but it leads into what has been improved.</span><br><br><span>2.  Having done #1, club members can now go into any location and pick up. The system will un-allocate the inventory used in #1 and allocate it from the location where they are picking up and remove it from the pickup location&rsquo;s on-hand quantity. This will happen either on the &ldquo;Sign For Pickup&rdquo; feature on the &ldquo;Order History&rdquo; screen of the POS, if it was paid through manager, or it will happen on checkout for that club order at the POS. Currently an operator was forced to do an inventory transfer back to the original location stock to balance out the inventory movement.</span><br><br><span>3.  Some of our customers have multiple Tasting Rooms but they ship all orders from a different location. If someone bought wine at the winery and they wanted it shipped the operator would need to make a manual inventory transfer since the transaction used the Tasting Room Inventory location and it was depleted at the ship from location. Now an operator can put a location override in the POS Configuration record so each tasting room can have a different ship location if needed. If there is an override ship location in the POS Configuration record then that locations inventory will be used in the transaction rather than the tasting rooms inventory. This will take place on all ship orders. If the override ship location is left blank the system will use the POS location.</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/3627-2/\">Inventory Management Improvements</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Inventory Management Improvements','1. An operator can run their club using any inventory stock location (Warehouse, Tasting Room, etc). This ability is not new, but it leads into what has been improved. 2. Having done #1, club members can now go into any location and pick up. The system will un-allocate the inventory used in #1 and allocate […]\nThe post Inventory Management Improvements appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','inventory-management-improvements','','','2019-02-05 00:41:27','2019-02-05 00:41:27','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3798',0,'wprss_feed_item','',0),
(3799,0,'2019-01-24 01:31:38','2019-01-24 01:31:38','<p>There are reasons to use 3rd party email companies like Mail Chimp, Constant Contact, Vertical Response and more. However, doesn&rsquo;t every Retail Manager, Tasting Room Manager, Wine Club Administrator secretly wish to have all the bells and whistles in one complete program and user-friendly system? </p>\n<p>As a manager, one outsources or uses those 3rd party entities because those partners clear out bounced or unsubscribes for you from your list, saving you some time. You still will have to manually unsubscribe those folks from your database though. Another compelling reason to enlist 3rd party email marketing companies is due, more than likely, to the fact that the POS platform you are using is unable to process and track that type of data which requires another technology platform or a 3rd party outsourcing. </p>\n<p>When using Mail Chimp, or any one of the choices that exist, what you cannot &ldquo;see&rdquo; in the back of the house is what did the user click on, and, where else did they visit on your website or social media links. The other disadvantage when using a 3rd party system is that none of the customer information is being captured to continue building the customer profile. </p>\n<p>When Active is on board at your winery or distillery you can actually &ldquo;see&rdquo; where the customers, who click beyond just opening, are clicking on your website, email links, and video attachments. In fact, Active can help you segment and sort your customers based on preferences, which in turn allow you a follow up &ldquo;reason&rdquo; with those customers who clicked. Next you automate a specialized message or enticement, in the format or communication method they prefer, to give them a special price or offering, that matches their interest on the places they clicked or where they searched on your site or social media links. </p>\n<p>With Active there is no need to rely on 3rd party marketing companies. Some Active clients are comfortable to the 3rd party email marketing firms so Active does integrate and partner with many for the sake of convenience to the clients. Yet, once most clients have used Active for a longer period, they realize they don&rsquo;t need to have both and move to relying on doing all their email marketing in the Active system. To view more insight on how Active can help your email campaigns succeed, and to continue to build your customer profiles, then check out the 12-minute video on Email Campaign Analysis.</p>\n<p>Certainly, Active will be at Unified Grape &amp; Wine Symposium in January of 2019 at Booth #519, but you don&rsquo;t need to wait to find out more about how Active can simplify your life. </p>\n<p>For more specifics now on Active and how Active&rsquo;s All-In-One POS software sales system; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.</p>\n<p>About Activ8 Commerce:</p>\n<p>Activ8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce&rsquo; commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.</p>\n<p>For more information, visit activeclubsolutions.net. To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/marketing-tools-email-campaign-analysis/\">Marketing Tools &ndash; Email Campaign Analysis</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Marketing Tools – Email Campaign Analysis','There are reasons to use 3rd party email companies like Mail Chimp, Constant Contact, Vertical Response and more. However, doesn’t every Retail Manager, Tasting Room Manager, Wine Club Administrator secretly wish to have all the bells and whistles in one complete program and user-friendly system? As a manager, one outsources or uses those 3rd party […]\nThe post Marketing Tools – Email Campaign Analysis appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','marketing-tools-email-campaign-analysis','','','2019-01-24 01:31:38','2019-01-24 01:31:38','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3799',0,'wprss_feed_item','',0),
(3800,0,'2019-01-09 20:39:29','2019-01-09 20:39:29','<div></div>\n<p><strong>Active</strong> has another new functionality in web tools introduced as &ldquo;Club Sign-Ups.&rdquo; Check out the video embedded in this article to and learn the secrets in 12 minutes, give or take, how and why this will work for your winery or distillery. There are several ways to think about club signups online or on a Kiosk platform. </p>\n<p>The first example is the simplest, and, occurs with no complications. If a fan is interested in your wines or spirits and they happen to be shopping on-line they just click on the menu &ldquo;club&rdquo; or &ldquo;club offerings&rdquo;. They choose from the list of club offerings your winery or distillery offers then clicks to register by submitting billing information, shipping information, payment detail and then finally finishing with a final preview screen of the club selection made. Once the transaction is complete the Kiosk is ready for the next customer.</p>\n<p>Another scenario is when a customer is a newsletter subscriber and they have already given your winery or distillery their email address. Once they have opted in and they decide to go online to join a club, the select the club choice, click submit and then are asked to register detail. But the database recognizes the email address and asks the customer to confirm if it is them, YES or NO. Since this example is a YES, the next step is to finish the registration with ship to/bill to detail and payment information. </p>\n<p>A third example is when a sign-up or new account is being set-up but the email is already being used by another account already on file. This is usually a gifting of a club membership to another party. In this instance a new user name must be used rather than an existing email address; so that the new membership can be put into the &ldquo;giftee&rsquo;s&rdquo; name. This allows a new registration of account so that the &ldquo;giftee&rdquo; can put in the name, address, email, date of birth, etc. and yet the club member can use their member card on file for payment. </p>\n<p>Lastly, in the case where a user name has already been used to sign-up and create an account, <strong>Active&rsquo;s</strong> system will flag the duplicate and not let one proceed. Until a new user name or email is used to set-up a new account for registration, the new sign-up applicant/customer cannot continue. </p>\n<p>Certainly, <strong>Active will be at Unified Grape &amp; Wine Symposium in January of 2019 at Booth #519</strong>, but you don&rsquo;t need to wait to find out more about how <strong>Active</strong> can simplify your life. </p>\n<p>For more specifics now on Active and how Active&rsquo;s All-In-One POS software sales system; and how to give your winery/distillery business a boost in efficiencies and an uptick on your bottom line (ROI), contact Thomas@activeclubsolutions.net to request a demo.</p>\n<p><strong>About Activ8 Commerce:</strong></p>\n<p>Activ8 Commerce, Inc. is a leading provider of DTC sales solutions (Mobile Winery POS, club software, ecommerce, website design). Our mission is to provide a single and comprehensive sales system for firms selling direct to the consumer. Activ8 Commerce has been providing DTC sales solutions to wineries, distilleries, and wine stores that seek to elevate sales and maximize service. Today the company has an entire suite of sales tools all in one single database. Activ8 Commerce&rsquo; commitment to developing and continually improving its sales software and service has made us a leading and well-respected partner and provider of direct sales software with a commitment to quality and customer success.</p>\n<p>For more information, visit activeclubsolutions.net. <strong>To Request a Demo email Thomas@activeclubsolutions.net or call 1-877-441-2582 x. 52.</strong></p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/secrets-of-club-sign-ups-on-kiosk/\">Secrets of Club Sign-Ups on Kiosk</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Secrets of Club Sign-Ups on Kiosk','Active has another new functionality in web tools introduced as “Club Sign-Ups.” Check out the video embedded in this article to and learn the secrets in 12 minutes, give or take, how and why this will work for your winery or distillery. There are several ways to think about club signups online or on a […]\nThe post Secrets of Club Sign-Ups on Kiosk appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','secrets-of-club-sign-ups-on-kiosk','','','2019-01-09 20:39:29','2019-01-09 20:39:29','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3800',0,'wprss_feed_item','',0),
(3802,2,'2019-12-14 22:09:27','2019-12-15 06:09:27','<div style=\"margin-top: -100px;\"/>\r\n\r\n\r\n[ACSScript server=CA dbname=demodb_3]\r\n[ACSiFrame2 server=CA dbname=demodb_3 scenario=6 usesession=yes fcridcart=FC0000033 fcridclub=FC0000034 bottommargin=20 waitcursor=ring.gif scrollpoint=1 cursortopmargin=0]','Example Wholesale Store','','publish','closed','closed','','wholesale','','','2019-12-15 22:58:17','2019-12-16 06:58:17','',1497,'https://activeclubsolutions.net/?page_id=3802',0,'page','',0),
(3805,2,'2019-12-16 23:24:41','2019-12-17 07:24:41','<div style=\"margin-top: -100px;\"/>\r\n\r\n\r\n[ACSScript server=TEST dbname=demodb_4]\r\n[ACSiFrame2 server=TEST dbname=demodb_4 scenario=6 usesession=yes fcridcart=FC0000033 fcridclub=FC0000034 bottommargin=20 waitcursor=ring.gif scrollpoint=1 cursortopmargin=0]','Example Wholesale Store','','publish','closed','closed','','demo-wholesale','','','2021-10-07 05:55:37','2021-10-07 12:55:37','',2766,'https://activeclubsolutions.net/?page_id=3805',0,'page','',0),
(3812,2,'2020-03-13 20:07:56','2020-03-14 03:07:56','<script charset=\"utf-8\" type=\"text/javascript\" src=\"//js.hsforms.net/forms/shell.js\"></script>\r\n<script>\r\n  hbspt.forms.create({\r\n              portalId: \"3351922\",\r\n              formId: \"bec8bb98-0fed-44c7-beb6-53aefab3f26b\"\r\n});\r\n</script>\r\n','Contact Submission Form','','publish','closed','closed','','contact-submission-form','','','2020-03-14 10:19:30','2020-03-14 17:19:30','',0,'https://activeclubsolutions.net/?page_id=3812',0,'page','',0),
(3817,2,'2020-05-18 14:15:05','2020-05-18 21:15:05','<h1>activeclubsolutions.net Accessibility Statement</h1>\r\nUpdated: December 2019.\r\n<h2>General</h2>\r\nactiveclubsolutions.net strives to ensure that its services are accessible to people with disabilities. activeclubsolutions.net has invested a significant amount of resources to help ensure that its website is made easier to use and more accessible for people with disabilities, with the strong belief that every person has the right to live with dignity, equality, comfort and independence.\r\n<h2>Accessibility on activeclubsolutions.net</h2>\r\nactiveclubsolutions.net makes available the <a title=\"Free Website Accessibility Widget\" href=\"https://UserWay.org\">UserWay Website Accessibility Widget</a> that is powered by a dedicated accessibility server. The software allows activeclubsolutions.net to improve its compliance with the Web Content Accessibility Guidelines (WCAG 2.1).\r\n<h2>Enabling the Accessibility Menu</h2>\r\nThe activeclubsolutions.net accessibility menu can be enabled by clicking the accessibility menu icon that appears on the corner of the page. After triggering the accessibility menu, please wait a moment for the accessibility menu to load in its entirety.\r\n<h2>Disclaimer</h2>\r\nactiveclubsolutions.net continues its efforts to constantly improve the accessibility of its site and services in the belief that it is our collective moral obligation to allow seamless, accessible and unhindered use also for those of us with disabilities.\r\n\r\nDespite our efforts to make all pages and content on activeclubsolutions.net fully accessible, some content may not have yet been fully adapted to the strictest accessibility standards. This may be a result of not having found or identified the most appropriate technological solution.\r\n<h2>Here For You</h2>\r\nIf you are experiencing difficulty with any content on activeclubsolutions.net or require assistance with any part of our site, please contact us during normal business hours as detailed below and we will be happy to assist.\r\n<h2>Contact Us</h2>\r\nIf you wish to report an accessibility issue, have any questions or need assistance, please contact activeclubsolutions.net Customer Support as follows:\r\n\r\nEmail: <a href=\"mailto:info@activeclubsolutions.com\">info@activeclubsolutions.com</a>','Accessibility Statement','','publish','closed','closed','','accessibility','','','2020-05-18 14:26:28','2020-05-18 21:26:28','',0,'https://activeclubsolutions.net/?page_id=3817',0,'page','',0),
(3826,2,'2020-08-11 12:19:20','2020-08-11 19:19:20','','woocommerce-placeholder','','inherit','closed','closed','','woocommerce-placeholder','','','2020-08-11 12:19:20','2020-08-11 19:19:20','',0,'https://activeclubsolutions.net/wp-content/uploads/2020/08/woocommerce-placeholder.png',0,'attachment','image/png',0),
(3842,2,'2021-03-11 22:55:56','2021-03-12 06:55:56','Laura Swanton, President of Laura Michael Wines in Calistoga, CA loves the clock in Activ8 Commerce Online.\r\n','We love Clocks','','pending','closed','open','','loveclocks','','','2022-08-14 20:28:22','2022-08-15 03:28:22','',0,'https://activeclubsolutions.net/?p=3842',0,'post','',0),
(3843,0,'2021-03-12 06:55:56','2021-03-12 06:55:56','<p>Laura Swanton, President of Laura Michael Wines in Calistoga, CA loves the clock in Activ8 Commerce Online.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/3842-2/\">We love Clocks</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','We love Clocks','Laura Swanton, President of Laura Michael Wines in Calistoga, CA loves the clock in Activ8 Commerce Online.\nThe post We love Clocks appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','we-love-clocks','','','2021-03-12 06:55:56','2021-03-12 06:55:56','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3843',0,'wprss_feed_item','',0),
(3846,0,'2021-03-12 06:55:56','2021-03-12 06:55:56','<p>Laura Swanton, President of Laura Michael Wines in Calistoga, CA loves the clock in Activ8 Commerce Online.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/loveclocks/\">We love Clocks</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','We love Clocks','Laura Swanton, President of Laura Michael Wines in Calistoga, CA loves the clock in Activ8 Commerce Online.\nThe post We love Clocks appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','we-love-clocks-2','','','2021-03-12 06:55:56','2021-03-12 06:55:56','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3846',0,'wprss_feed_item','',0),
(3849,2,'2021-03-25 12:11:08','2021-03-25 19:11:08','<style type=\"text/css\">.UnsubscribeFrameDiv{margin-top:-100px;margin-left:20%;margin-bottom:0%;width:60%;}</style>\r\n[ACSScript server=CA dbname=demodb_6]\r\n[ACSUnsubscribe server=CA dbname=demodb_6 fcrid=FC0000001 bottommargin=-30 waitcursor=http://www.secureclub.net/images/activeclub/ring.gif cursortopmargin=-200]','Example Unsubscribe','','publish','closed','closed','','demodb6-unsubscribe','','','2021-03-25 12:17:05','2021-03-25 19:17:05','',2766,'https://activeclubsolutions.net/?page_id=3849',0,'page','',0),
(3851,2,'2021-03-27 11:13:12','2021-03-27 18:13:12','1. The Wall Street Journal is read by the people who run the country. \r\n2. The Washington Post is read by people who think they run the country. \r\n3. The New York Times is read by people who think they should run the country, and who are very good at crossword puzzles. \r\n4. USA Today is read by people who think they ought to run the country but don\'t really understand The New York Times. \r\n5. The Los Angeles Times is read by people who wouldn\'t mind running the country, if they could find the time and if they didn\'t have to leave Southern California to do it. \r\n6. The Boston Globe is read by people whose parents used to run the country. \r\n7. The New York Daily News is read by people who aren\'t too sure who\'s running the country and don\'t really care as long as they can get a seat on the train. \r\n8. The New York Post is read by people who don\'t care who is running the country as long as they do something really scandalous, preferably while intoxicated. \r\n9. The Chicago Tribune is read by people that are in prison that used to run the state, and would like to do so again, as would their constituents who are currently free on bail. \r\n10. The Miami Herald is read by people who are running another country, but need the baseball scores. \r\n11. The San Francisco Chronicle is read by people who aren\'t sure if there is a country or that anyone is running it; but if so, they oppose all that they stand for. \r\n12. The National Enquirer is read by people trapped in line at the grocery store. \r\n13. The Seattle Times is read by people who have recently caught a fish and need something to wrap it in.\r\n','Who reads Newspapers','','pending','closed','open','','who-reads-newspapers','','','2022-08-14 20:28:16','2022-08-15 03:28:16','',0,'https://activeclubsolutions.net/?p=3851',0,'post','',0),
(3853,0,'2021-03-27 18:13:12','2021-03-27 18:13:12','<p>1. The Wall Street Journal is read by the people who run the country.<br>\n2. The Washington Post is read by people who think they run the country.<br>\n3. The New York Times is read by people who think they should run the country, and who are very good at crossword puzzles.<br>\n4. USA Today is read by people who think they ought to run the country but don’t really understand The New York Times.<br>\n5. The Los Angeles Times is read by people who wouldn’t mind running the country, if they could find the time and if they didn’t have to leave Southern California to do it.<br>\n6. The Boston Globe is read by people whose parents used to run the country.<br>\n7. The New York Daily News is read by people who aren’t too sure who’s running the country and don’t really care as long as they can get a seat on the train.<br>\n8. The New York Post is read by people who don’t care who is running the country as long as they do something really scandalous, preferably while intoxicated.<br>\n9. The Chicago Tribune is read by people that are in prison that used to run the state, and would like to do so again, as would their constituents who are currently free on bail.<br>\n10. The Miami Herald is read by people who are running another country, but need the baseball scores.<br>\n11. The San Francisco Chronicle is read by people who aren’t sure if there is a country or that anyone is running it; but if so, they oppose all that they stand for.<br>\n12. The National Enquirer is read by people trapped in line at the grocery store.<br>\n13. The Seattle Times is read by people who have recently caught a fish and need something to wrap it in.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/who-reads-newspapers/\">Who reads Newspapers</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Who reads Newspapers','1. The Wall Street Journal is read by the people who run the country. 2. The Washington Post is read by people who think they run the country. 3. The New York Times is read by people who think they should run the country, and who are very good at crossword puzzles. 4. USA Today […]\nThe post Who reads Newspapers appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','who-reads-newspapers','','','2021-03-27 18:13:12','2021-03-27 18:13:12','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3853',0,'wprss_feed_item','',0),
(3855,2,'2021-03-30 11:23:41','2021-03-30 18:23:41','Activ8 Commerce released a new version of Activ8 that improves on the Inventory Management system. It now gives more control at the item level on items that were returned and items that were not returned on swaps and refunds.\r\n\r\nAre you using the Customer Count feature on the Point of Sale? If not, we now provide you a way to utilize this same feature but for table numbers. These numbers will display in the New Order, Pending Orders, and Checkout screens to make it easier for your server to see which table the order is for.\r\n\r\nWe know how convenient it is to send items to the kitchen or bar for them to prepare, so we made it even better. It will now record the number of items that are sent to the printer and display them on the Send Item screen along with the first initial of the Printer that the item was last sent to. If you are having a problem with employees accidentally removing items after they were sent to be prepared, you can now set the Point of Sale to require a manager to login to delete these items or to resend them to the printer if the first ticket somehow was not received or prepared.\r\n\r\nFinally, we have added a couple new views to Transaction that group orders that have been charged and then refunded. Swap orders can now be viewed as a packing list with only the remaining items that should be given to the customers or shipped to their homes.','Latest Improvements to Activ8','','pending','closed','open','','march21release','','','2022-08-14 20:28:03','2022-08-15 03:28:03','',0,'https://activeclubsolutions.net/?p=3855',0,'post','',0),
(3856,0,'2021-03-30 18:23:41','2021-03-30 18:23:41','<p>Activ8 Commerce released a new version of Activ8 that improves on the Inventory Management system. It now gives more control at the item level on items that were returned and items that were not returned on swaps and refunds.</p>\n<p>Are you using the Customer Count feature on the Point of Sale? If not, we now provide you a way to utilize this same feature but for table numbers. These numbers will display in the New Order, Pending Orders, and Checkout screens to make it easier for your server to see which table the order is for.</p>\n<p>We know how convenient it is to send items to the kitchen or bar for them to prepare, so we made it even better. It will now record the number of items that are sent to the printer and display them on the Send Item screen along with the first initial of the Printer that the item was last sent to. If you are having a problem with employees accidentally removing items after they were sent to be prepared, you can now set the Point of Sale to require a manager to login to delete these items or to resend them to the printer if the first ticket somehow was not received or prepared.</p>\n<p>Finally, we have added a couple new views to Transaction that group orders that have been charged and then refunded. Swap orders can now be viewed as a packing list with only the remaining items that should be given to the customers or shipped to their homes.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/march21release/\">Latest Improvements to Activ8</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Latest Improvements to Activ8','Activ8 Commerce released a new version of Activ8 that improves on the Inventory Management system. It now gives more control at the item level on items that were returned and items that were not returned on swaps and refunds. Are you using the Customer Count feature on the Point of Sale? If not, we now […]\nThe post Latest Improvements to Activ8 appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','latest-improvements-to-activ8','','','2021-03-30 18:23:41','2021-03-30 18:23:41','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3856',0,'wprss_feed_item','',0),
(3859,2,'2021-04-10 20:13:58','2021-04-11 03:13:58','','news-bulletin','','inherit','closed','closed','','news-bulletin','','','2021-04-10 20:14:39','2021-04-11 03:14:39','',3860,'https://activeclubsolutions.net/wp-content/uploads/2021/04/news-bulletin.png',0,'attachment','image/png',0),
(3860,2,'2021-04-10 20:15:47','2021-04-11 03:15:47','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"/></h1>\r\n<h2>Bulletin Date: April 10th, 2021</h2>\r\n<br>\r\n<hr>\r\n<table style=\"width: auto; height: 170px;\">\r\n    <tbody>\r\n        <tr>\r\n            <td style=\"width: 200px;\">\r\n            <img width=\"170\" style=\"border-width: 0px; border-style: solid;\" alt=\"\" src=\"http://www.secureclub.net/images/activeclubmgmt/amo4.png\">\r\n            <br><br>\r\n            <img width=\"170\" style=\"border-width: 0px; border-style: solid;\" alt=\"\" src=\"http://www.secureclub.net/images/activeclubmgmt/amo1.png\">\r\n            <br><br>\r\n            <img width=\"170\" style=\"border-width: 0px; border-style: solid;\" alt=\"\" src=\"http://www.secureclub.net/images/activeclubmgmt/amo2.png\">\r\n            <br><br>\r\n            <img width=\"170\" style=\"border-width: 0px; border-style: solid;\" alt=\"\" src=\"http://www.secureclub.net/images/activeclubmgmt/amo3.png\">\r\n            </td>\r\n            <td style=\"width: 600px;\">\r\n            <h2>Activ8Cloud</h2>\r\n            <br><br>\r\n            We have renamed Activ8 \"Manager\" Online and moved it onto production equipment.\r\n            <br><br>\r\n            Activ8Cloud can now be found at its new location.\r\n            <br><br>\r\n            Copy one of these links to your browser and bookmark it.\r\n            <br><br>\r\n            <b>California</b> data center:<br>https://activ8cloudca.net<br>\r\n            <br>\r\n            <b>Texas</b> data center:<br>https://activ8cloudtx.net<br>\r\n            <br>\r\n            <b>Virginia</b> data center:<br>https://activ8cloudva.net<br>\r\n            <br>\r\n            <b>Washington</b> data center:<br>https://activ8cloudwa.net\r\n            <br><br>\r\n            <h3>Its faster!</h3>\r\n            <br><br>\r\n            </td>\r\n        </tr>\r\n    </tbody>\r\n</table>\r\n<br>\r\n<hr>\r\nThe &Lambda;ctiv8 Team<br>\r\n<p align=\"left\" style=\"font-size: 80%\">&copy; 2021 &Lambda;ctiv8Commerce / Active Club Solutions, Inc.</p>\r\n','Activ8Cloud','','pending','closed','open','','activ8cloud','','','2022-08-14 20:27:50','2022-08-15 03:27:50','',0,'https://activeclubsolutions.net/?p=3860',0,'post','',0),
(3863,0,'2021-04-11 03:15:47','2021-04-11 03:15:47','<h1><img src=\"https://i1.wp.com/www.secureclub.net/images/activeclubmgmt/bulletin-square.png?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<h2>Bulletin Date: April 10th, 2021</h2>\n<p></p>\n<hr>\n<table>\n<tbody>\n<tr>\n<td>\n            <img alt=\"\" src=\"https://i1.wp.com/www.secureclub.net/images/activeclubmgmt/amo4.png?w=170\" data-recalc-dims=\"1\">\n<p>            <img alt=\"\" src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/amo1.png?w=170\" data-recalc-dims=\"1\"></p>\n<p>            <img alt=\"\" src=\"https://i1.wp.com/www.secureclub.net/images/activeclubmgmt/amo2.png?w=170\" data-recalc-dims=\"1\"></p>\n<p>            <img alt=\"\" src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/amo3.png?w=170\" data-recalc-dims=\"1\">\n            </p></td>\n<td>\n<h2>Activ8Cloud</h2>\n<p>            We have renamed Activ8 “Manager” Online and moved it onto production equipment.</p>\n<p>            Activ8Cloud can now be found at its new location.</p>\n<p>            Copy one of these links to your browser and bookmark it.</p>\n<p>            <b>California</b> data center:<br>https://activ8cloudca.net</p>\n<p>            <b>Texas</b> data center:<br>https://activ8cloudtx.net</p>\n<p>            <b>Virginia</b> data center:<br>https://activ8cloudva.net</p>\n<p>            <b>Washington</b> data center:<br>https://activ8cloudwa.net</p>\n<h3>Its faster!</h3>\n</td>\n</tr>\n</tbody>\n</table>\n<p></p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce / Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8cloud/\">Activ8Cloud</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud','Bulletin Date: April 10th, 2021 Activ8Cloud We have renamed Activ8 “Manager” Online and moved it onto production equipment. Activ8Cloud can now be found at its new location. Copy one of these links to your browser and bookmark it. California data center:https://activ8cloudca.net Texas data center:https://activ8cloudtx.net Virginia data center:https://activ8cloudva.net Washington data center:https://activ8cloudwa.net Its faster! The Λctiv8 Team […]\nThe post Activ8Cloud appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud','','','2021-04-11 03:15:47','2021-04-11 03:15:47','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3863',0,'wprss_feed_item','',0),
(3866,2,'2021-05-02 22:32:27','2021-05-03 05:32:27','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"/></h1>\r\n<h2>Bulletin Date: May 2nd, 2021</h2>\r\n<br>\r\n<hr>\r\n<br>\r\nActiv8Cloud gets Club Choice.  A simple to use member choice system.\r\n<hr>\r\nThe &Lambda;ctiv8 Team<br>\r\n<p align=\"left\" style=\"font-size: 80%\">&copy; 2021 &Lambda;ctiv8Commerce / Active Club Solutions, Inc.</p>\r\n','Activ8Cloud gets Club Choice','','pending','closed','open','','club-choice','','','2022-08-14 20:27:40','2022-08-15 03:27:40','',0,'https://activeclubsolutions.net/?p=3866',0,'post','',0),
(3867,0,'2021-05-03 05:32:27','2021-05-03 05:32:27','<h1><img src=\"https://i1.wp.com/www.secureclub.net/images/activeclubmgmt/bulletin-square.png?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<h2>Bulletin Date: May 2nd, 2021</h2>\n<p></p>\n<hr>\n<p>\nActiv8Cloud gets Club Choice.  A simple to use member choice system.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce / Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/club-choice/\">Activ8Cloud gets Club Choice</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud gets Club Choice','Bulletin Date: May 2nd, 2021 Activ8Cloud gets Club Choice. A simple to use member choice system. The Λctiv8 Team © 2021 Λctiv8Commerce / Active Club Solutions, Inc.\nThe post Activ8Cloud gets Club Choice appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud-gets-club-choice','','','2021-05-03 05:32:27','2021-05-03 05:32:27','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3867',0,'wprss_feed_item','',0),
(3873,2,'2021-05-27 18:17:32','2021-05-28 01:17:32','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"/></h1>\r\n<h2>Bulletin Date: May 2nd, 2021</h2>\r\n<br>\r\n<hr>\r\n<br>\r\nAn Activ8Cloud folder or sheet can now display up to 25,000 records at a time.\r\n<hr>\r\nThe &Lambda;ctiv8 Team<br>\r\n<p align=\"left\" style=\"font-size: 80%\">&copy; 2021 &Lambda;ctiv8Commerce / Active Club Solutions, Inc.</p>\r\n','Activ8Cloud now supports 25,000 records','','pending','closed','open','','activ8cloud-now-supports-25000-records','','','2022-08-14 20:27:31','2022-08-15 03:27:31','',0,'https://activeclubsolutions.net/?p=3873',0,'post','',0),
(3874,0,'2021-05-28 01:17:32','2021-05-28 01:17:32','<h1><img src=\"https://i1.wp.com/www.secureclub.net/images/activeclubmgmt/bulletin-square.png?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<h2>Bulletin Date: May 2nd, 2021</h2>\n<p></p>\n<hr>\n<p>\nActiv8Cloud now supports 25,000 records.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce / Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8cloud-now-supports-25000-records/\">Activ8Cloud now supports 25,000 records</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud now supports 25,000 records','Bulletin Date: May 2nd, 2021 Activ8Cloud now supports 25,000 records. The Λctiv8 Team © 2021 Λctiv8Commerce / Active Club Solutions, Inc.\nThe post Activ8Cloud now supports 25,000 records appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud-now-supports-25000-records','','','2021-05-28 01:17:32','2021-05-28 01:17:32','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3874',0,'wprss_feed_item','',0),
(3876,2,'2022-03-30 09:24:28','2022-03-30 16:24:28','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/brandyvideo.gif\"/></h1>\r\n<h2>Bulletin Date: June 17th, 2021</h2>\r\n<br>\r\n<hr>\r\n<br>\r\nWatch the Activ8Cloud video on Club Choice.\r\n\r\nhttps://player.vimeo.com/video/563868685\r\n\r\n<hr>\r\nThe &Lambda;ctiv8 Team<br>\r\n<p align=\"left\" style=\"font-size: 80%\">&copy; 2021 &Lambda;ctiv8Commerce / Active Club Solutions, Inc.</p>\r\n','Choice Club Video','','pending','closed','open','','activ8cloudchoice-club-video','','','2022-08-13 23:33:44','2022-08-14 06:33:44','',0,'https://activeclubsolutions.net/?p=3876',0,'post','',0),
(3878,0,'2021-06-18 04:24:28','2021-06-18 04:24:28','<h1><img src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/brandyvideo.gif?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<h2>Bulletin Date: June 17th, 2021</h2>\n<p></p>\n<hr>\n<p>\nWatch the Activ8Cloud video on Club Choice.</p>\n<div class=\"embed-vimeo\"></div>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce / Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8cloudchoice-club-video/\">Activ8Cloud – Choice Club Video</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud – Choice Club Video','Bulletin Date: June 17th, 2021 Watch the Activ8Cloud video on Club Choice. The Λctiv8 Team © 2021 Λctiv8Commerce / Active Club Solutions, Inc.\nThe post Activ8Cloud – Choice Club Video appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud-choice-club-video','','','2021-06-18 04:24:28','2021-06-18 04:24:28','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3878',0,'wprss_feed_item','',0),
(3884,2,'2021-07-02 12:42:34','2021-07-02 19:42:34','<h1><img style=\"margin-top: -20px;width=80px;height=80px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/splash-1080.png\"/></h1>\r\n<h2>Bulletin Date: July 2, 2021</h2>\r\n<br>\r\n<hr>\r\n<br>\r\nActiv8Cloud now supports user management in the Administration drawer.\r\n<hr>\r\nThe &Lambda;ctiv8 Team<br>\r\n<p align=\"left\" style=\"font-size: 80%\">&copy; 2021 &Lambda;ctiv8Commerce / Active Club Solutions, Inc.</p>\r\n','User management sees the light','','pending','closed','open','','activ8cloud-now-supports-user-management','','','2022-08-14 20:27:20','2022-08-15 03:27:20','',0,'https://activeclubsolutions.net/?p=3884',0,'post','',0),
(3885,0,'2021-07-02 19:42:34','2021-07-02 19:42:34','<h1><img src=\"https://i1.wp.com/www.secureclub.net/images/activeclubmgmt/bulletin-square.png?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<h2>Bulletin Date: July 2, 2021</h2>\n<p></p>\n<hr>\n<p>\nActiv8Cloud now supports user management in the Administration drawer.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce / Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8cloud-now-supports-user-management/\">Activ8Cloud now supports user management</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud now supports user management','Bulletin Date: July 2, 2021 Activ8Cloud now supports user management in the Administration drawer. The Λctiv8 Team © 2021 Λctiv8Commerce / Active Club Solutions, Inc.\nThe post Activ8Cloud now supports user management appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud-now-supports-user-management','','','2021-07-02 19:42:34','2021-07-02 19:42:34','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3885',0,'wprss_feed_item','',0),
(3887,6,'2021-07-05 05:39:19','2021-07-05 12:39:19','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/splash-1080.png\" /></h1>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n\r\nManager Online Administrators now see the User <a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Users.html#actions\" target=\"_blank\" rel=\"noopener\"><b>Actions</b> menu</a>, where they can select one or more users to send e-mail to:\r\n<ul style=\"list-style-type: square;\">\r\n 	<li>notify a user of a new login account</li>\r\n 	<li>request a password reset</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','User Actions menu','','pending','closed','open','','manager-online-ctiv8cloud-user-actions-menu','','','2022-08-14 20:27:10','2022-08-15 03:27:10','',0,'https://activeclubsolutions.net/?p=3887',0,'post','',0),
(3889,0,'2021-07-05 12:39:19','2021-07-05 12:39:19','<h1><img src=\"https://i2.wp.com/www.secureclub.net/images/activeclubmgmt/breaking_news-2.jpg?resize=140%2C80&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<p></p>\n<hr>\n<p></p>\n<p>Manager Online Administrators now see the User <a href=\"https://www.secureclub.net/Help/amo/ml_AdminList-Users.html#actions\" target=\"_blank\" rel=\"noopener\"><b>Actions</b> menu</a>, where they can select one or more users to send e-mail to:</p>\n<ul>\n<li>notify a user of a new login account</li>\n<li>request a password reset</li>\n</ul>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/manager-online-ctiv8cloud-user-actions-menu/\">Manager Online (Λctiv8Cloud) — User Actions menu</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Manager Online (Λctiv8Cloud) — User Actions menu','Manager Online Administrators now see the User Actions menu, where they can select one or more users to send e-mail to: notify a user of a new login account request a password reset The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Manager Online (Λctiv8Cloud) — User Actions menu appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','manager-online-%ce%bbctiv8cloud%e2%80%8a-%e2%80%8auser-actions-menu','','','2021-07-05 12:39:19','2021-07-05 12:39:19','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3889',0,'wprss_feed_item','',0),
(3891,2,'2021-07-06 21:55:39','2021-07-07 04:55:39','<h1><img style=\"margin-top: -20px;width=140px;height=80px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/splash-1080.png\"/></h1>\r\n<br>\r\n<hr>\r\n<br>\r\n<p>Customer page view - Membership tab gets a facelift.  The new interface is easier to use and easier to understand.</p>\r\n<hr>\r\n<br>\r\n<p>The &Lambda;ctiv8 Team</p>\r\n<p align=\"left\" style=\"font-size: 80%\">&copy; 2021 &Lambda;ctiv8Commerce/Active Club Solutions, Inc.</p>\r\n','Customer Membership','','pending','closed','open','','activ8cloud%e2%80%8a-%e2%80%8acustomer-membership','','','2022-08-14 20:27:02','2022-08-15 03:27:02','',0,'https://activeclubsolutions.net/?p=3891',0,'post','',0),
(3893,0,'2021-07-07 04:55:39','2021-07-07 04:55:39','<h1><img src=\"https://i2.wp.com/www.secureclub.net/images/activeclubmgmt/breaking_news-2.jpg?resize=140%2C80&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<p></p>\n<hr>\n<p></p>\n<p>Customer page view – Membership tab gets a facelift.  The new interface is easier to use and easier to understand.</p>\n<hr>\n<p></p>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8cloud%E2%80%8A-%E2%80%8Acustomer-membership/\">Manager Online (Λctiv8Cloud) — Customer Membership</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Manager Online (Λctiv8Cloud) — Customer Membership','Customer page view – Membership tab gets a facelift. The new interface is easier to use and easier to understand. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Manager Online (Λctiv8Cloud) — Customer Membership appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','manager-online-%ce%bbctiv8cloud%e2%80%8a-%e2%80%8acustomer-membership','','','2021-07-07 04:55:39','2021-07-07 04:55:39','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3893',0,'wprss_feed_item','',0),
(3897,6,'2021-07-13 05:19:08','2021-07-13 12:19:08','<h1><img style=\"margin-top: -20px;width=140px;height=80px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/splash-1080.png\"/></h1>\r\n\r\n<hr />\r\n\r\n<p>All <a href=\"https://www.secureclub.net/Help/amo/?ml_StoreList-Reports.html\" target=\"_blank\" rel=\"noopener\">sales order data sheets</a> (in the Store folders) now include a summary line, showing the total Retail value, Discount, Selling Price, Sales Tax, S &amp; H charges, Tips, and Total revenue for all items displayed in the list.</p>\r\n\r\n<img src=\"https://secureclub.net/images/activeclubmgmt/store_summary_line.png\"/>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Sales order summary line','','pending','closed','open','','manager-online-ctiv8cloud%e2%80%8a-sales-order-summary-line','','','2022-08-14 20:26:55','2022-08-15 03:26:55','',0,'https://activeclubsolutions.net/?p=3897',0,'post','',0),
(3899,0,'2021-07-13 12:19:08','2021-07-13 12:19:08','<h1><img src=\"https://i2.wp.com/www.secureclub.net/images/activeclubmgmt/breaking_news-2.jpg?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<hr>\n<p>All <a href=\"https://www.secureclub.net/Help/amo/?ml_StoreList-Reports.html\" target=\"_blank\" rel=\"noopener\">sales order data sheets</a> (in the Store folders) now include a summary line, showing the total Retail value, Discount, Selling Price, Sales Tax, S &amp; H charges, Tips, and Total revenue for all items displayed in the list.</p>\n<p><img src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/store_summary_line.png?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/manager-online-ctiv8cloud%E2%80%8A-sales-order-summary-line/\">Manager Online (Λctiv8Cloud)— Sales order summary line</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Manager Online (Λctiv8Cloud)— Sales order summary line','All sales order data sheets (in the Store folders) now include a summary line, showing the total Retail value, Discount, Selling Price, Sales Tax, S & H charges, Tips, and Total revenue for all items displayed in the list. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Manager Online (Λctiv8Cloud)— Sales order summary line appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','manager-online-%ce%bbctiv8cloud-%e2%80%8asales-order-summary-line','','','2021-07-13 12:19:08','2021-07-13 12:19:08','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3899',0,'wprss_feed_item','',0),
(3902,5,'2022-03-30 08:04:29','2022-03-30 15:04:29','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/smsvideo.gif\" /></h1>\r\n\r\n<hr />\r\n\r\nΛctiv8 Manager Online (“Λctiv8 Cloud”) now supports sending <a href=\"https://www.secureclub.net/Help/amo/ml_Editor.html#sms\">SMS text messages</a> to customers.\r\n\r\n<a href=\"https://player.vimeo.com/video/578594330\" target=\"_blank\" rel=\"noopener\"></a>\r\n<a>For a tutorial video, see <a href=\"https://player.vimeo.com/video/578594330\" target=\"_blank\" rel=\"noopener\">https://player.vimeo.com/video/578594330</a>.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','SMS text messaging','','pending','closed','open','','manager-online-ctiv8cloud-sms-text-messaging','','','2022-08-13 23:33:55','2022-08-14 06:33:55','',0,'https://activeclubsolutions.net/?p=3902',0,'post','',0),
(3903,0,'2021-07-24 15:04:29','2021-07-24 15:04:29','<h1><img src=\"https://i2.wp.com/www.secureclub.net/images/activeclubmgmt/breaking_news-2.jpg?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<hr>\n<p>Λctiv8 Manager Online (“Λctiv8 Cloud”) now supports sending <a href=\"https://www.secureclub.net/Help/amo/ml_Editor.html#sms\">SMS text messages</a> to customers.</p>\n<p><img src=\"https://i1.wp.com/www.secureclub.net/Help/acm/UG/pix/dlgMMD.jpg?w=1200&amp;ssl=1\" alt=\"dlgMMD.jpg\" title=\"Send Text Message dialog\" data-recalc-dims=\"1\"></p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/manager-online-ctiv8cloud-sms-text-messaging/\">Manager Online (Λctiv8Cloud)—SMS text messaging</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Manager Online (Λctiv8Cloud)—SMS text messaging','Λctiv8 Manager Online (“Λctiv8 Cloud”) now supports sending SMS text messages to customers. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Manager Online (Λctiv8Cloud)—SMS text messaging appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','manager-online-%ce%bbctiv8cloud-sms-text-messaging','','','2021-07-24 15:04:29','2021-07-24 15:04:29','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3903',0,'wprss_feed_item','',0),
(3910,6,'2021-08-10 06:50:44','2021-08-10 13:50:44','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/waterfall-gif.gif\" /></h1>\r\n\r\n<hr />\r\n\r\n&Lambda;ctiv8 Manager Online (&ldquo;&Lambda;ctiv8 Cloud&rdquo;) now supports awarding and redeeming <a href=\"https://www.secureclub.net/Help/amo/ml_CustList-Account.html#loyalty\" rel=\"noopener\" target=\"_blank\">loyalty points</a> for repeat customers.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Loyalty points','','pending','closed','open','','manager-online-ctiv8cloud-loyalty-points','','','2022-08-14 20:26:47','2022-08-15 03:26:47','',0,'https://activeclubsolutions.net/?p=3910',0,'post','',0),
(3911,0,'2021-08-10 13:50:44','2021-08-10 13:50:44','<h1><img src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/brandyvideo.gif?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<hr>\n<p>Λctiv8 Manager Online (“Λctiv8 Cloud”) now supports awarding and redeeming <a href=\"https://www.secureclub.net/Help/amo/ml_CustList-Account.html#loyalty\" rel=\"noopener\" target=\"_blank\">loyalty points</a> for repeat customers.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/manager-online-ctiv8cloud-loyalty-points/\">Manager Online (Λctiv8Cloud)—Loyalty points</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Manager Online (Λctiv8Cloud)—Loyalty points','Λctiv8 Manager Online (“Λctiv8 Cloud”) now supports awarding and redeeming loyalty points for repeat customers. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Manager Online (Λctiv8Cloud)—Loyalty points appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','manager-online-%ce%bbctiv8cloud-loyalty-points','','','2021-08-10 13:50:44','2021-08-10 13:50:44','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3911',0,'wprss_feed_item','',0),
(3913,2,'2021-08-12 16:52:15','0000-00-00 00:00:00','&nbsp;\n\nasd\n\n&nbsp;\n\n&nbsp;','Test Tock','','draft','closed','closed','','','','','2021-08-12 16:52:15','2021-08-12 23:52:15','',0,'https://activeclubsolutions.net/?page_id=3913',0,'page','',0),
(3916,6,'2021-08-13 13:45:11','2021-08-13 20:45:11','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"/></h1>\r\n<hr />\r\n\r\nIn all the folders, for every available sheet view, the <b>Actions</b> menu now includes the command <b>Email Selected to Me</b>. This action sends you the contents of selected records as a comma-separated (<span style=\"font-size: 90%;\">.CSV</span>) data file, which you can open in a spreadsheet application.\r\n\r\n<div style=\"width=100%;height:250px;\">\r\n<img title=\"Data exported to .csv file\" src=\"https://www.secureclub.net/images/activeclubmgmt/csv_export.png\" alt=\"csv_export.png\" align=\"right\" hspace=\"6px\" />\r\n</div>\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Exporting data sheets','','pending','closed','open','','manager-online-ctiv8cloud-exporting-data-sheets','','','2022-08-14 20:26:39','2022-08-15 03:26:39','',0,'https://activeclubsolutions.net/?p=3916',0,'post','',0),
(3917,0,'2021-08-13 20:45:11','2021-08-13 20:45:11','<h1><img src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/breaking_news.jpg?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<p>&lt;!-- \n\n<h1><img style=\"margin-top: -20px\" src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/brandyvideo.gif?w=1200&#038;ssl=1\" data-recalc-dims=\"1\" /></h1>\n\n --&gt;</p>\n<hr>\n<p><img align=\"right\" src=\"https:/www.secureclub.net/Help/amo/pix/csv_export.png\" alt=\"csv_export.png\" title=\"Data exported to .csv file\"> In all the folders, for every available sheet view, the <b>Actions</b> menu now includes the command <b>Email Selected to Me</b>. This action sends you the contents of selected records as a comma-separated (<span>.CSV</span>) file, which you can open in a spreadsheet viewer program.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/manager-online-ctiv8cloud-exporting-data-sheets/\">Manager Online (Λctiv8Cloud)—Exporting data sheets</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Manager Online (Λctiv8Cloud)—Exporting data sheets',' In all the folders, for every available sheet view, the Actions menu now includes the command Email Selected to Me. This action sends you the contents of selected records as a comma-separated (.CSV) file, which you can open in a spreadsheet viewer program. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Manager Online (Λctiv8Cloud)—Exporting data sheets appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','manager-online-%ce%bbctiv8cloud-exporting-data-sheets','','','2021-08-13 20:45:11','2021-08-13 20:45:11','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3917',0,'wprss_feed_item','',0),
(3921,6,'2021-08-25 07:40:02','2021-08-25 14:40:02','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"/></h1>\r\n\r\n<hr />\r\n\r\nThe <a href=\"https://www.secureclub.net/Help/amo/?ml_ReportsList.html\" target=\"_blank\" rel=\"noopener\">Reports</a> drawer now provides several categories of on-demand reports:\r\n<ul>\r\n	<li>Financials</li>\r\n	<li>Inventory stock</li>\r\n	<li>Sales and other tax</li>\r\n	<li>Inventory transactions</li>\r\n	<li>Employee reports</li>\r\n</ul>\r\n<img align=\"right\" src=\"https://www.secureclub.net/Help/amo/pix/dlgReportParams.png\" alt=\"dlgReportParams.png\" title=\"Setting report parameters\">Users can set the date range and other parameters and display the report immediately.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Instant reports','','pending','closed','open','','manager-online-ctiv8cloud-instant-reports','','','2022-08-14 20:26:29','2022-08-15 03:26:29','',0,'https://activeclubsolutions.net/?p=3921',0,'post','',0),
(3923,0,'2021-08-25 14:40:02','2021-08-25 14:40:02','<h1><img src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/breaking_news.jpg?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<p>&lt;!--\n\n<h1><img style=\"margin-top: -20px\" src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/brandyvideo.gif?w=1200&#038;ssl=1\" data-recalc-dims=\"1\" /></h1>\n\n--&gt;</p>\n<hr>\n<p>The <a href=\"http://www.secureclub.net/Help/amo/?ml_ReportsList.html\" target=\"_blank\" rel=\"noopener\">Reports</a> drawer now provides several categories of on-demand reports:</p>\n<ul>\n<li>Financials</li>\n<li>Inventory stock</li>\n<li>Sales and other tax</li>\n<li>Inventory transactions</li>\n<li>Employee reports</li>\n</ul>\n<p><img align=\"right\" src=\"https://i0.wp.com/www.secureclub.net/Help/amo/pix/dlgReportParams.png?w=1200\" alt=\"dlgReportParams.png\" title=\"Setting report parameters\" data-recalc-dims=\"1\">Users can set the date range and other parameters and display the report immediately.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/manager-online-ctiv8cloud-instant-reports/\">Manager Online (Λctiv8Cloud)—Instant reports</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Manager Online (Λctiv8Cloud)—Instant reports','The Reports drawer now provides several categories of on-demand reports: Financials Inventory stock Sales and other tax Inventory transactions Employee reports Users can set the date range and other parameters and display the report immediately. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Manager Online (Λctiv8Cloud)—Instant reports appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','manager-online-%ce%bbctiv8cloud-instant-reports','','','2021-08-25 14:40:02','2021-08-25 14:40:02','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3923',0,'wprss_feed_item','',0),
(3924,6,'2021-08-25 08:05:07','2021-08-25 15:05:07','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"/></h1>\r\n\r\n<hr />\r\n\r\nThe <a href=\"http://www.secureclub.net/Help/amo/?ml_StoreList-Actions-labels.html\" target=\"_blank\" rel=\"noopener\">Javascript print manager utility</a> has been updated to version 4. Users who have installed version 3 must remove it and reinstall with the new version.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','ALERT: Print manager update','','pending','closed','open','','manager-online-ctiv8cloud-alert-print-manager-update','','','2022-08-14 20:25:48','2022-08-15 03:25:48','',0,'https://activeclubsolutions.net/?p=3924',0,'post','',0),
(3925,0,'2021-08-25 15:05:07','2021-08-25 15:05:07','<h1><img src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/breaking_news.jpg?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<p>&lt;!--\n\n\n<h1><img style=\"margin-top: -20px\" src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/brandyvideo.gif?w=1200&#038;ssl=1\" data-recalc-dims=\"1\" /></h1>\n\n\n--&gt;</p>\n<hr>\n<p>The <a href=\"http://www.secureclub.net/Help/amo/?ml_StoreList-Actions-labels.html\" target=\"_blank\" rel=\"noopener\">Javascript print manager utility</a> has been updated to version 4. Users who have installed version 3 must remove it and reinstall with the new version.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/manager-online-ctiv8cloud-alert-print-manager-update/\">Manager Online (Λctiv8Cloud)—ALERT: Print manager update</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Manager Online (Λctiv8Cloud)—ALERT: Print manager update','The Javascript print manager utility has been updated to version 4. Users who have installed version 3 must remove it and reinstall with the new version. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Manager Online (Λctiv8Cloud)—ALERT: Print manager update appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','manager-online-%ce%bbctiv8cloud-alert-print-manager-update','','','2021-08-25 15:05:07','2021-08-25 15:05:07','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3925',0,'wprss_feed_item','',0),
(3926,6,'2021-08-31 05:02:57','2021-08-31 12:02:57','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"/></h1>\r\n\r\n<hr />\r\n\r\n<img align=\"right\" src=\"https://www.secureclub.net/Help/amo/pix/dlgTextEditor.png\" alt=\"dlgTextEditor.png\" title=\"Manager Online text editor\" width=450px height=229px>E-mail templates and Product and Package Notes can now be edited in text mode with the built-in <a href=\"https://www.secureclub.net/Help/amo/?ml_Views-texted.html\" target=\"_blank\" rel=\"noopener\">text editor</a>.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Text-mode template editor','','pending','closed','open','','manager-online-ctiv8cloud-new-text-editor-for-templates-and-notes','','','2022-08-14 20:25:36','2022-08-15 03:25:36','',0,'https://activeclubsolutions.net/?p=3926',0,'post','',0),
(3929,0,'2021-08-31 12:02:57','2021-08-31 12:02:57','<p>&lt;!--\n\n\n<h1><img style=\"margin-top: -20px\" src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/breaking_news.jpg?w=1200&#038;ssl=1\" data-recalc-dims=\"1\" /></h1>\n\n\n\n\n<h1><img style=\"margin-top: -20px\" src=\"https://i1.wp.com/www.secureclub.net/images/activeclubmgmt/bulletin-square.png?w=1200&#038;ssl=1\" data-recalc-dims=\"1\" /></h1>\n\n\n\n\n<h1><img style=\"margin-top: -20px\" src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/brandyvideo.gif?w=1200&#038;ssl=1\" data-recalc-dims=\"1\" /></h1>\n\n\n--&gt;</p>\n<h1><img src=\"https://i1.wp.com/www.secureclub.net/Help/amo/pix/dlgTextEditor.png?w=1200\" data-recalc-dims=\"1\"></h1>\n<hr>\n<p><img align=\"right\" src=\"https://i1.wp.com/www.secureclub.net/Help/amo/pix/dlgTextEditor.png?resize=450%2C229\" alt=\"dlgTextEditor.png\" title=\"Manager Online text editor\" width=\"450\" height=\"229\" data-recalc-dims=\"1\">E-mail templates and Product and Package Notes can now be edited in text mode with the built-in <a href=\"https://www.secureclub.net/Help/amo/?ml_Views-texted.html\" target=\"_blank\" rel=\"noopener\">text editor</a>.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/manager-online-ctiv8cloud-new-text-editor-for-templates-and-notes/\">Manager Online (Λctiv8Cloud)—Text-mode template editor</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Manager Online (Λctiv8Cloud)—Text-mode template editor','E-mail templates and Product and Package Notes can now be edited in text mode with the built-in text editor. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Manager Online (Λctiv8Cloud)—Text-mode template editor appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','manager-online-%ce%bbctiv8cloud-text-mode-template-editor','','','2021-08-31 12:02:57','2021-08-31 12:02:57','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3929',0,'wprss_feed_item','',0),
(3937,6,'2021-09-13 12:29:30','2021-09-13 19:29:30','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"/></h1>\r\n\r\n<hr />\r\n\r\n<img align=\"right\" src=\"https://www.secureclub.net/Help/amo/pix/catmenu-ex.jpg\" alt=\"catmenu-ex.jpg\" title=\"Product catalog menu\" width=76px height=234px>&Lambda;ctiv8 &ldquo;Cloud&rdquo; administrators can now add, remove, and rename the <a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Headings.html\" target=\"_blank\" rel=\"noopener\">catalog headings</a> under which products and packages are displayed in the &ldquo;shopping carts&rdquo; and &Lambda;ctiv8 POS.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Modifying display headings','','pending','closed','open','','modifying-display-headings','','','2022-08-14 20:25:25','2022-08-15 03:25:25','',0,'https://activeclubsolutions.net/?p=3937',0,'post','',0),
(3938,0,'2021-09-13 19:29:30','2021-09-13 19:29:30','<h1><img src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/breaking_news.jpg?w=1200&amp;ssl=1\" data-recalc-dims=\"1\"></h1>\n<p>&lt;!--\n\n\n<h1><img style=\"margin-top: -20px\" src=\"https://i1.wp.com/www.secureclub.net/images/activeclubmgmt/bulletin-square.png?w=1200&#038;ssl=1\" data-recalc-dims=\"1\" /></h1>\n\n\n\n\n<h1><img style=\"margin-top: -20px\" src=\"https://i0.wp.com/www.secureclub.net/images/activeclubmgmt/brandyvideo.gif?w=1200&#038;ssl=1\" data-recalc-dims=\"1\" /></h1>\n\n\n--&gt;</p>\n<hr><p><img align=\"right\" src=\"https://i0.wp.com/www.secureclub.net/Help/amo/pix/catmenu-ex.jpg?resize=76%2C234\" alt=\"catmenu-ex.jpg\" title=\"Product catalog menu\" width=\"76\" height=\"234\" data-recalc-dims=\"1\">Manager Online administrators can now add, remove, and rename the <a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Headings.html\" target=\"_blank\" rel=\"noopener\">catalog headings</a> under which products and packages are displayed in the “shopping carts” and Λctiv8 POS.</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/modifying-display-headings/\">Modifying display headings</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Modifying display headings','Manager Online administrators can now add, remove, and rename the catalog headings under which products and packages are displayed in the “shopping carts” and Λctiv8 POS. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Modifying display headings appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','modifying-display-headings','','','2021-09-13 19:29:30','2021-09-13 19:29:30','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3938',0,'wprss_feed_item','',0),
(3953,6,'2021-10-10 05:35:59','2021-10-10 12:35:59','<img src=\"https://www.secureclub.net/images/activeclubmgmt/jumpingman.png\"/>\r\n\r\n<hr />\r\n\r\nThree new folders in the <a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList.html\" target=\"acmhelp\" rel=\"noopener\">Administration drawer</a> now contain details for setting up and managing:\r\n<ul style=\"list-style-type: none;\">\r\n 	<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Email.html\" target=\"acmhelp\" rel=\"noopener\"><i class=\"far fa-envelope\" style=\"font-size: 200%;\"></i>    <strong>E-mail envelope</strong></a> — To: and From: addresses, logo, and fonts</li>\r\n 	<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-POS.html\" target=\"acmhelp\" rel=\"noopener\"><i class=\"fas fa-cash-register\" style=\"font-size: 200%; margin-top: 15px;\"></i>    <strong>POS Configuration</strong></a> — Switches and settings for Λctiv8 POS</li>\r\n 	<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Disc.html\" target=\"acmhelp\" rel=\"noopener\"><i class=\"fas fa-tag\" style=\"font-size: 200%; margin-top: 16px;\"></i>    <strong>Discounts</strong></a> — POS, product, promos, shipping &amp; handling</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','New Administration folders','','pending','closed','open','','new-administration-folders','','','2022-08-14 16:12:29','2022-08-14 23:12:29','',0,'https://activeclubsolutions.net/?p=3953',0,'post','',0),
(3956,0,'2021-10-10 12:35:59','2021-10-10 12:35:59','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/breaking_news.jpg\"></h1>\n<p>&lt;!--\n\n\n<h1><img style=\"margin-top: -20px\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\" /></h1>\n\n\n\n\n<h1><img style=\"margin-top: -20px\" src=\"https://www.secureclub.net/images/activeclubmgmt/brandyvideo.gif\" /></h1>\n\n\n--&gt;</p>\n<hr><p>Three new folders in the Administration drawer now contain details for setting up and managing:</p>\n<ul><li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Email.html\" target=\"acmhelp\" rel=\"noopener\"><strong>E-mail envelope</strong></a> — To: and From: addresses, logo, and fonts</li>\n<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-POS.html\" target=\"acmhelp\" rel=\"noopener\"><strong>POS Configuration</strong></a> — Switches and settings for Λctiv8 POS</li>\n<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Disc.html\" target=\"acmhelp\" rel=\"noopener\"><strong>Discounts</strong></a> — POS, product, promos, shipping &amp; handling</li>\n</ul><hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/new-administration-folders/\">New Administration folders</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','New Administration folders','Three new folders in the Administration drawer now contain details for setting up and managing: E-mail envelope — To: and From: addresses, logo, and fonts POS Configuration — Switches and settings for Λctiv8 POS Discounts — POS, product, promos, shipping & handling The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post New Administration folders appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','new-administration-folders','','','2021-10-10 12:35:59','2021-10-10 12:35:59','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3956',0,'wprss_feed_item','',0),
(3961,6,'2021-11-09 06:48:09','2021-11-09 14:48:09','<img src=\"https://www.secureclub.net/images/activeclubmgmt/twothumbsup.png\" />\r\n\r\n<hr />\r\n\r\nMore new folders in the <a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList.html\" target=\"acmhelp\" rel=\"noopener\">Administration drawer</a>:\r\n<ul style=\"list-style-type: none;\">\r\n 	<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Locations.html\" target=\"acmhelp\" rel=\"noopener\"><i class=\"fas fa-map-marker-alt\" style=\"font-size: 200%;\"></i>    <strong>Locations</strong></a> — Maintain the list of available stock locations</li>\r\n 	<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Drawer.html\" target=\"acmhelp\" rel=\"noopener\"><i class=\"fas fa-hand-holding-usd\" style=\"font-size: 200%;\"></i>    <strong>Cash Drawer</strong></a> — Set up opening quantities of bills and coins in drawer</li>\r\n 	<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Ship.html\" target=\"acmhelp\" rel=\"noopener\"><i class=\"fas fa-ship\" style=\"font-size: 200%; margin-top: 15px;\"></i>    <strong>Shipping Handling</strong></a> — Rules for calculating shipping &amp; handling charges</li>\r\n 	<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Tax.html\" target=\"acmhelp\" rel=\"noopener\"><i class=\"fas fa-percent\" style=\"font-size: 200%; margin-top: 16px;\"></i>    <strong>Tax</strong></a> — Sales tax rules for shipping and pickup orders</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','More new Administration folders','','pending','closed','open','','more-new-administration-folders','','','2022-08-14 16:12:10','2022-08-14 23:12:10','',0,'https://activeclubsolutions.net/?p=3961',0,'post','',0),
(3964,6,'2021-11-09 07:19:14','2021-11-09 15:19:14','<img src=\"https://www.secureclub.net/images/activeclubmgmt/addmembers.png\"/>\r\n\r\n<hr />\r\n\r\nWhen new members join a club, you can set up their individual selection profiles by copying the default product choices defined in the current club run, using the command <a href=\"https://www.secureclub.net/Help/amo/?ml_ClubData.html#defaults\" target=\"acmhelp\" rel=\"noopener\"><b>Distribute Package as Selection</b></a>.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Adding members to a club run','','pending','closed','open','','adding-members-to-a-club-run','','','2022-08-14 16:11:53','2022-08-14 23:11:53','',0,'https://activeclubsolutions.net/?p=3964',0,'post','',0),
(3965,0,'2021-11-09 15:19:14','2021-11-09 15:19:14','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/breaking_news.jpg\"></h1>\n<p>&lt;!--\n\n\n<h1><i class=\"fas fa-running\" style=\"font-size:400%\"></i></h1>\n\n\n\n\n<h1><img style=\"margin-top: -20px\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\" /></h1>\n\n\n--&gt;</p>\n<hr><p>When new members join a club, you can set up their individual selection profiles by copying the default product choices defined in the current club run, using the command <a href=\"https://www.secureclub.net/Help/amo/?ml_ClubData.html#defaults\" target=\"acmhelp\" rel=\"noopener\"><b>Distribute Package as Selection</b></a>.</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/adding-members-to-a-club-run/\">Adding members to a club run</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Adding members to a club run','When new members join a club, you can set up their individual selection profiles by copying the default product choices defined in the current club run, using the command Distribute Package as Selection. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Adding members to a club run appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','adding-members-to-a-club-run','','','2021-11-09 15:19:14','2021-11-09 15:19:14','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3965',0,'wprss_feed_item','',0),
(3966,0,'2021-11-09 14:48:09','2021-11-09 14:48:09','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/breaking_news.jpg\"></h1>\n<p>&lt;!--\n\n\n<h1><i class=\"fas fa-cogs\" style=\"font-size:400%\"></i></h1>\n\n\n\n\n<h1><img style=\"margin-top: -20px\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\" /></h1>\n\n\n--&gt;</p>\n<hr><p>More new folders in the  <i class=\"fas fa-cogs\"></i>  <a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList.html\" target=\"acmhelp\" rel=\"noopener\">Administration drawer</a>:</p>\n<ul><li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Locations.html\" target=\"acmhelp\" rel=\"noopener\"><i class=\"fas fa-map-marker-alt\"></i>    <strong>Locations</strong></a> — Maintain the list of available stock locations</li>\n<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Drawer.html\" target=\"acmhelp\" rel=\"noopener\"><i class=\"fas fa-hand-holding-usd\"></i>    <strong>Cash Drawer</strong></a> — Set up opening quantities of bills and coins in drawer</li>\n<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Ship.html\" target=\"acmhelp\" rel=\"noopener\"><i class=\"fas fa-ship\"></i>    <strong>Shipping Handling</strong></a> — Rules for calculating shipping &amp; handling charges</li>\n<li><a href=\"https://www.secureclub.net/Help/amo/?ml_AdminList-Tax.html\" target=\"acmhelp\" rel=\"noopener\"><i class=\"fas fa-percent\"></i>    <strong>Tax</strong></a> — Sales tax rules for shipping and pickup orders</li>\n</ul><hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/more-new-administration-folders/\">More new Administration folders</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','More new Administration folders','More new folders in the    Administration drawer:     Locations — Maintain the list of available stock locations     Cash Drawer — Set up opening quantities of bills and coins in drawer     Shipping Handling — Rules for calculating shipping & handling charges     Tax — Sales tax rules for shipping and pickup orders The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post More new Administration folders appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','more-new-administration-folders','','','2021-11-09 14:48:09','2021-11-09 14:48:09','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3966',0,'wprss_feed_item','',0),
(3971,6,'2021-12-06 13:13:04','2021-12-06 21:13:04','<h1><i class=\"fas fa-images\" style=\"font-size: 130%;\"></i>  </h1>\r\n\r\n<hr />\r\n\r\n<img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/Help/amo/pix/dlgImageList.png\" align=\"right\" />To manage the images used for products, packages, and marketing e-mail, the <a href=\"https://secureclub.net/Help/amo/?ml_ImagesList.html\" target=\"acmhelp\" rel=\"noopener\">Images drawer</a> now lets you create folders and upload files to the Image Library.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\r\n<!--\r\n<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/breaking_news.jpg\" /></h1>\r\n-->','Image library management','','pending','closed','open','','image-library-management','','','2022-08-14 16:12:02','2022-08-14 23:12:02','',0,'https://activeclubsolutions.net/?p=3971',0,'post','',0),
(3973,0,'2021-12-06 21:13:04','2021-12-06 21:13:04','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/breaking_news.jpg\"></h1>\n<hr><p><img src=\"https://www.secureclub.net/Help/amo/pix/dlgImageList.png\" align=\"right\"><i class=\"fas fa-images\"></i>  To manage the images used for products, packages, and marketing e-mail, the <a href=\"https://secureclub.net/Help/amo/ml_ImagesList.html\" target=\"acmhelp\" rel=\"noopener\">Images drawer</a> now lets you create folders and upload files to the Image Library.</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/image-library-management/\">Image library management</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Image library management','  To manage the images used for products, packages, and marketing e-mail, the Images drawer now lets you create folders and upload files to the Image Library. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Image library management appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','image-library-management','','','2021-12-06 21:13:04','2021-12-06 21:13:04','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3973',0,'wprss_feed_item','',0),
(3981,2,'2021-12-26 05:05:24','2021-12-26 13:05:24','<img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/QBmanufacturing.gif\" />\r\n\r\n<hr />\r\n\r\nWatch the Activ8Cloud video on QuickBooks unearned revenue.\r\n\r\nhttps://player.vimeo.com/video/660302973\r\n\r\n<hr />\r\n\r\nRead about unearned revenue in the <a href=\"https://www.secureclub.net/Help/qba/?qba_acm_ifset2.htm#unearned\" target=\"a8post\" rel=\"noopener\">QuickBooks Integration Guide</a>.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce / Active Club Solutions, Inc.</p>','QuickBooks Unearned Revenue','','pending','closed','open','','unearnedrevenue','','','2022-08-14 16:11:41','2022-08-14 23:11:41','',0,'https://activeclubsolutions.net/?p=3981',0,'post','',0),
(3982,2,'2021-12-26 19:52:52','2021-12-27 03:52:52','<iframe title=\"Cloud Webinar - Choice Clubs\" src=\"https://player.vimeo.com/video/563868685?h=b01bdf1d8a&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','4f04592df24c0da579893b03be4ab00d','','','2021-12-26 19:52:52','2021-12-27 03:52:52','',0,'https://activeclubsolutions.net/4f04592df24c0da579893b03be4ab00d/',0,'oembed_cache','',0),
(3983,2,'2021-12-26 19:54:15','2021-12-27 03:54:15','<iframe title=\"Unearned Revenue Demonstration\" src=\"https://player.vimeo.com/video/660302973?h=1564098fe3&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','c1a2a28212ca4aa1d6f36ee296bb3064','','','2021-12-26 19:54:15','2021-12-27 03:54:15','',0,'https://activeclubsolutions.net/c1a2a28212ca4aa1d6f36ee296bb3064/',0,'oembed_cache','',0),
(3985,0,'2021-12-27 03:54:24','2021-12-27 03:54:24','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/QBmanufacturing.gif\"></h1>\n<h2>Bulletin Date: December 26th, 2021</h2>\n<p></p>\n<hr><p>\nWatch the Activ8Cloud video on QuickBooks unearned revenue.</p>\n<p></p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce / Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/unearnedrevenue/\">QuickBooks Unearned Revenue</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','QuickBooks Unearned Revenue','Bulletin Date: December 26th, 2021 Watch the Activ8Cloud video on QuickBooks unearned revenue. The Λctiv8 Team © 2021 Λctiv8Commerce / Active Club Solutions, Inc.\nThe post QuickBooks Unearned Revenue appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','quickbooks-unearned-revenue','','','2021-12-27 03:54:24','2021-12-27 03:54:24','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=3985',0,'wprss_feed_item','',0),
(3994,2,'2021-12-31 11:17:02','2021-12-31 19:17:02','<img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/quickbooksactiv8.jpg\"/>\r\n<br>\r\n<hr>\r\n<br>\r\nWatch the Activ8Cloud video on QuickBooks sales and other taxes.\r\n\r\nhttps://player.vimeo.com/video/661378889\r\n\r\n<hr>\r\nThe &Lambda;ctiv8 Team<br>\r\n<p align=\"left\" style=\"font-size: 80%\">&copy; 2021 &Lambda;ctiv8Commerce / Active Club Solutions, Inc.</p>\r\n','QuickBooks Sales and Other Taxes','','pending','closed','open','','quickbooks-sales-and-other-taxes','','','2022-08-14 16:11:17','2022-08-14 23:11:17','',0,'https://activeclubsolutions.net/?p=3994',0,'post','',0),
(3995,2,'2021-12-31 11:16:35','2021-12-31 19:16:35','<iframe title=\"Sales and Other Tax Demonstration\" src=\"https://player.vimeo.com/video/661378889?h=9cdf2962ba&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','57d62104796c6e6e20e13ab34a15e4b9','','','2021-12-31 11:16:35','2021-12-31 19:16:35','',0,'https://activeclubsolutions.net/57d62104796c6e6e20e13ab34a15e4b9/',0,'oembed_cache','',0),
(3997,2,'2021-12-31 05:05:05','2021-12-31 13:05:05','<img src=\"https://www.secureclub.net/images/activeclubmgmt/resizeimages.png\"/>\r\n\r\nActiv8 Cloud now allows for the resizing of images.  Multiple sized files can be done based on <a href=\"https://www.secureclub.net/Help/amo/?ml_ImagesList.html#template_resize\" target=\"a8post\" rel=\"noopener\">theme selection</a>.  In the HTML editor, images are <a href=\"https://www.secureclub.net/Help/amo/?ml_TemplateData.html#content\" rel=\"noopener\" target=\"a8post\">resized to your wishes</a> automatically.','Resizing of Images','','pending','closed','open','','resizing-of-images','','','2022-08-13 23:35:14','2022-08-14 06:35:14','',0,'https://activeclubsolutions.net/?p=3997',0,'post','',0),
(3998,2,'2021-12-31 11:33:17','2021-12-31 19:33:17','{{unknown}}','','','publish','closed','closed','','59e4540372b908241ba12a23eff01178','','','2021-12-31 11:33:17','2021-12-31 19:33:17','',0,'https://activeclubsolutions.net/59e4540372b908241ba12a23eff01178/',0,'oembed_cache','',0),
(4001,0,'2021-12-31 19:35:05','2021-12-31 19:35:05','<p><img src=\"https://www.secureclub.net/images/activeclubmgmt/resizeimages.png\"></p>\n<p>Activ8 Cloud now allows for the resizing of images.  Multiple sized files can be done based on theme selection.  In the HTML editor images are resized to your wishes automatically.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/resizing-of-images/\">Resizing of Images</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Resizing of Images','Activ8 Cloud now allows for the resizing of images. Multiple sized files can be done based on theme selection. In the HTML editor images are resized to your wishes automatically.\nThe post Resizing of Images appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','resizing-of-images','','','2021-12-31 19:35:05','2021-12-31 19:35:05','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4001',0,'wprss_feed_item','',0),
(4002,0,'2021-12-31 19:17:02','2021-12-31 19:17:02','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/QBmanufacturing.gif\"></h1>\n<p></p>\n<hr><p>\nWatch the Activ8Cloud video on QuickBooks sales and other taxes.</p>\n<p></p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce / Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/quickbooks-sales-and-other-taxes/\">QuickBooks Sales and Other Taxes</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','QuickBooks Sales and Other Taxes','Watch the Activ8Cloud video on QuickBooks sales and other taxes. The Λctiv8 Team © 2021 Λctiv8Commerce / Active Club Solutions, Inc.\nThe post QuickBooks Sales and Other Taxes appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','quickbooks-sales-and-other-taxes','','','2021-12-31 19:17:02','2021-12-31 19:17:02','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4002',0,'wprss_feed_item','',0),
(4005,2,'2021-12-31 05:05:00','2021-12-31 13:05:00','<img src=\"https://www.secureclub.net/images/activeclubmgmt/ipad-pos-2-screens-new-smaill.png\"/>\r\n\r\nUpdated Worldpay SDK to the latest version.  This version will update the firmware on their card readers so that they can process payments','POS WorldPay Update','','pending','closed','open','','4005-2','','','2022-08-13 23:33:08','2022-08-14 06:33:08','',0,'https://activeclubsolutions.net/?p=4005',0,'post','',0),
(4007,0,'2021-12-31 21:39:00','2021-12-31 21:39:00','<p><img src=\"https://www.secureclub.net/images/activeclubmgmt/POSfolding.png\"></p>\n<p>Updated Worldpay SDK to the latest version.  This version will update the firmware on their card readers so that they can process payments</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/4005-2/\">POS WorldPay Update</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','POS WorldPay Update','Updated Worldpay SDK to the latest version. This version will update the firmware on their card readers so that they can process payments\nThe post POS WorldPay Update appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','pos-worldpay-update','','','2021-12-31 21:39:00','2021-12-31 21:39:00','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4007',0,'wprss_feed_item','',0),
(4015,2,'2021-01-04 15:15:11','2021-01-04 23:15:11','<img src=\"https://www.secureclub.net/images/activeclubmgmt/smallcart.png\"/>\r\n\r\nUpdates to shopping cart and other web tools.\r\n\r\n1.	If a customer wants to just buy merchandise or something that isn’t wine or spirits then it will now create the transaction in the backend for all shipping states.  If they have Wine (defined in INVENTORY.CATEGORY) in their cart then it will check to see if the shipping state is found in the Selection list with type ‘Ship State’ and will then create the transaction.  If it is not found in that list the customer will see a message popup that tells them that Wine cannot be shipping to that state, then they’ll will be taken from checkout back to the cart where they can remove the wine from their order.  The same goes for Spirits or Liquor, but it looks to see if the shipping state is included in the selection list with type ‘LS States’.\r\n2.	Removed the Update Choices button in the selection cart.  The Save Choices button remains at the bottom and will perform both the updating of the choices in the browser and saving them to the database.\r\n3.	If a choice member logs in and selects member choice it will bring them directly to the cart instead of the catalog if they already have choices saved.\r\n4.	eComm Plus when a member was logged in would always give them the ‘Has been merged popup’ even when they had nothing to merge with.  This has been fixed.  Thomas will be happy about this one.\r\n5.	Our Frames when loading would always blink in and out as they were loading making for an awkward experience.  This has been fixed but it took a long time to figure out because every time I thought I had it fixed it I would test different scenarios and find out that the fix broke a different scenario. \r\n6.	I’ve added a new option on the Inventory Stock general tab that adds the inventory onhand and available from other locations other than the location used for cart orders to be used in determining how many items are left to be sold on the cart.  Ex.  Let’s say they are using the Warehouses stock items to be sold on the cart,  but let’s say they want the stock items in the tasting room to also be available to be sold on the cart.  If they would like this to happen then The Warehouse stock item will have the Display on Cart checked and then they would check the new option on the Tasting Room stock item.  \r\na.	5 Cabernets are available in the warehouse.\r\nb.	5 Cabernets are available in the tasting room.\r\nc.	Cart will show that 10 Cabernets are available.\r\nd.	Customer orders 7 Cabernets from the cart.\r\ne.	Order is saved in database.\r\nf.	Order is charged.\r\ng.	7 Cabernets are allocated in the warehouse stock item\r\nh.	-2 Cabernets are now available in the warehouse stock item\r\ni.	User needs to transfer 2 cabs from the tasting room to the warehouse in order to fulfill the cart order.  This is manual and is not done automatically because the inventory needs to be physically retrieved from the tasting room to fulfill the order. \r\n','Shopping Cart Updates','','pending','closed','open','','shopping-cart-updates','','','2022-08-14 20:28:47','2022-08-15 03:28:47','',0,'https://activeclubsolutions.net/?p=4015',0,'post','',0),
(4017,0,'2022-01-04 23:15:11','2022-01-04 23:15:11','<p><img src=\"https://www.secureclub.net/images/activeclubmgmt/smallcart.png\"></p>\n<p>Updates to shopping cart and other web tools.</p>\n<p>1.	If a customer wants to just buy merchandise or something that isn’t wine or spirits then it will now create the transaction in the backend for all shipping states.  If they have Wine (defined in INVENTORY.CATEGORY) in their cart then it will check to see if the shipping state is found in the Selection list with type ‘Ship State’ and will then create the transaction.  If it is not found in that list the customer will see a message popup that tells them that Wine cannot be shipping to that state, then they’ll will be taken from checkout back to the cart where they can remove the wine from their order.  The same goes for Spirits or Liquor, but it looks to see if the shipping state is included in the selection list with type ‘LS States’.<br>\n2.	Removed the Update Choices button in the selection cart.  The Save Choices button remains at the bottom and will perform both the updating of the choices in the browser and saving them to the database.<br>\n3.	If a choice member logs in and selects member choice it will bring them directly to the cart instead of the catalog if they already have choices saved.<br>\n4.	eComm Plus when a member was logged in would always give them the ‘Has been merged popup’ even when they had nothing to merge with.  This has been fixed.  Thomas will be happy about this one.<br>\n5.	Our Frames when loading would always blink in and out as they were loading making for an awkward experience.  This has been fixed but it took a long time to figure out because every time I thought I had it fixed it I would test different scenarios and find out that the fix broke a different scenario.<br>\n6.	I’ve added a new option on the Inventory Stock general tab that adds the inventory onhand and available from other locations other than the location used for cart orders to be used in determining how many items are left to be sold on the cart.  Ex.  Let’s say they are using the Warehouses stock items to be sold on the cart,  but let’s say they want the stock items in the tasting room to also be available to be sold on the cart.  If they would like this to happen then The Warehouse stock item will have the Display on Cart checked and then they would check the new option on the Tasting Room stock item.<br>\na.	5 Cabernets are available in the warehouse.<br>\nb.	5 Cabernets are available in the tasting room.<br>\nc.	Cart will show that 10 Cabernets are available.<br>\nd.	Customer orders 7 Cabernets from the cart.<br>\ne.	Order is saved in database.<br>\nf.	Order is charged.<br>\ng.	7 Cabernets are allocated in the warehouse stock item<br>\nh.	-2 Cabernets are now available in the warehouse stock item<br>\ni.	User needs to transfer 2 cabs from the tasting room to the warehouse in order to fulfill the cart order.  This is manual and is not done automatically because the inventory needs to be physically retrieved from the tasting room to fulfill the order. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/shopping-cart-updates/\">Shopping Cart Updates</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Shopping Cart Updates','Updates to shopping cart and other web tools. 1. If a customer wants to just buy merchandise or something that isn’t wine or spirits then it will now create the transaction in the backend for all shipping states. If they have Wine (defined in INVENTORY.CATEGORY) in their cart then it will check to see if […]\nThe post Shopping Cart Updates appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','shopping-cart-updates','','','2022-01-04 23:15:11','2022-01-04 23:15:11','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4017',0,'wprss_feed_item','',0),
(4019,2,'2022-01-23 05:05:49','2022-01-23 13:05:49','<img src=\"https://www.secureclub.net/images/activeclubmgmt/cropimage.png\"/>\r\n\r\nActiv8 Cloud now allows for the cropping of images.  Images can be cropped based on <a href=\"https://www.secureclub.net/Help/amo/?ml_ImagesList.html#template_resize\" target=\"a8post\" rel=\"noopener\">theme selection</a>.  \r\n\r\nWatch the <a href=\"https://player.vimeo.com/video/669275646\">video</a>','Cropping of Images','','pending','closed','open','','cropping-images','','','2022-08-13 23:32:42','2022-08-14 06:32:42','',0,'https://activeclubsolutions.net/?p=4019',0,'post','',0),
(4021,0,'2022-01-24 04:48:49','2022-01-24 04:48:49','<p><img src=\"https://www.secureclub.net/images/activeclubmgmt/cropimage.png\"></p>\n<p>Activ8 Cloud now allows for the cropping of images.  Images can be cropped based on <a href=\"https://www.secureclub.net/Help/amo/?ml_ImagesList.html#template_resize\" target=\"a8post\" rel=\"noopener\">theme selection</a>.  </p>\n<p>Watch the <a href=\"https://player.vimeo.com/video/669275646\">video</a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/cropping-images/\">Cropping of Images</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Cropping of Images','Activ8 Cloud now allows for the cropping of images. Images can be cropped based on theme selection. Watch the video\nThe post Cropping of Images appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','cropping-of-images','','','2022-01-24 04:48:49','2022-01-24 04:48:49','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4021',0,'wprss_feed_item','',0),
(4029,2,'2020-03-30 05:05:01','2020-03-30 12:05:01','<img src=\"https://www.secureclub.net/images/activeclubmgmt/spade.png\"/>\r\n\r\nActiv8 Cloud now allows you to configure your clubs and club web site settings.  ','Club Setup','','pending','closed','open','','club-setup','','','2022-08-14 20:28:55','2022-08-15 03:28:55','',0,'https://activeclubsolutions.net/?p=4029',0,'post','',0),
(4030,0,'2022-03-30 19:42:01','2022-03-30 19:42:01','<p><img src=\"https://www.secureclub.net/images/activeclubmgmt/spade.png\"></p>\n<p>Activ8 Cloud now allows you to configure your clubs and club web site settings.  </p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/club-setup/\">Club Setup</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Club Setup','Activ8 Cloud now allows you to configure your clubs and club web site settings.\nThe post Club Setup appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','club-setup','','','2022-03-30 19:42:01','2022-03-30 19:42:01','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4030',0,'wprss_feed_item','',0),
(4034,0,'2022-03-31 04:07:04','2022-03-31 04:07:04','<p><img src=\"https://www.secureclub.net/images/activeclubmgmt/bigbadbug.png\"></p>\n<p>Activ8 Cloud label printing problem – only one label prints.  We were checking the <i>“Print”</i> button state to avoid double printing and that change introduced this big bad bug.  At least he was not a one eyed, one eared, flying purple people eater.</p>\n<p>Ver 2022.3.170</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/club-setup-2/\">Label Printing Bug Fixed</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Label Printing Bug Fixed','Activ8 Cloud label printing problem – only one label prints. We were checking the “Print” button state to avoid double printing and that change introduced this big bad bug. At least he was not a one eyed, one eared, flying purple people eater. Ver 2022.3.170\nThe post Label Printing Bug Fixed appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','label-printing-bug-fixed','','','2022-03-31 04:07:04','2022-03-31 04:07:04','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4034',0,'wprss_feed_item','',0),
(4037,2,'2022-04-09 09:34:18','2022-04-09 16:34:18','<img src=\"https://www.secureclub.net/images/activeclubmgmt/activ8-ecomm-plus-200px.png\"/>\r\n\r\nActiv8 Cloud eCommerce products receive a major upgrade.\r\n\r\n1.	After hearing from our current eCommPLUS customers we have reinstituted the ability to base the initial sorting of products on a field defined in the Frame Configuration record.  This means you have more control on how your customers see your products when they first see your catalog.  Your customers will still have the ability to change the sort if they so desire.\r\n2.	The Cart Text Line defined in the inventory record will now display not only in the catalog but also on the detail page of each product.  This is useful as a way to notify your customers of benefits to signing up before buying your products.\r\n3.	A Sign-In and Sign-Out feature directly in the Menu to allow an easier way for your customers to sign-in and sign-out of their account.  These functions will be recognized on every page on your site. Ex. Account, Member Choice, and Checkout pages.\r\n4.	Smoother navigation and communication between the pages.\r\n5.	We have completed a detailed help guide to help you better understand and maintain your website.\r\n6.	In order to continue to offer proper persistence and stop requiring you to not cache your pages we have moved over to using cookies to store the information needed to give your customers a smoother buying experience.\r\n7.	The continue shopping button on the slide in cart will no longer redirect to the main shop page if you are currently on any of the catalog pages but will just rather hide and let you continue shopping.\r\n8.	The category pages will now display the description value entered into the heading record at the top of the page so your customers will easily see a description of the categories products that they are viewing. \r\n9.	The Load More button at the bottom of your products will no longer scroll to the bottom of the page when being click but will stay at the spot of the page so the user will not have to scroll back up to find where they left off.\r\n10.	The text displayed in the slide in cart is now editable in the frame configuration record.\r\n11.	All of these feature enhancements are in additional to the many enhancements to the checkout process that was rolled out on 4/18/2022.\r\n','eComm Products - Major Upgrade','','pending','closed','open','','ecomm-products-major-upgrade','','','2022-08-13 23:31:54','2022-08-14 06:31:54','',0,'https://activeclubsolutions.net/?p=4037',0,'post','',0),
(4039,0,'2022-03-31 16:34:18','2022-03-31 16:34:18','<p><img src=\"https://www.secureclub.net/images/activeclubmgmt/activ8-ecomm-plus-200px.png\"></p>\n<p>Activ8 Cloud eCommerce products receive a major upgrade.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/ecomm-products-major-upgrade/\">eComm Products – Major Upgrade</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','eComm Products – Major Upgrade','Activ8 Cloud eCommerce products receive a major upgrade.\nThe post eComm Products – Major Upgrade appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','ecomm-products-major-upgrade','','','2022-03-31 16:34:18','2022-03-31 16:34:18','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4039',0,'wprss_feed_item','',0),
(4043,2,'2022-04-23 21:53:04','2022-04-24 04:53:04','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/cloudtools.gif\" /></h1>\r\n\r\n<hr />\r\n\r\nNew to Λctiv8 Cloud - <a href=\"https://www.secureclub.net/Help/amo/index.html?ml_Templates-Custom.html#add\">email layouts</a>.\r\n\r\n<a href=\"https://player.vimeo.com/video/702255574\" target=\"_blank\" rel=\"noopener\"></a>\r\n<a>For a tutorial video, see <a href=\"https://player.vimeo.com/video/702255574\" target=\"_blank\" rel=\"noopener\">https://player.vimeo.com/video/702255574</a>.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2022 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Cloud - Email Layouts','','publish','closed','open','','email-layouts','','','2023-04-06 04:37:18','2023-04-06 11:37:18','',0,'https://activeclubsolutions.net/?p=4043',0,'post','',0),
(4045,0,'2022-04-24 04:53:04','2022-04-24 04:53:04','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/cloudtools.gif\"></h1>\n<hr><p>New to Λctiv8 Cloud – <a href=\"https://www.secureclub.net/Help/amo/ml_Templates-Custom.html#add\">email layouts</a>.</p>\n<p><a href=\"https://player.vimeo.com/video/702255574\" target=\"_blank\" rel=\"noopener\"></a><br><a>For a tutorial video, see </a><a href=\"https://player.vimeo.com/video/702255574\" target=\"_blank\" rel=\"noopener\">https://player.vimeo.com/video/702255574</a>.</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2022 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/email-layouts/\">Email Layouts</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Email Layouts','New to Λctiv8 Cloud – email layouts. For a tutorial video, see https://player.vimeo.com/video/702255574. The Λctiv8 Team © 2022 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Email Layouts appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','email-layouts','','','2022-04-24 04:53:04','2022-04-24 04:53:04','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4045',0,'wprss_feed_item','',0),
(4050,2,'2022-06-01 16:18:15','2022-06-01 23:18:15','<h1><a href=\"https://player.vimeo.com/video/707078503\" target=\"_blank\" rel=\"noopener\"><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/a8cloudintro.gif\" /></a></h1>\r\n\r\n<hr />\r\n\r\nView the demonstration video: <a href=\"https://player.vimeo.com/video/707078503\" target=\"_blank\" rel=\"noopener\">https://player.vimeo.com/video/707078503</a>.\r\n\r\nSee the Activ8 Cloud <a href=\"https://www.secureclub.net/Help/amo/index.html\"><i>User\'s Guide</i></a>.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2022 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Introduction to Activ8 Cloud','','publish','closed','open','','introduction-to-activ8-cloud','','','2023-01-23 12:30:31','2023-01-23 20:30:31','',0,'https://activeclubsolutions.net/?p=4050',0,'post','',0),
(4052,0,'2022-06-01 23:18:15','2022-06-01 23:18:15','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/a8cloudintro.gif\"></h1>\n<hr><p>Our manual – <a href=\"https://www.secureclub.net/Help/amo/index.html\">Activ8 Cloud</a>.</p>\n<p><a href=\"https://player.vimeo.com/video/707078503\" target=\"_blank\" rel=\"noopener\"></a><br><a>For a tutorial video, see </a><a href=\"https://player.vimeo.com/video/707078503\" target=\"_blank\" rel=\"noopener\">https://player.vimeo.com/video/707078503</a>.</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2022 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/introduction-to-activ8-cloud/\">Introduction to Activ8 Cloud</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Introduction to Activ8 Cloud','Our manual – Activ8 Cloud. For a tutorial video, see https://player.vimeo.com/video/707078503. The Λctiv8 Team © 2022 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Introduction to Activ8 Cloud appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','introduction-to-activ8-cloud','','','2022-06-01 23:18:15','2022-06-01 23:18:15','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4052',0,'wprss_feed_item','',0),
(4058,2,'2023-03-15 20:36:50','2023-03-16 03:36:50','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\" /></h1>\r\n\r\n<hr />\r\n\r\n1; Customer search NOTES=xzy did not work  - but NOTES=xyz NOTES=abc did work - NOTES=xyz AND NOTES=abc did work – Freddy NOTES=xyz NOTES=abc did work.\r\n\r\n2; \"Deliver” missing from Customer Pageview.\r\n\r\n3; Added a translation for 1. Product Category 2. Product wine type (used only if a Alcohol+Wine translation exists).  These functions on ADD product in Cloud.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8Cloud Version 2023.3.221 Released','','publish','closed','open','','version-2023-3-221-released','','','2023-03-19 21:07:41','2023-03-20 04:07:41','',0,'https://activeclubsolutions.net/?p=4058',0,'post','',0),
(4060,0,'2022-08-09 03:36:50','2022-08-09 03:36:50','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/news-bulletin.png\"></h1>\n<hr><p>Minor defect fixes and minor improvements.</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/version-2022-8-177-released/\">Version 2022.8.177 Released</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Version 2022.8.177 Released','Minor defect fixes and minor improvements. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Version 2022.8.177 Released appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','version-2022-8-177-released','','','2022-08-09 03:36:50','2022-08-09 03:36:50','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4060',0,'wprss_feed_item','',0),
(4061,0,'2022-08-09 03:29:20','2022-08-09 03:29:20','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"></h1>\n<hr><p>New folder in the Club Drawing.  Club Statistics.</p>\n<p>New quick button in the Club Run page view – Club Statistics</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/club-statistics/\">Club Statistics</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Club Statistics','New folder in the Club Drawing. Club Statistics. New quick button in the Club Run page view – Club Statistics The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Club Statistics appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','club-statistics','','','2022-08-09 03:29:20','2022-08-09 03:29:20','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4061',0,'wprss_feed_item','',0),
(4063,2,'2022-08-14 21:01:44','2022-08-15 04:01:44','<iframe title=\"Web Tools - Signup Kiosk\" src=\"https://player.vimeo.com/video/309048103?h=de913875e7&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','7ca3fe6281b25a34e46ed8186a192284','','','2022-08-14 21:01:44','2022-08-15 04:01:44','',0,'https://activeclubsolutions.net/7ca3fe6281b25a34e46ed8186a192284/',0,'oembed_cache','',0),
(4064,2,'2022-08-14 21:01:45','2022-08-15 04:01:45','<iframe title=\"Marketing Tools - Unsubscribe\" src=\"https://player.vimeo.com/video/305177473?h=e027ec5f1c&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','15c2813838f4c17ad30eb197f13012c1','','','2022-08-14 21:01:45','2022-08-15 04:01:45','',0,'https://activeclubsolutions.net/15c2813838f4c17ad30eb197f13012c1/',0,'oembed_cache','',0),
(4065,2,'2022-08-14 21:01:45','2022-08-15 04:01:45','{{unknown}}','','','publish','closed','closed','','0bd8e77237de7c17c04969433a5f2d7b','','','2022-08-14 21:01:45','2022-08-15 04:01:45','',0,'https://activeclubsolutions.net/0bd8e77237de7c17c04969433a5f2d7b/',0,'oembed_cache','',0),
(4066,2,'2022-08-14 21:01:46','2022-08-15 04:01:46','<iframe title=\"Sales and Marketing POS Video\" src=\"https://player.vimeo.com/video/297431840?h=9a145d4cb9&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','c85787bc776f190873a1036a0a676ce0','','','2022-08-14 21:01:46','2022-08-15 04:01:46','',0,'https://activeclubsolutions.net/c85787bc776f190873a1036a0a676ce0/',0,'oembed_cache','',0),
(4067,2,'2022-08-14 21:02:45','2022-08-15 04:02:45','<iframe title=\"Shopping Cart - Gift Cards\" src=\"https://player.vimeo.com/video/294987696?h=5516e3599c&amp;dnt=1&amp;app_id=122963\" width=\"1200\" height=\"675\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','b55b7b29dffe66ad5d79eebcc5f433ff','','','2022-08-14 21:02:45','2022-08-15 04:02:45','',0,'https://activeclubsolutions.net/b55b7b29dffe66ad5d79eebcc5f433ff/',0,'oembed_cache','',0),
(4068,2,'2022-08-14 21:03:54','2022-08-15 04:03:54','{{unknown}}','','','publish','closed','closed','','5d22fa921981d7371089ef9db68d6f6b','','','2022-08-14 21:03:54','2022-08-15 04:03:54','',0,'https://activeclubsolutions.net/5d22fa921981d7371089ef9db68d6f6b/',0,'oembed_cache','',0),
(4074,0,'2022-09-13 19:53:08','2022-09-13 19:53:08','<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td>\n<!-- content table begins -->\n<table align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td> </td>\n<td>\n<a href=\"https://activ8commerce.com/\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" width=\"620\" height=\"100\" alt=\"Activ8 Commerce\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/Activ8-Commerce-logo-wide.jpg\"></a></td>\n<td> </td>\n</tr><tr><td colspan=\"3\"><img loading=\"lazy\" width=\"1\" height=\"20\" alt=\"\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/spacer.gif\"></td>\n</tr><tr><td align=\"right\"> </td>\n<td>\n<img loading=\"lazy\" width=\"620\" height=\"455\" alt=\"Activ8 POS\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/Activ8-ipads-new-order-2022.jpg\"></td>\n<td align=\"left\"> </td>\n</tr><tr><td colspan=\"3\"><img loading=\"lazy\" width=\"1\" height=\"1\" alt=\"\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/spacer.gif\"></td>\n</tr><tr><td> </td>\n<td>\n<p>\nActiv8 Commerce is releasing the latest version of our Point of Sale <b>NEXT WEEK</b> with many new features to help speed up the checkout process!\n</p>\n<p>\n<b>Please note that if you do not want Activ8 Point of Sale automatically updating onto your iPads, you must turn off Auto Updates in the iPad’s iTunes and App Store settings.</b>\n</p>\n<p>\nActiv8 Point of Sale version 2022.9.177 Release Notes\n</p>\n<ul><li>The “New Order” screen now has the option to show product icons for easier selection of items.</li>\n<li>Checkout screens have been updated with easier tip selection and receipt options selectable in POS Configuration settings.</li>\n<li>Sending text message receipts is now an option. If you would like to use this feature, please e-mail your request to support@activeclubsolutions.com and we will set it up.</li>\n<li>Customers can now easily view their order from the tip screen.</li>\n<li>A switch is now available that calculates suggested tips based on the order’s pre-discounted sub-total instead of the after-discount price.</li>\n<li>Support has been added for the Lane 3000 and Chipper 3x credit card readers for Worldpay customers.</li>\n<li>Support has been added for the contactless-capable Chipper 2x credit card reader for Open Edge customers (Open Edge does not support the 2x reader within their OpenEdge Mobile App).</li>\n</ul><p>\nPlease click on the following link to view a brief video of these features: <a href=\"https://player.vimeo.com/video/749028821?h=886bbd9d97\">Release Notes Video</a>\n</p>\n</td></tr><tr><td colspan=\"3\"><img loading=\"lazy\" width=\"1\" height=\"45\" alt=\"\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/spacer.gif\"></td>\n</tr><tr><td> </td>\n<td>\n<a href=\"https://activ8commerce.com/\"><img alt=\"Activ8 Commerce Complete End-to-End System\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/Activ8-Commerce-Complete-End-to-End-System.jpg\"></a>\n<div> </div>\n</td>\n<td> </td>\n</tr></tbody></table></td>\n</tr><tr><td align=\"center\">\n<div> </div>\n<div>  </div>\n<div>\n                    <strong>For all the latest on Special Offers, Important POS Software Releases, and<br>Informative Articles on Sales in both the Winery and Distillery Industries<br>\nFollow Us <a href=\"https://www.facebook.com/ActiveClubSolutions/\" target=\"_blank\" rel=\"noopener\">Facebook</a> ~ <a href=\"https://www.linkedin.com/company/activ8-commerce/\" target=\"_blank\" rel=\"noopener\">LinkedIn</a> </strong>\n                    </div>\n<div> </div>\n<div>  </div>\n</td>\n</tr></tbody></table><p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-pos-release-2022-9-177/\">Activ8 POS Release 2022.9.177</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 POS Release 2022.9.177','          Activ8 Commerce is releasing the latest version of our Point of Sale NEXT WEEK with many new features to help speed up the checkout process! Please note that if you do not want Activ8 Point of Sale automatically updating onto your iPads, you must turn off Auto Updates in the […]\nThe post Activ8 POS Release 2022.9.177 appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-pos-release-2022-9-177','','','2022-09-13 19:53:08','2022-09-13 19:53:08','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4074',0,'wprss_feed_item','',0),
(4080,2,'2022-10-28 22:44:34','2022-10-29 05:44:34','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/allocationgif2.gif\" /></h1>\r\n\r\n<hr />\r\n\r\nA year in the making, Extensive research of the need. Cloud now does <a href=\"https://www.secureclub.net/Help/amo/index.html?ml_ClubList-Alloc.html\" target=\"acmhelp\" rel=\"noopener\"><strong>Allocations</strong></a>.\r\n\r\n<a href=\"https://player.vimeo.com/video/770095795\" target=\"_blank\" rel=\"noopener\"></a>\r\n<a>For a tutorial video, see <a href=\"https://player.vimeo.com/video/770095795\" target=\"_blank\" rel=\"noopener\">https://player.vimeo.com/video/770095795</a>.\r\n\r\nView the &Lambda;ctiv8 Cloud <a href=\"https://www.secureclub.net/Help/amo/index.html\">user&#x02bc;s guide</a>.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2022 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Cloud - Allocations Released','','publish','closed','open','','coming-soon-to-activ8-cloud-allocations','','','2023-04-06 04:35:13','2023-04-06 11:35:13','',0,'https://activeclubsolutions.net/?p=4080',0,'post','',0),
(4083,0,'2022-10-29 05:44:34','2022-10-29 05:44:34','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/allocationgif.gif\"></h1>\n<hr><p>Our manual – <a href=\"https://www.secureclub.net/Help/amo/index.html\">Activ8 Cloud</a>.</p>\n<p><a>A year in the making, Extensive research of the need.  Cloud now does <i>Allocations</i></a>.</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2022 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/coming-soon-to-activ8-cloud-allocations/\">Coming Soon to Activ8 Cloud – Allocations</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Coming Soon to Activ8 Cloud – Allocations','Our manual – Activ8 Cloud. A year in the making, Extensive research of the need. Cloud now does Allocations. The Λctiv8 Team © 2022 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Coming Soon to Activ8 Cloud – Allocations appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','coming-soon-to-activ8-cloud-allocations','','','2022-10-29 05:44:34','2022-10-29 05:44:34','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4083',0,'wprss_feed_item','',0),
(4084,0,'2022-10-29 05:22:44','2022-10-29 05:22:44','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/forklift.gif\"></h1>\n<hr><p>Our manual – <a href=\"https://www.secureclub.net/Help/amo/index.html\">Activ8 Cloud</a>.</p>\n<p><a>Easy to use product movement interface in Cloud</a>.</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2022 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/coming-soon-in-activ8-cloud-product-movement/\">Coming Soon in Activ8 Cloud – Product Movement</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Coming Soon in Activ8 Cloud – Product Movement','Our manual – Activ8 Cloud. Easy to use product movement interface in Cloud. The Λctiv8 Team © 2022 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Coming Soon in Activ8 Cloud – Product Movement appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','coming-soon-in-activ8-cloud-product-movement','','','2022-10-29 05:22:44','2022-10-29 05:22:44','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4084',0,'wprss_feed_item','',0),
(4091,0,'2022-11-04 04:48:54','2022-11-04 04:48:54','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/labelprint.gif\"></h1>\n<hr><p>Easy-to-use label only orders in Cloud.  New order or create from existing order.</p>\n<p>View the Λctiv8 Cloud <a href=\"https://www.secureclub.net/Help/amo/index.html\">userʼs guide</a>.</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2022 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/coming-soon-activ8-cloud-easy-label-only-order/\">Coming Soon – Activ8 Cloud – easy label only order</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Coming Soon – Activ8 Cloud – easy label only order','Easy-to-use label only orders in Cloud. New order or create from existing order. View the Λctiv8 Cloud userʼs guide. The Λctiv8 Team © 2022 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Coming Soon – Activ8 Cloud – easy label only order appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','coming-soon-activ8-cloud-easy-label-only-order','','','2022-11-04 04:48:54','2022-11-04 04:48:54','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4091',0,'wprss_feed_item','',0),
(4094,2,'2022-11-06 22:29:22','2022-11-07 06:29:22','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/rfmp.gif\" /></h1>\r\n\r\n<hr />\r\n\r\nNew customer sales analysis tools available in Cloud.\r\n\r\n<a href=\"https://player.vimeo.com/video/771885896\" target=\"_blank\" rel=\"noopener\"></a>\r\n<a>For a tutorial video, see <a href=\"https://player.vimeo.com/video/771885896\" target=\"_blank\" rel=\"noopener\">https://player.vimeo.com/video/771885896</a>.\r\n\r\nView the &Lambda;ctiv8 Cloud <a href=\"https://www.secureclub.net/Help/amo/index.html\">user&#x02bc;s guide</a>.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2022 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Cloud - New Customer Sales Analysis Tools','','publish','closed','open','','activ8-cloud-new-customer-sales-analysis-tools','','','2022-11-16 23:12:42','2022-11-17 07:12:42','',0,'https://activeclubsolutions.net/?p=4094',0,'post','',0),
(4098,0,'2022-11-07 06:34:33','2022-11-07 06:34:33','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"></h1>\n<hr><p>The Activ8 Cloud community has spoken and we have listened.</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-cloud-verson/\">Activ8 Cloud Version 2022.11.197</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Cloud Version 2022.11.197','The Activ8 Cloud community has spoken and we have listened. The Λctiv8 Team © 2021 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Activ8 Cloud Version 2022.11.197 appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-cloud-version-2022-11-197','','','2022-11-07 06:34:33','2022-11-07 06:34:33','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4098',0,'wprss_feed_item','',0),
(4099,0,'2022-11-07 06:29:22','2022-11-07 06:29:22','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/productsales.gif\"></h1>\n<hr><p>New customer sales analysis tools available in Cloud.</p>\n<p>View the Λctiv8 Cloud <a href=\"https://www.secureclub.net/Help/amo/index.html\">userʼs guide</a>.</p>\n<hr><p>The Λctiv8 Team</p>\n<p align=\"left\">© 2022 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-cloud-new-customer-sales-analysis-tools/\">Activ8 Cloud – New Customer Sales Analysis Tools</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Cloud – New Customer Sales Analysis Tools','New customer sales analysis tools available in Cloud. View the Λctiv8 Cloud userʼs guide. The Λctiv8 Team © 2022 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Activ8 Cloud – New Customer Sales Analysis Tools appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-cloud-new-customer-sales-analysis-tools','','','2022-11-07 06:29:22','2022-11-07 06:29:22','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4099',0,'wprss_feed_item','',0),
(4108,2,'2023-03-15 21:49:34','0000-00-00 00:00:00','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\" /></h1>\r\n\r\n<hr />\r\n\r\nMinor improvements and fixes.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2021 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8Cloud Version 2022.8.177 Released','','draft','closed','open','','','','','2023-03-15 21:49:34','0000-00-00 00:00:00','',0,'https://activeclubsolutions.net/?p=4108',0,'post','',0),
(4110,0,'2023-03-16 03:36:50','2023-03-16 03:36:50','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"></h1>\n<hr>\n<p>1; Customer search NOTES=xzy did not work  – but NOTES=xyz NOTES=abc did work – NOTES=xyz AND NOTES=abc did work – Freddy NOTES=xyz NOTES=abc did work.</p>\n<p>2; Deliver” missing from Customer Pageview</p>\n<p>3; Added a translation for 1. Product Category 2. Product wine type (used only if a Alcohol+Wine translation exists).  These functions on ADD product in Cloud.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/version-2023-3-201-released/\">Activ8Cloud Version 2023.3.201 Released</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud Version 2023.3.201 Released','1; Customer search NOTES=xzy did not work – but NOTES=xyz NOTES=abc did work – NOTES=xyz AND NOTES=abc did work – Freddy NOTES=xyz NOTES=abc did work. 2; Deliver” missing from Customer Pageview 3; Added a translation for 1. Product Category 2. Product wine type (used only if a Alcohol+Wine translation exists). These functions on ADD product […]\nThe post Activ8Cloud Version 2023.3.201 Released appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud-version-2023-3-201-released','','','2023-03-16 03:36:50','2023-03-16 03:36:50','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4110',0,'wprss_feed_item','',0),
(4111,2,'2023-03-19 21:00:38','2023-03-20 04:00:38','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\" /></h1>\r\n\r\n<hr />\r\n\r\nNew Customer <em>Action</em> command \"<a href=\"https://www.secureclub.net/Help/amo/index.html?ml_PkgList.html#xactn\" target=\"acmhelp\" rel=\"noopener\">Create Sales Order(s) from a Package</a>\"\r\n\r\nCreate orders on the fly with only a package definition.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8Cloud Version 2023.3.222 Released','','publish','closed','open','','activ8cloud-version-2023-3-222-released','','','2023-04-09 20:18:51','2023-04-10 03:18:51','',0,'https://activeclubsolutions.net/?p=4111',0,'post','',0),
(4112,0,'2023-03-20 04:00:38','2023-03-20 04:00:38','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"></h1>\n<hr>\n<p>New Customer <em>Action</em> command “Create Sales Order(s) from a Package”</p>\n<p>Create orders on the fly with only a package definition.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8cloud-version-2023-3-222-released/\">Activ8Cloud Version 2023.3.222 Released</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud Version 2023.3.222 Released','New Customer Action command “Create Sales Order(s) from a Package” Create orders on the fly with only a package definition. The Λctiv8 Team © 2023 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Activ8Cloud Version 2023.3.222 Released appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud-version-2023-3-222-released','','','2023-03-20 04:00:38','2023-03-20 04:00:38','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4112',0,'wprss_feed_item','',0),
(4113,0,'2023-03-16 03:36:50','2023-03-16 03:36:50','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"></h1>\n<hr>\n<p>1; Customer search NOTES=xzy did not work  – but NOTES=xyz NOTES=abc did work – NOTES=xyz AND NOTES=abc did work – Freddy NOTES=xyz NOTES=abc did work.</p>\n<p>2; “Deliver” missing from Customer Pageview.</p>\n<p>3; Added a translation for 1. Product Category 2. Product wine type (used only if a Alcohol+Wine translation exists).  These functions on ADD product in Cloud.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/version-2023-3-221-released/\">Activ8Cloud Version 2023.3.221 Released</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud Version 2023.3.221 Released','1; Customer search NOTES=xzy did not work – but NOTES=xyz NOTES=abc did work – NOTES=xyz AND NOTES=abc did work – Freddy NOTES=xyz NOTES=abc did work. 2; “Deliver” missing from Customer Pageview. 3; Added a translation for 1. Product Category 2. Product wine type (used only if a Alcohol+Wine translation exists). These functions on ADD product […]\nThe post Activ8Cloud Version 2023.3.221 Released appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud-version-2023-3-221-released','','','2023-03-16 03:36:50','2023-03-16 03:36:50','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4113',0,'wprss_feed_item','',0),
(4114,2,'2023-03-20 22:23:26','2023-03-21 05:23:26','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\" /></h1>\r\n\r\n<hr />\r\n\r\nNew Customer <em>Action</em> command \"<a href=\"https://www.secureclub.net/Help/amo/index.html?ml_ClubList-Choice.html#xactn\" target=\"acmhelp\" rel=\"noopener\">Create Sales Order(s) from Customer Choices</a>\"\r\n\r\nCreate orders on the fly with only customer choice definitions.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8Cloud Version 2023.3.223 Released','','publish','closed','open','','activ8cloud-version-2023-3-223-released','','','2023-04-09 20:18:09','2023-04-10 03:18:09','',0,'https://activeclubsolutions.net/?p=4114',0,'post','',0),
(4115,0,'2023-03-21 05:23:26','2023-03-21 05:23:26','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/bulletin-square.png\"></h1>\n<hr>\n<p>New Customer <em>Action</em> command “Create Sales Order(s) from Customer Choices”</p>\n<p>Create orders on the fly with only customer choice definitions.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8cloud-version-2023-3-223-released/\">Activ8Cloud Version 2023.3.223 Released</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud Version 2023.3.223 Released','New Customer Action command “Create Sales Order(s) from Customer Choices” Create orders on the fly with only customer choice definitions. The Λctiv8 Team © 2023 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Activ8Cloud Version 2023.3.223 Released appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud-version-2023-3-223-released','','','2023-03-21 05:23:26','2023-03-21 05:23:26','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4115',0,'wprss_feed_item','',0),
(4121,2,'2023-03-29 12:29:32','2023-03-29 19:29:32','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/emailicon-250x150.png\" /></h1>\r\n\r\n<hr />\r\n\r\n<b>NEW!</b>&nbsp;<span style=\"font-size:150%;\"><a href=\"https://www.secureclub.net/Help/amo/index.html?ml_MktgList-Sked.html\" rel=\"noopener\" target=\"acmhelp\"><i>Scheduled Emails</i></a>&nbsp;</span> folder in <span style=\"font-size:150%;\"><b>&nbsp;Marketing&nbsp;</b></span> drawer\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8Cloud Version 2023.3.226 - Scheduled Emails','','publish','closed','open','','activ8cloud-version-2023-3-226-released-scheduled-emails','','','2023-03-30 05:20:51','2023-03-30 12:20:51','',0,'https://activeclubsolutions.net/?p=4121',0,'post','',0),
(4123,2,'2023-03-29 13:20:18','2023-03-29 20:20:18','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/ballons-210x158.jpg\" /></h1>\r\n\r\n<hr />\r\n\r\nChanging a shipping address on a paid order is now possible\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8Cloud Version 2023.3.226 - Shipping','','publish','closed','open','','activ8cloud-version-2023-3-226-shipping','','','2023-03-29 13:29:43','2023-03-29 20:29:43','',0,'https://activeclubsolutions.net/?p=4123',0,'post','',0),
(4124,0,'2023-03-29 19:29:32','2023-03-29 19:29:32','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/emailicon-250x150.png\"></h1>\n<hr>\n<p><b>NEW!</b> <span><i>Scheduled Emails </i></span> folder in <span><b> Marketing </b></span> drawer</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8cloud-version-2023-3-226-released-scheduled-emails/\">Activ8Cloud Version 2023.3.226 – Scheduled Emails</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud Version 2023.3.226 – Scheduled Emails','NEW! Scheduled Emails  folder in  Marketing  drawer The Λctiv8 Team © 2023 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Activ8Cloud Version 2023.3.226 – Scheduled Emails appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud-version-2023-3-226-scheduled-emails','','','2023-03-29 19:29:32','2023-03-29 19:29:32','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4124',0,'wprss_feed_item','',0),
(4128,0,'2023-03-29 20:20:18','2023-03-29 20:20:18','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/ballons-210x158.jpg\"></h1>\n<hr>\n<p>Changing a shipping address on a paid order is now possible</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8cloud-version-2023-3-226-shipping/\">Activ8Cloud Version 2023.3.226 – Shipping</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud Version 2023.3.226 – Shipping','Changing a shipping address on a paid order is now possible The Λctiv8 Team © 2023 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Activ8Cloud Version 2023.3.226 – Shipping appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud-version-2023-3-226-shipping','','','2023-03-29 20:20:18','2023-03-29 20:20:18','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4128',0,'wprss_feed_item','',0),
(4129,2,'2023-03-29 21:00:04','2023-03-30 04:00:04','<h1><img style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/SMS-graphic-210x150.png\" /></h1>\r\n\r\n<hr />\r\n\r\n<b>NEW!</b>&nbsp;<a href=\"https://www.secureclub.net/Help/amo/index.html?ml_MktgList-SkedTxt.html\" rel=\"noopener\" target=\"acmhelp\"><span style=\"font-size:150%;\"><i>Scheduled Texts</i>&nbsp;</span></a> folder in <span style=\"font-size:150%;\"><b>&nbsp;Marketing&nbsp;</b></span> drawer\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8Cloud Version 2023.3.226 - Scheduled Texts','','publish','closed','open','','activ8cloud-version-2023-3-226-scheduled-texts','','','2023-03-30 05:24:09','2023-03-30 12:24:09','',0,'https://activeclubsolutions.net/?p=4129',0,'post','',0),
(4131,0,'2023-03-30 04:00:04','2023-03-30 04:00:04','<h1><img src=\"https://www.secureclub.net/images/activeclubmgmt/SMS-graphic-210x150.png\"></h1>\n<hr>\n<p><b>NEW!</b> <span><i>Scheduled Texts </i></span> folder in <span><b> Marketing </b></span> drawer</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8cloud-version-2023-3-226-scheduled-texts/\">Activ8Cloud Version 2023.3.226 – Scheduled Texts</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8Cloud Version 2023.3.226 – Scheduled Texts','NEW! Scheduled Texts  folder in  Marketing  drawer The Λctiv8 Team © 2023 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Activ8Cloud Version 2023.3.226 – Scheduled Texts appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8cloud-version-2023-3-226-scheduled-texts','','','2023-03-30 04:00:04','2023-03-30 04:00:04','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4131',0,'wprss_feed_item','',0),
(4140,2,'2023-04-12 09:52:03','2023-04-12 16:52:03','<h1><img class=\"alignleft\" style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/Lane 3000.gif\" alt=\"\" width=\"231\" height=\"130\" /></h1>\r\n\r\n<hr />\r\n\r\n<b>NEW!</b> Use new <a href=\"https://www.secureclub.net/Help/webpos/index.html?wpos_tools.html#reader\">payment readers</a> Lane 3000/7000 or wireless Link 2500 for customers using Worldpay.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 POS Version 2023.4.179 - New Payment Devices','','publish','closed','open','','activ8-pos-version-2023-4-179-wireless-payment-devices','','','2023-05-29 07:37:53','2023-05-29 14:37:53','',0,'https://activeclubsolutions.net/?p=4140',0,'post','',0),
(4142,21,'2023-05-24 14:29:16','2023-05-24 21:29:16','<h1><img class=\"alignleft\" style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/release notes.png\" alt=\"\" /></h1>\r\n\r\n<hr />\r\n\r\n<ul>\r\n 	<li>Splitting a check capabilities from the New Order and Pending Orders screens... READ MORE.</li>\r\n</ul>\r\nThis will allow you to separate a check by line items instead of just splitting the amount of the order on the Checkout screen.\r\n<ul>\r\n 	<li>Worldpay Cloud has been added as another Worldpay option in Activ8 POS settings. With this new integration, our customers using Worldpay as a gateway will be able to purchase and use the Lane 3000, Lane 7000, and Link 2500 (wireless) devices. These new devices will allow your customers to choose a tip directly on the credit card reader removing the need for them to choose the tip on the iPad. The larger Lane 7000 will display the items purchased in the customer\'s order.</li>\r\n 	<li>Our Canadian customers that have a Worldpay account can now use either the Lane 3000 or Link 2500 devices to process payments. This integration allows the ability to have the readers to display in English or French.</li>\r\n 	<li>You now have the ability to send or print a receipt for swaps that result in a refund directly from the checkout screen.</li>\r\n 	<li>Fixed pickup location not saving when a different location is selected than the location logged into.</li>\r\n</ul>\r\nWhen navigating to the Pending Orders screen it will now default to showing the Shared tab instead of the Local tab.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 POS Version 2023.4.179 - New Release Notes','','publish','closed','open','','activ8-pos-version-2023-4-179-new-release-notes','','','2023-05-24 14:30:10','2023-05-24 21:30:10','',0,'https://activeclubsolutions.net/?p=4142',0,'post','',0),
(4143,0,'2023-05-24 21:29:16','2023-05-24 21:29:16','<h1><img class=\"alignleft\" src=\"https://www.secureclub.net/images/activeclubmgmt/release%20notes.png\" alt=\"\"></h1>\n<hr>\n<ul>\n<li>Splitting a check capabilities from the New Order and Pending Orders screens… READ MORE.</li>\n</ul>\n<p>This will allow you to separate a check by line items instead of just splitting the amount of the order on the Checkout screen.</p>\n<ul>\n<li>Worldpay Cloud has been added as another Worldpay option in Activ8 POS settings. With this new integration, our customers using Worldpay as a gateway will be able to purchase and use the Lane 3000, Lane 7000, and Link 2500 (wireless) devices. These new devices will allow your customers to choose a tip directly on the credit card reader removing the need for them to choose the tip on the iPad. The larger Lane 7000 will display the items purchased in the customer’s order.</li>\n<li>Our Canadian customers that have a Worldpay account can now use either the Lane 3000 or Link 2500 devices to process payments. This integration allows the ability to have the readers to display in English or French.</li>\n<li>You now have the ability to send or print a receipt for swaps that result in a refund directly from the checkout screen.</li>\n<li>Fixed pickup location not saving when a different location is selected than the location logged into.</li>\n</ul>\n<p>When navigating to the Pending Orders screen it will now default to showing the Shared tab instead of the Local tab.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-pos-version-2023-4-179-new-release-notes/\">Activ8 POS Version 2023.4.179 – New Release Notes</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 POS Version 2023.4.179 – New Release Notes','Splitting a check capabilities from the New Order and Pending Orders screens… READ MORE. This will allow you to separate a check by line items instead of just splitting the amount of the order on the Checkout screen. Worldpay Cloud has been added as another Worldpay option in Activ8 POS settings. With this new integration, […]\nThe post Activ8 POS Version 2023.4.179 – New Release Notes appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-pos-version-2023-4-179-new-release-notes','','','2023-05-24 21:29:16','2023-05-24 21:29:16','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4143',0,'wprss_feed_item','',0),
(4144,0,'2023-04-12 16:52:03','2023-04-12 16:52:03','<h1><img loading=\"lazy\" class=\"alignleft\" src=\"https://www.secureclub.net/images/activeclubmgmt/Lane%203000.gif\" alt=\"\" width=\"231\" height=\"130\"></h1>\n<hr>\n<p><b>NEW!</b> Use wireless <a href=\"https://www.secureclub.net/Help/pos/pos_ccreaders.html\">payment readers</a> Lane 3000/7000 or Link 2500 for customers using Worldpay.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-pos-version-2023-4-179-wireless-payment-devices/\">Activ8 POS Version 2023.4.179 – Wireless Payment Devices</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 POS Version 2023.4.179 – Wireless Payment Devices','NEW! Use wireless payment readers Lane 3000/7000 or Link 2500 for customers using Worldpay. The Λctiv8 Team © 2023 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Activ8 POS Version 2023.4.179 – Wireless Payment Devices appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-pos-version-2023-4-179-wireless-payment-devices','','','2023-04-12 16:52:03','2023-04-12 16:52:03','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4144',0,'wprss_feed_item','',0),
(4147,2,'2023-06-26 13:04:21','2023-06-26 20:04:21','<h1><img class=\"alignleft\" style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/release notes.png\" alt=\"\" /></h1>\r\n\r\n<hr />\r\n\r\n<ul>\r\n 	<li>Fixes for the Lane 7000 display and other updates... READ MORE</li>\r\n 	<li>Fixed Lane 7000 display not clearing after processing an order.</li>\r\n 	<li>Fixed an issue with modifying an order on the checkout screen after using Split Check.</li>\r\n 	<li>Changed label of Add/Update Printer to Manage Printers.</li>\r\n 	<li>Changed label of Add/Update Inventory to Add/Update Products.</li>\r\n 	<li>Removed Add Customer button to the right of the name search since this button only cleared the form (a Clear button already exists).\r\n• Re-labeled the Clear button on Customer screen to read Clear Form.\r\n• The Save button is now dynamically set to read Add Customer if you are adding a new customer or Update Customer if you are updating an existing customer.\r\n• Re-labeled the Clear Cache button on the login screen to Update Server with Configuration Changes and moved it to the center of the screen.\r\n• Re-labeled cancel button on PIN pad to Clear and changed X image to backspace image.\r\n• When using a Lane 3000/7000 or Link 2500 card reader which allows users to choose a tip on the device. It now displays the sleected tip on the Receipt screen.\r\n• Employees now can view but not edit Clock In/Out.\r\n• Closing out a drawer will now load with all zeros instead of displaying the amount used to open the drawer.\r\n• On Hold dates are now being properly set and cleared.\r\n• Cancelling out of gift card payment screen was not clearing the payment from memory.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 POS Version 2023.7.183 - New Release Notes','','publish','closed','open','','activ8-pos-version-2023-7-183-new-release-notes','','','2023-06-26 13:08:54','2023-06-26 20:08:54','',0,'https://activeclubsolutions.net/?p=4147',0,'post','',0),
(4148,0,'2023-06-26 20:04:21','2023-06-26 20:04:21','<h1><img class=\"alignleft\" src=\"https://www.secureclub.net/images/activeclubmgmt/release%20notes.png\" alt=\"\"></h1>\n<hr>\n<ul>\n<li>Fixes for the Lane 7000 display and other updates… READ MORE</li>\n<li>Fixed Lane 7000 display not clearing after processing an order.</li>\n<li>Fixed an issue with modifying an order on the checkout screen after using Split Check.</li>\n<li>Changed label of Add/Update Printer to Manage Printers.</li>\n<li>Changed label of Add/Update Inventory to Add/Update Products.</li>\n<li>Removed Add Customer button to the right of the name search since this button only cleared the form (a Clear button already exists).<br>\n• Re-labeled the Clear button on Customer screen to read Clear Form.<br>\n• The Save button is now dynamically set to read Add Customer if you are adding a new customer or Update Customer if you are updating an existing customer.<br>\n• Re-labeled the Clear Cache button on the login screen to Update Server with Configuration Changes and moved it to the center of the screen.<br>\n• Re-labeled cancel button on PIN pad to Clear and changed X image to backspace image.<br>\n• When using a Lane 3000/7000 or Link 2500 card reader which allows users to choose a tip on the device. It now displays the sleected tip on the Receipt screen.<br>\n• Employees now can view but not edit Clock In/Out.<br>\n• Closing out a drawer will now load with all zeros instead of displaying the amount used to open the drawer.<br>\n• On Hold dates are now being properly set and cleared.<br>\n• Cancelling out of gift card payment screen was not clearing the payment from memory.</li>\n</ul>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-pos-version-2023-7-183-new-release-notes/\">Activ8 POS Version 2023.7.183 – New Release Notes</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 POS Version 2023.7.183 – New Release Notes','Fixes for the Lane 7000 display and other updates… READ MORE Fixed Lane 7000 display not clearing after processing an order. Fixed an issue with modifying an order on the checkout screen after using Split Check. Changed label of Add/Update Printer to Manage Printers. Changed label of Add/Update Inventory to Add/Update Products. Removed Add Customer […]\nThe post Activ8 POS Version 2023.7.183 – New Release Notes appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-pos-version-2023-7-183-new-release-notes','','','2023-06-26 20:04:21','2023-06-26 20:04:21','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4148',0,'wprss_feed_item','',0),
(4149,2,'2023-07-17 11:03:07','2023-07-17 18:03:07','<h1><img class=\"alignleft\" style=\"margin-top: -20px;\" src=\"https://www.secureclub.net/images/activeclubmgmt/release notes.png\" alt=\"\" /></h1>\r\n<ul>\r\n 	<li><strong>Activ8 iOS POS release notes</strong>... READ MORE.</li>\r\n</ul>\r\n&nbsp;\r\n\r\nVersion release and Various Fixes:\r\n\r\nManually Editing Payments in the Checkout screen when the status is \"Not Charged\" is now allowed.\r\nCreating Inventory Movement Transactions on the POS to adjust the quantity on hand with a negative number now works in a similar way as in Activ8 Desktop and Cloud.\r\nEven Swaps when the amount due adds up to $0.00 now work correctly.\r\nPlease note that if you do not want Activ8 Point of Sale automatically updating on your iPads, you must turn off Auto Updates in the iPad\'s iTunes and App Store settings.\r\n<ul>\r\n 	<li><strong>Activ8 Desktop release notes</strong></li>\r\n</ul>\r\nDue to a Microsoft change, RDC users are no longer able to export to Excel or attach documents to emails. You can still email yourself the report you are trying to export from within RDC and you can use Activ8 Cloud to attach files to emails. If and when Microsoft fixes the issue that they produced and we can be sure that security is no longer an issue we will bring back these abilities on RDC. If you have Activ8 Desktop installed on your local machine you will not be affected by this change.\r\n<ul>\r\n 	<li><strong>Activ8 eCommerce and eComm+ release notes</strong>The shopper\'s Registration Page can now display checkboxes for opting in/out of Text Messages and Emails. To display these checkboxes on your online shop registration page, contact support@activeclubsolutions.com.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 iOS POS, Desktop and eCommerce Release Notes','','publish','closed','open','','activ8-ios-pos-desktop-and-ecommerce-release-notes','','','2023-07-26 09:36:55','2023-07-26 16:36:55','',0,'https://activeclubsolutions.net/?p=4149',0,'post','',0),
(4150,0,'2023-07-17 18:03:07','2023-07-17 18:03:07','<h1><img class=\"alignleft\" src=\"https://www.secureclub.net/images/activeclubmgmt/release%20notes.png\" alt=\"\"></h1>\n<ul>\n<li><strong>Activ8 iOS POS release notes</strong>… READ MORE.</li>\n</ul>\n<p>Version release and Various Fixes:</p>\n<p>Manually Editing Payments in the Checkout screen when the status is “Not Charged” is now allowed.<br>\nCreating Inventory Movement Transactions on the POS to adjust the quantity on hand with a negative number now works in a similar way as in Activ8 Desktop and Cloud.<br>\nEven Swaps when the amount due adds up to $0.00 now work correctly.<br>\nPlease note that if you do not want Activ8 Point of Sale automatically updating on your iPads, you must turn off Auto Updates in the iPad’s iTunes and App Store settings.</p>\n<ul>\n<li><strong>Activ8 Desktop release notes</strong></li>\n</ul>\n<p>Due to a Microsoft change, RDC users are no longer able to export to Excel or attach documents to emails. You can still email yourself the report you are trying to export from within RDC and you can use Activ8 Cloud to attach files to emails. If and when Microsoft fixes the issue that they produced and we can be sure that security is no longer an issue we will bring back these abilities on RDC. If you have Activ8 Desktop installed on your local machine you will not be affected by this change.</p>\n<ul>\n<li><strong>Activ8 eCommerce and eComm+ release notes</strong>\n<p>The shopper’s Registration Page can now display checkboxes for opting in/out of Text Messages and Emails. To display these checkboxes on your online shop registration page, contact support@activeclubsolutions.com.</p></li>\n</ul>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-ios-pos-desktop-and-ecommerce-release-notes/\">Activ8 iOS POS, Desktop and eCommerce Release Notes</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 iOS POS, Desktop and eCommerce Release Notes','Activ8 iOS POS release notes… READ MORE. Version release and Various Fixes: Manually Editing Payments in the Checkout screen when the status is “Not Charged” is now allowed. Creating Inventory Movement Transactions on the POS to adjust the quantity on hand with a negative number now works in a similar way as in Activ8 Desktop […]\nThe post Activ8 iOS POS, Desktop and eCommerce Release Notes appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-ios-pos-desktop-and-ecommerce-release-notes','','','2023-07-17 18:03:07','2023-07-17 18:03:07','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4150',0,'wprss_feed_item','',0),
(4151,2,'2023-07-26 09:36:13','2023-07-26 16:36:13','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\"><img class=\"alignnone size-full wp-image-4153\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\" alt=\"\" width=\"210\" height=\"150\" /> </a><strong style=\"font-size: 16px;\">Activ8 Remote Desktop  release notes</strong><span style=\"font-size: 16px;\">... READ MORE.</span></h1>\r\nDue to a Microsoft change, RDC users were temporarily no longer able to export to Excel or attach documents to emails. The Activ8 Development team was able to find a fix to this issue and it has been released.  Thank you fo your patience during this short feature disruption.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Remote Desktop Release Notes','','publish','closed','open','','activ8-remote-desktop-release-notes','','','2023-07-26 09:46:02','2023-07-26 16:46:02','',0,'https://activeclubsolutions.net/?p=4151',0,'post','',0),
(4153,21,'2023-07-26 09:42:17','2023-07-26 16:42:17','','Done','','inherit','closed','closed','','done','','','2023-07-26 09:42:17','2023-07-26 16:42:17','',4151,'https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png',0,'attachment','image/png',0),
(4154,0,'2023-07-26 16:36:13','2023-07-26 16:36:13','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-4153\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\" alt=\"\" width=\"210\" height=\"150\"> </a><strong>Activ8 Remote Desktop  release notes</strong><span>… READ MORE.</span></h1>\n<p>Due to a Microsoft change, RDC users were temporarily no longer able to export to Excel or attach documents to emails. The Activ8 Development team was able to find a fix to this issue and it has been released.  Thank you fo your patience during this short feature disruption.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-remote-desktop-release-notes/\">Activ8 Remote Desktop Release Notes</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Remote Desktop Release Notes','Activ8 Remote Desktop  release notes… READ MORE. Due to a Microsoft change, RDC users were temporarily no longer able to export to Excel or attach documents to emails. The Activ8 Development team was able to find a fix to this issue and it has been released.  Thank you fo your patience during this short feature […]\nThe post Activ8 Remote Desktop Release Notes appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-remote-desktop-release-notes','','','2023-07-26 16:36:13','2023-07-26 16:36:13','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4154',0,'wprss_feed_item','',0),
(4155,2,'2023-08-03 09:27:58','2023-08-03 16:27:58','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Referral-campaign-300-px.png\"><img class=\"alignnone wp-image-4156 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Referral-campaign-300-px.png\" alt=\"\" width=\"250\" height=\"250\" /></a><strong style=\"font-size: 16px;\"> Help us grow, and reap the benefits... </strong><span style=\"font-size: 16px;\">READ MORE.</span></h1>\r\n<p dir=\"LTR\">We wanted to ask a favor – do you know anyone else who might benefit from Activ8 Commerce as much as you do? If so, would you consider referring them to us?</p>\r\n<p dir=\"LTR\">You’ll receive a <strong>$500 credit </strong>on your Activ8 Commerce services when a friend you refer signs up and goes live.</p>\r\n<p dir=\"LTR\"><strong>HOW?</strong></p>\r\n<p dir=\"LTR\"><strong>Simply email <a title=\"null\" href=\"mailto:sales@activeclubsolutions.com?subject=Customer%20referral\">sales@activeclubsolutions.com </a></strong><strong>with your friend\'s name, email, and phone number.</strong></p>\r\n<strong>That’s not all!</strong>\r\n<p dir=\"LTR\">You will also enter our December 31st drawing for a year’s worth of Activ8 Commerce subscription fees on us!</p>\r\n<p dir=\"LTR\">This referral program is running through December 29 <sup>th</sup>, 2023.</p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Help us grow, seeking your valuable referrals!','','publish','closed','open','','help-us-grow-seeking-your-valuable-referrals','','','2023-08-03 09:34:01','2023-08-03 16:34:01','',0,'https://activeclubsolutions.net/?p=4155',0,'post','',0),
(4156,21,'2023-08-03 09:30:46','2023-08-03 16:30:46','','Referral campaign 300 px','','inherit','closed','closed','','referral-campaign-300-px','','','2023-08-03 09:30:46','2023-08-03 16:30:46','',4155,'https://activeclubsolutions.net/wp-content/uploads/2023/08/Referral-campaign-300-px.png',0,'attachment','image/png',0),
(4158,0,'2023-08-03 16:27:58','2023-08-03 16:27:58','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Referral-campaign-300-px.png\"><img loading=\"lazy\" class=\"alignnone wp-image-4156 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Referral-campaign-300-px.png\" alt=\"\" width=\"250\" height=\"250\"></a><strong> Help us grow, and reap the benefits… </strong><span>READ MORE.</span></h1>\n<p dir=\"LTR\">We wanted to ask a favor – do you know anyone else who might benefit from Activ8 Commerce as much as you do? If so, would you consider referring them to us?</p>\n<p dir=\"LTR\">You’ll receive a <strong>$500 credit </strong>on your Activ8 Commerce services when a friend you refer signs up and goes live.</p>\n<p dir=\"LTR\"><strong>HOW?</strong></p>\n<p dir=\"LTR\"><strong>Simply email <a title=\"null\" href=\"mailto:sales@activeclubsolutions.com?subject=Customer%20referral\">sales@activeclubsolutions.com </a></strong><strong>with your friend’s name, email, and phone number.</strong></p>\n<p><strong>That’s not all!</strong></p>\n<p dir=\"LTR\">You will also enter our December 31st drawing for a year’s worth of Activ8 Commerce subscription fees on us!</p>\n<p dir=\"LTR\">This referral program is running through December 29 <sup>th</sup>, 2023.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/help-us-grow-seeking-your-valuable-referrals/\">Help us grow, seeking your valuable referrals!</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Help us grow, seeking your valuable referrals!','Help us grow, and reap the benefits… READ MORE. We wanted to ask a favor – do you know anyone else who might benefit from Activ8 Commerce as much as you do? If so, would you consider referring them to us? You’ll receive a $500 credit on your Activ8 Commerce services when a friend you refer signs […]\nThe post Help us grow, seeking your valuable referrals! appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','help-us-grow-seeking-your-valuable-referrals','','','2023-08-03 16:27:58','2023-08-03 16:27:58','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4158',0,'wprss_feed_item','',0),
(4159,2,'2023-08-09 08:44:50','2023-08-09 15:44:50','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\"><img class=\"alignnone size-full wp-image-4161\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\" alt=\"\" width=\"210\" height=\"150\" /></a><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\"> </a><strong style=\"font-size: 16px;\">Activ8 iOS POS release notes</strong><span style=\"font-size: 16px;\">... READ MORE.</span></h1>\r\n<ol>\r\n 	<li>Product catalog loading is now much faster at the POS.</li>\r\n 	<li>Tip suggestions are now available for the pre-receipt template. Contact support@activeclubsolutions to get this feature enabled.</li>\r\n</ol>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Commerce POS Release Notes','','publish','closed','open','','activ8-commerce-pos-release-notes','','','2023-08-14 10:34:26','2023-08-14 17:34:26','',0,'https://activeclubsolutions.net/?p=4159',0,'post','',0),
(4161,21,'2023-08-09 08:55:53','2023-08-09 15:55:53','','Release notes','','inherit','closed','closed','','release-notes','','','2023-08-09 08:55:53','2023-08-09 15:55:53','',4159,'https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png',0,'attachment','image/png',0),
(4162,0,'2023-08-09 15:44:50','2023-08-09 15:44:50','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-4161\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\" alt=\"\" width=\"210\" height=\"150\"></a><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\"> </a><strong>Activ8 iOS POS release notes</strong><span>… READ MORE.</span></h1>\n<ol>\n<li>Product catalog loading is now much faster at the POS.</li>\n<li>Tip suggestions are now available for the pre-receipt template. Contact support@activeclubsolutions to get this feature enabled.</li>\n</ol>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-commerce-pos-release-notes/\">Activ8 Commerce POS Release Notes</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Commerce POS Release Notes',' Activ8 iOS POS release notes… READ MORE. Product catalog loading is now much faster at the POS. Tip suggestions are now available for the pre-receipt template. Contact support@activeclubsolutions to get this feature enabled. The Λctiv8 Team © 2023 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Activ8 Commerce POS Release Notes appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-commerce-pos-release-notes','','','2023-08-09 15:44:50','2023-08-09 15:44:50','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4162',0,'wprss_feed_item','',0),
(4163,2,'2023-08-31 15:29:52','2023-08-31 22:29:52','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\"><img class=\"alignnone size-full wp-image-4161\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\" alt=\"\" width=\"210\" height=\"150\" /></a><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\"> </a><strong style=\"font-size: 16px;\">Activ8 iOS POS and Cloud release notes</strong><span style=\"font-size: 16px;\">... READ MORE.</span></h1>\r\n<p style=\"line-height: 16.5pt;\"><span style=\"font-size: 12.0pt; color: #333333;\">Various Fixes: </span></p>\r\n<p style=\"line-height: 16.5pt;\"><span style=\"font-size: 12.0pt; color: #333333;\">1. Gift cards can be used on a swap transaction. </span></p>\r\n<p style=\"line-height: 16.5pt;\"><span style=\"font-size: 12.0pt; color: #333333;\">2. Employees can view their clock in/out logs. </span></p>\r\n<p style=\"line-height: 16.5pt;\"><span style=\"font-size: 12.0pt; color: #333333;\">3. The billing and shipping address updates bug is resolved. </span></p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Commerce POS Release Notes','','publish','closed','open','','activ8-commerce-pos-release-notes-2','','','2023-08-31 15:29:52','2023-08-31 22:29:52','',0,'https://activeclubsolutions.net/?p=4163',0,'post','',0),
(4165,0,'2023-08-31 22:29:52','2023-08-31 22:29:52','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\"><img class=\"alignnone size-full wp-image-4161\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\" alt=\"\" width=\"210\" height=\"150\"></a><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\"> </a><strong>Activ8 iOS POS and Cloud release notes</strong><span>… READ MORE.</span></h1>\n<p><span>Various Fixes: </span></p>\n<p><span>1. Gift cards can be used on a swap transaction. </span></p>\n<p><span>2. Employees can view their clock in/out logs. </span></p>\n<p><span>3. The billing and shipping address updates bug is resolved. </span></p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-commerce-pos-release-notes-2/\">Activ8 Commerce POS Release Notes</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Commerce POS Release Notes',' Activ8 iOS POS and Cloud release notes… READ MORE. Various Fixes: 1. Gift cards can be used on a swap transaction. 2. Employees can view their clock in/out logs. 3. The billing and shipping address updates bug is resolved. The Λctiv8 Team © 2023 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Activ8 Commerce POS Release Notes appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-commerce-pos-release-notes-2','','','2023-08-31 22:29:52','2023-08-31 22:29:52','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4165',0,'wprss_feed_item','',0),
(4167,2,'2023-10-04 09:18:54','2023-10-04 16:18:54','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\"><img class=\"alignnone size-full wp-image-4161\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\" alt=\"\" width=\"210\" height=\"150\" /></a><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\"> </a><strong style=\"font-size: 16px;\">Activ8 Commerce release notes</strong><span style=\"font-size: 16px;\">... READ MORE.</span></h1>\r\n<strong>Online customer access and club selections - Updates:</strong>\r\n<ol>\r\n 	<li><strong>Restricted customer passwords</strong> to a maximum of 20 characters.</li>\r\n 	<li><strong>Improved messaging</strong> for customers who exceed the maximum quantity in their selection cart. The message now accurately informs them that they have exceeded the maximum quantity and their selections have been adjusted. They will no longer see a message indicating their shopping cart was modified.</li>\r\n</ol>\r\n<strong>Desktop Version 2023.10.859 -  Bug Fixes:</strong>\r\n<ol>\r\n 	<li>Resolved an issue where attempting to access a customer\'s transaction history would occasionally display an empty list of transactions.</li>\r\n 	<li>Fixed an issue preventing users from saving cash drawer changes when the Open Dollars or Open Quarters were set to 0.</li>\r\n 	<li>Corrected an issue in inventory transactions that inaccurately updated the cost when increasing the quantity.</li>\r\n 	<li><strong>Introduced additional settings in the POS Configuration</strong>, which will be available in the upcoming POS release. These settings include the option to require a user to enter their PIN before adding new customers, ensuring the correct employee receives credit for customer additions without needing to log out and back in with their PIN. Additionally, Manager PINs can now be required before employees can charge cards on file for payments.</li>\r\n 	<li>These updates aim to enhance your overall customer experience and streamline your operations.</li>\r\n</ol>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Commerce Release Notes','','publish','closed','open','','activ8-commerce-release-notes','','','2023-10-04 09:18:54','2023-10-04 16:18:54','',0,'https://activeclubsolutions.net/?p=4167',0,'post','',0),
(4169,21,'2023-10-04 09:26:15','2023-10-04 16:26:15','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/10/Tock-blue.png\"><img class=\"alignnone wp-image-4170 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/10/Tock-blue.png\" alt=\"\" width=\"259\" height=\"194\" /></a><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\"> </a><strong style=\"font-size: 16px;\">Activ8 Commerce Tock Integration</strong><span style=\"font-size: 16px;\">... READ MORE.</span></h1>\r\n<strong>We are excited to announce an upcoming integration with Tock\'s Reservation System.</strong> Initially, we can automatically upload customers from Activ8 to your Tock account. However, our integration will soon offer more functionalities. You will be able to view your Tock reservations directly in the Activ8 Point of Sale, allowing you to accept payments for unpaid reservations and manage upcoming reservations, helping you better prepare for staffing needs.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Commerce and Tock Reservations','','publish','closed','open','','activ8-commerce-and-tock-reservations','','','2023-10-04 09:26:15','2023-10-04 16:26:15','',0,'https://activeclubsolutions.net/?p=4169',0,'post','',0),
(4170,21,'2023-10-04 09:23:05','2023-10-04 16:23:05','','Tock blue','','inherit','closed','closed','','tock-blue','','','2023-10-04 09:23:05','2023-10-04 16:23:05','',4169,'https://activeclubsolutions.net/wp-content/uploads/2023/10/Tock-blue.png',0,'attachment','image/png',0),
(4171,0,'2023-10-04 16:26:15','2023-10-04 16:26:15','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/10/Tock-blue.png\"><img class=\"alignnone wp-image-4170 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/10/Tock-blue.png\" alt=\"\" width=\"259\" height=\"194\"></a><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\"> </a><strong>Activ8 Commerce Tock Integration</strong><span>… READ MORE.</span></h1>\n<p><strong>We are excited to announce an upcoming integration with Tock’s Reservation System.</strong> Initially, we can automatically upload customers from Activ8 to your Tock account. However, our integration will soon offer more functionalities. You will be able to view your Tock reservations directly in the Activ8 Point of Sale, allowing you to accept payments for unpaid reservations and manage upcoming reservations, helping you better prepare for staffing needs.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-commerce-and-tock-reservations/\">Activ8 Commerce and Tock Reservations</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Commerce and Tock Reservations',' Activ8 Commerce Tock Integration… READ MORE. We are excited to announce an upcoming integration with Tock’s Reservation System. Initially, we can automatically upload customers from Activ8 to your Tock account. However, our integration will soon offer more functionalities. You will be able to view your Tock reservations directly in the Activ8 Point of Sale, allowing […]\nThe post Activ8 Commerce and Tock Reservations appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-commerce-and-tock-reservations','','','2023-10-04 16:26:15','2023-10-04 16:26:15','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4171',0,'wprss_feed_item','',0),
(4172,0,'2023-10-04 16:18:54','2023-10-04 16:18:54','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\"><img class=\"alignnone size-full wp-image-4161\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\" alt=\"\" width=\"210\" height=\"150\"></a><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png\"> </a><strong>Activ8 Commerce release notes</strong><span>… READ MORE.</span></h1>\n<p><strong>Online customer access and club selections – Updates:</strong></p>\n<ol>\n<li><strong>Restricted customer passwords</strong> to a maximum of 20 characters.</li>\n<li><strong>Improved messaging</strong> for customers who exceed the maximum quantity in their selection cart. The message now accurately informs them that they have exceeded the maximum quantity and their selections have been adjusted. They will no longer see a message indicating their shopping cart was modified.</li>\n</ol>\n<p><strong>Desktop Version 2023.10.859 –  Bug Fixes:</strong></p>\n<ol>\n<li>Resolved an issue where attempting to access a customer’s transaction history would occasionally display an empty list of transactions.</li>\n<li>Fixed an issue preventing users from saving cash drawer changes when the Open Dollars or Open Quarters were set to 0.</li>\n<li>Corrected an issue in inventory transactions that inaccurately updated the cost when increasing the quantity.</li>\n<li><strong>Introduced additional settings in the POS Configuration</strong>, which will be available in the upcoming POS release. These settings include the option to require a user to enter their PIN before adding new customers, ensuring the correct employee receives credit for customer additions without needing to log out and back in with their PIN. Additionally, Manager PINs can now be required before employees can charge cards on file for payments.</li>\n<li>These updates aim to enhance your overall customer experience and streamline your operations.</li>\n</ol>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-commerce-release-notes/\">Activ8 Commerce Release Notes</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Commerce Release Notes',' Activ8 Commerce release notes… READ MORE. Online customer access and club selections – Updates: Restricted customer passwords to a maximum of 20 characters. Improved messaging for customers who exceed the maximum quantity in their selection cart. The message now accurately informs them that they have exceeded the maximum quantity and their selections have been adjusted. […]\nThe post Activ8 Commerce Release Notes appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-commerce-release-notes','','','2023-10-04 16:18:54','2023-10-04 16:18:54','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4172',0,'wprss_feed_item','',0),
(4173,2,'2023-11-10 12:45:50','2023-11-10 20:45:50','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/11/Untitled-design-7.png\"><img class=\"alignnone wp-image-4175 size-medium\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/11/Untitled-design-7-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></a><strong style=\"font-size: 16px;\">Activ8 Commerce and QuickBooks Online</strong><span style=\"font-size: 16px;\">... READ MORE.</span></h1>\r\n<strong>We are excited to announce our integration with QuickBooks Online.</strong> This is available to Activ8 Commerce Pro and Enterprise users. Enjoy automated daily journal entries to your accounting systems and use your free time to grow your business. Contact support@activeclubsolutions.com to connect your Activ8 Commerce solution to your QuickBooks online account.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Commerce and QuickBooks Online','','publish','closed','open','','activ8-commerce-and-quickbooks-online','','','2023-11-10 12:45:50','2023-11-10 20:45:50','',0,'https://activeclubsolutions.net/?p=4173',0,'post','',0),
(4174,21,'2023-11-10 12:32:12','2023-11-10 20:32:12','','QuickBooks-Online-Logo','','inherit','closed','closed','','quickbooks-online-logo','','','2023-11-10 12:32:12','2023-11-10 20:32:12','',4173,'https://activeclubsolutions.net/wp-content/uploads/2023/11/QuickBooks-Online-Logo.png',0,'attachment','image/png',0),
(4175,21,'2023-11-10 12:39:31','2023-11-10 20:39:31','','Untitled design (7)','','inherit','closed','closed','','untitled-design-7','','','2023-11-10 12:39:31','2023-11-10 20:39:31','',4173,'https://activeclubsolutions.net/wp-content/uploads/2023/11/Untitled-design-7.png',0,'attachment','image/png',0),
(4177,0,'2023-11-10 20:45:50','2023-11-10 20:45:50','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/11/Untitled-design-7.png\"><img class=\"alignnone wp-image-4175 size-medium\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/11/Untitled-design-7-300x300.png\" alt=\"\" width=\"300\" height=\"300\"></a><strong>Activ8 Commerce and QuickBooks Online</strong><span>… READ MORE.</span></h1>\n<p><strong>We are excited to announce our integration with QuickBooks Online.</strong> This is available to Activ8 Commerce Pro and Enterprise users. Enjoy automated daily journal entries to your accounting systems and use your free time to grow your business. Contact support@activeclubsolutions.com to connect your Activ8 Commerce solution to your QuickBooks online account.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-commerce-and-quickbooks-online/\">Activ8 Commerce and QuickBooks Online</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Commerce and QuickBooks Online','Activ8 Commerce and QuickBooks Online… READ MORE. We are excited to announce our integration with QuickBooks Online. This is available to Activ8 Commerce Pro and Enterprise users. Enjoy automated daily journal entries to your accounting systems and use your free time to grow your business. Contact support@activeclubsolutions.com to connect your Activ8 Commerce solution to your […]\nThe post Activ8 Commerce and QuickBooks Online appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-commerce-and-quickbooks-online','','','2023-11-10 20:45:50','2023-11-10 20:45:50','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4177',0,'wprss_feed_item','',0),
(4178,2,'2023-12-08 13:17:36','2023-12-08 21:17:36','<h1><strong style=\"font-size: 16px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\"><img class=\"alignnone size-full wp-image-4161\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\" alt=\"\" width=\"210\" height=\"150\" /></a>This release includes an integration with new Open Edge payment devices, several enhancements aimed at improving your management control, connection to our new data center and various fixes.</strong><span style=\"font-size: 16px;\">... READ MORE.</span></h1>\r\n<!--more-->\r\n\r\nPlease note that if you do not want Activ8 Point of Sale automatically updating onto your iPads, you must turn off Auto Updates in the iPad\'s iTunes and App Store settings.\r\n\r\n<strong>Open Edge SDK Upgrade:</strong>\r\n\r\nUpgraded to the latest Open Edge SDK, enabling users to configure it seamlessly with the BBPOS Chipper 3x devices.\r\n\r\n<strong>Manager PIN for Card on File:</strong>\r\n\r\nIntroduced a switch in POS Configuration requiring a Manager PIN to process Card on File payments.\r\nDisables Card on File during split payments unless a manager is logged into the Point of Sale.\r\n\r\n<strong>PIN Requirement for New Customers:</strong>\r\n\r\nAdded a switch in POS Configuration requiring a PIN when adding new customers.\r\nEnsures that any user logged into the Point of Sale will receive credit for adding a new customer.\r\n\r\n<strong>Improved Gift Card and Redeem Points Screens:</strong>\r\n\r\nRedesigned the Gift Card and Redeem Points screens for a more user-friendly and efficient experience.\r\n\r\n<strong>Enhanced Inventory Transfer Functionality:</strong>\r\n\r\nAdded a \"Select Inventory\" button on the Transfer Inventory screen.\r\nAllows users to search for inventory to transfer by name or SKU.\r\n\r\n<strong>Refund Process Enhancement:</strong>\r\n\r\nFixed the issue where refunds required a cash drawer to be assigned, even when cash drawers were turned off.\r\n\r\n<strong>Customer Screen Improvement:</strong>\r\n\r\nResolved the issue on the Customer screens that prompted the Credit Card screen when attempting to push \"Add Customer\" from the Billing screen.\r\n\r\n<strong>New Data Center Integration:</strong>\r\n\r\nAdded the new Data Center as an option for users to choose for connection.\r\n\r\n<strong>Minor Bug Fixes:</strong>\r\n\r\nAddressed various minor bugs and issues to enhance overall system stability.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 POS Release 2024.1.189','','publish','closed','open','','activ8-pos-release-2024-1-189','','','2023-12-08 13:17:36','2023-12-08 21:17:36','',0,'https://activeclubsolutions.net/?p=4178',0,'post','',0),
(4180,2,'2023-12-08 13:37:35','2023-12-08 21:37:35','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/12/Timeclock2.png\"><img class=\"alignnone wp-image-4186 \" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/12/Timeclock2-300x214.png\" alt=\"\" width=\"245\" height=\"175\" /></a><span style=\"font-size: 12pt;\">We are pleased to announce that your POS time clock can now be seamlessly managed through our Cloud Activ8 Commerce Control Central. Read More...</span></h1>\r\n<!--more-->\r\n\r\nClock employees in and out, update entries, and generate reports effortlessly with our visual, easy, and intuitive interface. Streamline your workforce management, ensuring accuracy and efficiency at every step. Welcome to the future of hassle-free, cloud-based timekeeping.\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','New! Time Clock Management in Activ8 Cloud','','publish','closed','open','','new-time-clock-management-in-activ8-cloud','','','2024-05-14 07:59:58','2024-05-14 14:59:58','',0,'https://activeclubsolutions.net/?p=4180',0,'post','',0),
(4181,21,'2023-12-08 13:32:48','2023-12-08 21:32:48','','time clock','','inherit','closed','closed','','time-clock','','','2023-12-08 13:32:48','2023-12-08 21:32:48','',4180,'https://activeclubsolutions.net/wp-content/uploads/2023/12/time-clock.png',0,'attachment','image/png',0),
(4183,21,'2023-12-08 13:35:34','2023-12-08 21:35:34','','timeclock','','inherit','closed','closed','','timeclock','','','2023-12-08 13:35:34','2023-12-08 21:35:34','',4180,'https://activeclubsolutions.net/wp-content/uploads/2023/12/timeclock.png',0,'attachment','image/png',0),
(4184,0,'2023-12-08 21:37:35','2023-12-08 21:37:35','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/12/time-clock.png\"><img class=\"alignnone wp-image-4181 size-medium\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/12/time-clock-300x203.png\" alt=\"\" width=\"300\" height=\"203\"></a><span>We are pleased to announce that your POS time clock can now be seamlessly managed through our Cloud Activ8 Commerce Control Central. Read More…</span></h1>\n<p><span></span></p>\n<p>Clock employees in and out, update entries, and generate reports effortlessly with our visual, easy, and intuitive interface. Streamline your workforce management, ensuring accuracy and efficiency at every step. Welcome to the future of hassle-free, cloud-based timekeeping.</p>\n<p> </p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/new-time-clock-management-in-activ8-cloud/\">New! Time Clock Management in Activ8 Cloud</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','New! Time Clock Management in Activ8 Cloud','We are pleased to announce that your POS time clock can now be seamlessly managed through our Cloud Activ8 Commerce Control Central. Read More… Clock employees in and out, update entries, and generate reports effortlessly with our visual, easy, and intuitive interface. Streamline your workforce management, ensuring accuracy and efficiency at every step. Welcome to […]\nThe post New! Time Clock Management in Activ8 Cloud appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','new-time-clock-management-in-activ8-cloud','','','2023-12-08 21:37:35','2023-12-08 21:37:35','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4184',0,'wprss_feed_item','',0),
(4185,0,'2023-12-08 21:17:36','2023-12-08 21:17:36','<h1><strong><a href=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\"><img class=\"alignnone size-full wp-image-4161\" src=\"https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png\" alt=\"\" width=\"210\" height=\"150\"></a>This release includes an integration with new Open Edge payment devices, several enhancements aimed at improving your management control, connection to our new data center and various fixes.</strong><span>… READ MORE.</span></h1>\n<p><span></span></p>\n<p>Please note that if you do not want Activ8 Point of Sale automatically updating onto your iPads, you must turn off Auto Updates in the iPad’s iTunes and App Store settings.</p>\n<p><strong>Open Edge SDK Upgrade:</strong></p>\n<p>Upgraded to the latest Open Edge SDK, enabling users to configure it seamlessly with the BBPOS Chipper 3x devices.</p>\n<p><strong>Manager PIN for Card on File:</strong></p>\n<p>Introduced a switch in POS Configuration requiring a Manager PIN to process Card on File payments.<br>\nDisables Card on File during split payments unless a manager is logged into the Point of Sale.</p>\n<p><strong>PIN Requirement for New Customers:</strong></p>\n<p>Added a switch in POS Configuration requiring a PIN when adding new customers.<br>\nEnsures that any user logged into the Point of Sale will receive credit for adding a new customer.</p>\n<p><strong>Improved Gift Card and Redeem Points Screens:</strong></p>\n<p>Redesigned the Gift Card and Redeem Points screens for a more user-friendly and efficient experience.</p>\n<p><strong>Enhanced Inventory Transfer Functionality:</strong></p>\n<p>Added a “Select Inventory” button on the Transfer Inventory screen.<br>\nAllows users to search for inventory to transfer by name or SKU.</p>\n<p><strong>Refund Process Enhancement:</strong></p>\n<p>Fixed the issue where refunds required a cash drawer to be assigned, even when cash drawers were turned off.</p>\n<p><strong>Customer Screen Improvement:</strong></p>\n<p>Resolved the issue on the Customer screens that prompted the Credit Card screen when attempting to push “Add Customer” from the Billing screen.</p>\n<p><strong>New Data Center Integration:</strong></p>\n<p>Added the new Data Center as an option for users to choose for connection.</p>\n<p><strong>Minor Bug Fixes:</strong></p>\n<p>Addressed various minor bugs and issues to enhance overall system stability.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-pos-release-2024-1-189/\">Activ8 POS Release 2024.1.189</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 POS Release 2024.1.189','This release includes an integration with new Open Edge payment devices, several enhancements aimed at improving your management control, connection to our new data center and various fixes.… READ MORE. Please note that if you do not want Activ8 Point of Sale automatically updating onto your iPads, you must turn off Auto Updates in the […]\nThe post Activ8 POS Release 2024.1.189 appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-pos-release-2024-1-189','','','2023-12-08 21:17:36','2023-12-08 21:17:36','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4185',0,'wprss_feed_item','',0),
(4186,21,'2023-12-12 08:46:09','2023-12-12 16:46:09','','Timeclock2','','inherit','closed','closed','','timeclock2','','','2023-12-12 08:46:09','2023-12-12 16:46:09','',4180,'https://activeclubsolutions.net/wp-content/uploads/2023/12/Timeclock2.png',0,'attachment','image/png',0),
(4190,2,'2024-02-16 10:05:31','2024-02-16 18:05:31','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/02/10877677.jpg\"><img class=\"alignnone wp-image-4192 size-medium\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/02/10877677-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /></a><span style=\"font-size: 12pt;\">We have created new email system templates. These new templates are beautiful, modern, and, most importantly, responsive.</span></h1>\r\n<!--more-->\r\n\r\nTo preview the new templates, visit your Activ8 Cloud help: <a href=\"https://links.send1.activeclubsolutions.com/?ref=4EEAAH-ecfDIRUUHkxNC2H59p1y9WC16AQAAAF8eZhaKhxhw6ZerpNlo6nOyxVlFlCckIIwh1l0KxnbmP7yDKbLGxN25zysoWR9JOi28-dD4fTlCAuI-9w7Z6S1rOT2T1BKZYpTYN60FFTk3ILxGcx-JIVHqEH-3M3JSDh3bzzg6C6RzMqcTIQrmWSilJnBCbeud9TukmxAOW50hqDF-tfbmCpxkDpInMRZi_QNvASWFwPl3OLYxyPTq5vy8wyOlWr4uS8yg1BTODqfDUHV8qzuzmOkpYLQ2ky5HfoW4t6W-dzRjW6gFOfM3RwOb5HKASLPbhdo6VcElfWjRNKj_7FIaqTfwN2DoIHtOLVruxLGlJnH2YOV-WZDu8uc\">Templates previews.</a>\r\n\r\nIf you would like to upgrade some or all your system emails to the new templates, you have 2 convenient options:\r\n1. Contact support for a setup at the standard support fee\r\n2. Or - Activate and edit these templates on your own at any time. We made this video to guide you through the process: <a href=\"https://player.vimeo.com/video/908801765\">New template self setup tutorial</a>.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Upgrade Alert: New System Email Templates Await!','','draft','closed','open','','upgrade-alert-new-system-email-templates-await','','','2025-03-29 12:33:34','2025-03-29 19:33:34','',0,'https://activeclubsolutions.net/?p=4190',0,'post','',0),
(4192,21,'2024-02-20 10:17:31','2024-02-20 18:17:31','','10877677','','inherit','closed','closed','','10877677','','','2024-02-20 10:17:31','2024-02-20 18:17:31','',4190,'https://activeclubsolutions.net/wp-content/uploads/2024/02/10877677.jpg',0,'attachment','image/jpeg',0),
(4193,0,'2024-02-16 18:05:31','2024-02-16 18:05:31','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/02/10877677.jpg\"><img class=\"alignnone wp-image-4192 size-medium\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/02/10877677-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\"></a><span>We have created new email system templates. These new templates are beautiful, modern, and, most importantly, responsive.</span></h1>\n<p><span></span></p>\n<p>To preview the new templates, visit your Activ8 Cloud help: <a href=\"https://links.send1.activeclubsolutions.com/?ref=4EEAAH-ecfDIRUUHkxNC2H59p1y9WC16AQAAAF8eZhaKhxhw6ZerpNlo6nOyxVlFlCckIIwh1l0KxnbmP7yDKbLGxN25zysoWR9JOi28-dD4fTlCAuI-9w7Z6S1rOT2T1BKZYpTYN60FFTk3ILxGcx-JIVHqEH-3M3JSDh3bzzg6C6RzMqcTIQrmWSilJnBCbeud9TukmxAOW50hqDF-tfbmCpxkDpInMRZi_QNvASWFwPl3OLYxyPTq5vy8wyOlWr4uS8yg1BTODqfDUHV8qzuzmOkpYLQ2ky5HfoW4t6W-dzRjW6gFOfM3RwOb5HKASLPbhdo6VcElfWjRNKj_7FIaqTfwN2DoIHtOLVruxLGlJnH2YOV-WZDu8uc\">Templates previews.</a></p>\n<p>If you would like to upgrade some or all your system emails to the new templates, you have 2 convenient options:<br>\n1. Contact support for a setup at the standard support fee<br>\n2. Or – Activate and edit these templates on your own at any time. We made this video to guide you through the process: <a href=\"https://player.vimeo.com/video/908801765\">New template self setup tutorial</a>.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/upgrade-alert-new-system-email-templates-await/\">Upgrade Alert: New System Email Templates Await!</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Upgrade Alert: New System Email Templates Await!','We have created new email system templates. These new templates are beautiful, modern, and, most importantly, responsive. To preview the new templates, visit your Activ8 Cloud help: Templates previews. If you would like to upgrade some or all your system emails to the new templates, you have 2 convenient options: 1. Contact support for a […]\nThe post Upgrade Alert: New System Email Templates Await! appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','upgrade-alert-new-system-email-templates-await','','','2024-02-16 18:05:31','2024-02-16 18:05:31','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4193',0,'wprss_feed_item','',0),
(4194,2,'2024-02-22 13:07:10','2024-02-22 21:07:10','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/02/Tock-Integration.png\"><img class=\"alignnone wp-image-4196 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/02/Tock-Integration.png\" alt=\"Tock integration\" width=\"300\" height=\"300\" /></a><span style=\"font-size: 12pt;\">Exciting news! We\'re delighted to announce the certified integration of Activ8 Commerce with the Tock Reservation System.</span></h1>\r\n<!--more-->\r\n<table class=\"k-table\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr data-role=\"resizable\">\r\n<td>Now, managing customer data, reservations, and payments is a breeze, directly from your POS.\r\n\r\nTock Reservation System is renowned for revolutionizing the reservation experience. With this integration, enjoy the convenience of syncing data seamlessly. Experience the ease of operations and focus more on delivering exceptional service to your customers.\r\n\r\nWe have created this video to allow you to explore this integration:</td>\r\n</tr>\r\n<tr>\r\n<td align=\"center\"><a title=\"Watch now\" href=\"https://player.vimeo.com/video/914938333\" target=\"_blank\" rel=\"noopener\"><img src=\"https://www.secureclub.net/images/activeclubmgmt/video%20click%20screen%20green.png\" width=\"300\" /></a></td>\r\n</tr>\r\n<tr>\r\n<td>The integration installation price is a $150 one-time fee. Let us know if you have <a href=\"mailto:support@activeclubsolutions.com\">any questions!</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Commerce and Tock Reservation System Integration Unveiled!','','publish','closed','open','','activ8-commerce-and-tock-reservation-system-integration-unveiled','','','2024-02-22 13:07:10','2024-02-22 21:07:10','',0,'https://activeclubsolutions.net/?p=4194',0,'post','',0),
(4196,21,'2024-02-22 13:04:30','2024-02-22 21:04:30','','Tock Integration','','inherit','closed','closed','','tock-integration','','','2024-02-22 13:04:41','2024-02-22 21:04:41','',4194,'https://activeclubsolutions.net/wp-content/uploads/2024/02/Tock-Integration.png',0,'attachment','image/png',0),
(4197,0,'2024-02-22 21:07:10','2024-02-22 21:07:10','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/02/Tock-Integration.png\"><img class=\"alignnone wp-image-4196 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/02/Tock-Integration.png\" alt=\"Tock integration\" width=\"300\" height=\"300\"></a><span>Exciting news! We’re delighted to announce the certified integration of Activ8 Commerce with the Tock Reservation System.</span></h1>\n<p><span></span></p>\n<table class=\"k-table\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr data-role=\"resizable\">\n<td>Now, managing customer data, reservations, and payments is a breeze, directly from your POS.\n<p>Tock Reservation System is renowned for revolutionizing the reservation experience. With this integration, enjoy the convenience of syncing data seamlessly. Experience the ease of operations and focus more on delivering exceptional service to your customers.</p>\n<p>We have created this video to allow you to explore this integration:</p></td>\n</tr>\n<tr>\n<td align=\"center\"><a title=\"Watch now\" href=\"https://player.vimeo.com/video/914938333\" target=\"_blank\" rel=\"noopener\"><img src=\"https://www.secureclub.net/images/activeclubmgmt/video%20click%20screen%20green.png\" width=\"300\"></a></td>\n</tr>\n<tr>\n<td>The integration installation price is a $150 one-time fee. Let us know if you have <a href=\"mailto:support@activeclubsolutions.com\">any questions!</a></td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-commerce-and-tock-reservation-system-integration-unveiled/\">Activ8 Commerce and Tock Reservation System Integration Unveiled!</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Commerce and Tock Reservation System Integration Unveiled!','Exciting news! We’re delighted to announce the certified integration of Activ8 Commerce with the Tock Reservation System. Now, managing customer data, reservations, and payments is a breeze, directly from your POS. Tock Reservation System is renowned for revolutionizing the reservation experience. With this integration, enjoy the convenience of syncing data seamlessly. Experience the ease of operations […]\nThe post Activ8 Commerce and Tock Reservation System Integration Unveiled! appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-commerce-and-tock-reservation-system-integration-unveiled','','','2024-02-22 21:07:10','2024-02-22 21:07:10','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4197',0,'wprss_feed_item','',0),
(4198,2,'2024-03-08 11:45:57','2024-03-08 19:45:57','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/GLS-Integration.png\"><img class=\"alignnone wp-image-4200 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/GLS-Integration.png\" alt=\"\" width=\"300\" height=\"300\" /></a><span style=\"font-size: 12pt;\">We\'re pleased to announce an upgraded integration to GLS (formerly GSO), ensuring a smoother user experience.</span></h1>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Commerce and GLS Integration Upgrade','','publish','closed','open','','activ8-commerce-and-gls-integration-upgrade','','','2024-03-08 11:45:57','2024-03-08 19:45:57','',0,'https://activeclubsolutions.net/?p=4198',0,'post','',0),
(4200,21,'2024-03-08 11:45:46','2024-03-08 19:45:46','','GLS Integration','','inherit','closed','closed','','gls-integration','','','2024-03-08 11:45:46','2024-03-08 19:45:46','',4198,'https://activeclubsolutions.net/wp-content/uploads/2024/03/GLS-Integration.png',0,'attachment','image/png',0),
(4201,2,'2024-03-08 11:52:51','2024-03-08 19:52:51','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/Cloud-login.gif\"><img class=\"alignnone wp-image-4203 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/Cloud-login.gif\" alt=\"\" width=\"300\" height=\"300\" /></a><span style=\"font-size: 12pt;\">The Activ8 Cloud login screen now allows you to display your password for added convenience.</span></h1>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Cloud Login Update','','publish','closed','open','','cloud-login-update','','','2024-03-08 11:54:06','2024-03-08 19:54:06','',0,'https://activeclubsolutions.net/?p=4201',0,'post','',0),
(4202,0,'2024-03-08 19:45:57','2024-03-08 19:45:57','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/GLS-Integration.png\"><img class=\"alignnone wp-image-4200 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/GLS-Integration.png\" alt=\"\" width=\"300\" height=\"300\"></a><span>We’re pleased to announce an upgraded integration to GLS (formerly GSO), ensuring a smoother user experience.</span></h1>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-commerce-and-gls-integration-upgrade/\">Activ8 Commerce and GLS Integration Upgrade</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Commerce and GLS Integration Upgrade','We’re pleased to announce an upgraded integration to GLS (formerly GSO), ensuring a smoother user experience. The Λctiv8 Team © 2023 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Activ8 Commerce and GLS Integration Upgrade appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-commerce-and-gls-integration-upgrade','','','2024-03-08 19:45:57','2024-03-08 19:45:57','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4202',0,'wprss_feed_item','',0),
(4203,21,'2024-03-08 11:51:19','2024-03-08 19:51:19','','Cloud login','','inherit','closed','closed','','cloud-login','','','2024-03-08 11:51:19','2024-03-08 19:51:19','',4201,'https://activeclubsolutions.net/wp-content/uploads/2024/03/Cloud-login.gif',0,'attachment','image/gif',0),
(4205,0,'2024-03-08 19:52:51','2024-03-08 19:52:51','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/Cloud-login.gif\"><img class=\"alignnone wp-image-4203 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/Cloud-login.gif\" alt=\"\" width=\"300\" height=\"300\"></a><span>The Activ8 Cloud login screen now allows you to display your password for added convenience.</span></h1>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/cloud-login-update/\">Cloud Login Update</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Cloud Login Update','The Activ8 Cloud login screen now allows you to display your password for added convenience. The Λctiv8 Team © 2023 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Cloud Login Update appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','cloud-login-update','','','2024-03-08 19:52:51','2024-03-08 19:52:51','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4205',0,'wprss_feed_item','',0),
(4206,2,'2024-03-28 13:01:15','2024-03-28 20:01:15','<h1><span style=\"font-size: 12pt;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/Feed-pics-3.gif\"><img class=\"alignnone size-full wp-image-4216\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/Feed-pics-3.gif\" alt=\"\" width=\"300\" height=\"300\" /></a>Action required on April 30th. We will release global updates for UPS new requirement for all users to connect their Activ8 Commerce and UPS accounts through the cloud. Failure to do so will result in the inability to print UPS labels. Activ8 Cloud login screen now allows you to display your password for added convenience.</span></h1>\r\n<!--more-->\r\n\r\nTo ensure uninterrupted access to UPS label printing, please follow these steps:\r\n<ol>\r\n 	<li><strong>On or after April 30th</strong>, sign in to your <a title=\"Signing In Activ8 Cloud\" href=\"https://secureclubut.net/help/amo/ml_login.html\" target=\"_blank\" rel=\"noopener\">Activ8 Cloud interface.</a></li>\r\n 	<li>Navigate to the Admin drawer, then the system settings folder.</li>\r\n 	<li>Click \"Give Activ8 Commerce access to my UPS account.\"</li>\r\n 	<li>You will be prompted to enter your UPS username and password.</li>\r\n</ol>\r\n[highlight color=\"\"]Only complete this process on or after April 30th[/highlight] to avoid any disruptions in your shipping operations.\r\n\r\nIf you have any questions or encounter any issues, feel free to reach out to our support team for assistance.\r\n\r\nThank you for your attention to this matter.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','UPS Critical Update','','publish','closed','open','','ups-critical-update','','','2024-04-23 09:27:12','2024-04-23 16:27:12','',0,'https://activeclubsolutions.net/?p=4206',0,'post','',0),
(4207,21,'2024-03-28 12:58:06','2024-03-28 19:58:06','','Feed pics','','inherit','closed','closed','','feed-pics','','','2024-03-28 12:58:06','2024-03-28 19:58:06','',4206,'https://activeclubsolutions.net/wp-content/uploads/2024/03/Feed-pics.gif',0,'attachment','image/gif',0),
(4209,0,'2024-03-28 20:01:15','2024-03-28 20:01:15','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/Feed-pics.gif\"><img class=\"alignnone wp-image-4207 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/03/Feed-pics.gif\" alt=\"\" width=\"300\" height=\"300\"></a><span>Starting April 12th, UPS is implementing a mandatory requirement for all users to connect their Activ8 Commerce and UPS accounts through the cloud. Failure to do so will result in the inability to print UPS labels.Activ8 Cloud login screen now allows you to display your password for added convenience.</span></h1>\n<p><span></span></p>\n<p>To ensure uninterrupted access to UPS label printing, please follow these steps:</p>\n<ol>\n<li>Log in to your <a title=\"Signing In Activ8 Cloud\" href=\"https://secureclubut.net/help/amo/ml_login.html\" target=\"_blank\" rel=\"noopener\">Activ8 Cloud interface.</a></li>\n<li>Navigate to the Admin drawer, then the system settings folder.</li>\n<li>Click “Give Activ8 Commerce access to my UPS account.”</li>\n<li>You will be prompted to enter your UPS username and password.</li>\n</ol>\n<p>Only complete this process on or after April 12th to avoid any disruptions in your shipping operations.</p>\n<p>If you have any questions or encounter any issues, feel free to reach out to our support team for assistance.</p>\n<p>Thank you for your attention to this matter.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/ups-critical-update/\">UPS Critical Update</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','UPS Critical Update','Starting April 12th, UPS is implementing a mandatory requirement for all users to connect their Activ8 Commerce and UPS accounts through the cloud. Failure to do so will result in the inability to print UPS labels.Activ8 Cloud login screen now allows you to display your password for added convenience. To ensure uninterrupted access to UPS […]\nThe post UPS Critical Update appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','ups-critical-update','','','2024-03-28 20:01:15','2024-03-28 20:01:15','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4209',0,'wprss_feed_item','',0),
(4210,21,'2024-04-05 14:46:04','2024-04-05 21:46:04','','April-16','','inherit','closed','closed','','feed-pics-1','','','2024-04-05 14:46:22','2024-04-05 21:46:22','',4206,'https://activeclubsolutions.net/wp-content/uploads/2024/03/Feed-pics-1.gif',0,'attachment','image/gif',0),
(4211,2,'2024-04-16 09:16:55','2024-04-16 16:16:55','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/04/Feed-pics-2.gif\"><img class=\"alignnone wp-image-4215 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/04/Feed-pics-2.gif\" alt=\"\" width=\"300\" height=\"300\" /></a><span style=\"font-size: 12pt;\">Please take note of these significant global updates: our integration with Clearent by Explor, UPS, Ship Compliant, Mailgun, CRV enhancements, and additional security features, among others.</span><!--more--></h1>\r\n<strong>Activ8 Cloud Updates:</strong>\r\n<ul>\r\n 	<li><strong>Enhanced Job Management Interface: </strong>Enjoy a new interface for updating scheduled jobs, enhancing management capabilities.</li>\r\n 	<li><strong>Enhanced Data Management: </strong>Now, delete credit card data when needed for improved data security.</li>\r\n 	<li><strong>Improved Shipping and Handling Sheets: </strong>Added ship type and ship via options for better shipping management.</li>\r\n 	<li><strong>SKU Generation: </strong>Generate SKU numbers directly in Cloud, mirroring Manager functionality for seamless SKU management.</li>\r\n 	<li><strong>Chrome for iPad users enhancement: </strong>Chrome now displays the keyboard on your iPad upon login for password data entry.</li>\r\n 	<li><strong>Enhanced Marketing Drawer: </strong>It now features two sheets, one of them includes the \"Member Since\" date, enhancing data availability for marketing purposes.</li>\r\n</ul>\r\n<strong>Activ8 Global Updates:</strong>\r\n<ul>\r\n 	<li><strong>UPS Integration Enhanced: </strong>Enjoy improved UPS integration for smoother shipping processes.</li>\r\n 	<li><strong>Enhanced Ship Compliant Check: </strong>Ship Compliant Check now functions seamlessly, even if shipping name and address are missing for Pickup transactions.</li>\r\n 	<li><strong>Introducing <a href=\"https://try.clearent.com/activeclubsolutions/\">Clearent Payment Processing</a> Integration: </strong>Seamlessly integrate Clearent Gateway for smoother payment processing.(not available on Activ8 iOS POS)</li>\r\n 	<li><strong>Enhanced Security Measures: </strong>Removing the credit card number from customer or vendor records now automatically deletes the token at the gateway, enhancing data security.</li>\r\n 	<li><strong>CRV Calculation Accuracy: </strong>Enjoy accurate CRV calculations for transaction selections made from case and pallet locations.</li>\r\n</ul>\r\n<strong>Activ8 Manager (Desktop) Updates:</strong>\r\n<ul>\r\n 	<li><strong>Improved User Guidance: </strong>Receive clear notifications in the job log if a card declines due to duplication, advising users to retry after 5 minutes.</li>\r\n 	<li><strong>Streamlined Invoicing: </strong>Wholesale requirements for emailing invoices have been removed for smoother operations.</li>\r\n 	<li><strong>Flexible Sales Receipts: </strong>Removed the necessity to ship a transaction before sending a sales receipt, providing greater flexibility.</li>\r\n 	<li><strong>Effortless Mailgun Integration: </strong>Seamlessly integrate Mailgun for efficient communication processes.</li>\r\n</ul>\r\n<strong>Activ8 POS Enhancements:</strong>\r\n<ul>\r\n 	<li><strong>Enhanced Data Privacy: </strong>Customer card data is no longer saved on automatically created customer records at checkout, ensuring enhanced data security.</li>\r\n 	<li><strong>Streamlined Shipping Refunds: </strong>Cloud POS users will now receive a prompt to void shipping labels when refunding shipping charges, enhancing efficiency.</li>\r\n 	<li><strong>Efficient Customer Record Management: </strong>Birth month is automatically inserted into customer records when provided during customer creation at POS.</li>\r\n 	<li><strong>Enhanced Access Control: </strong>As on Activ8 POS, only managers can now view the dashboard on iOS POS, ensuring secure access and proper management.</li>\r\n 	<li><strong>Improved Discount Management: </strong>Correct payment amounts are now reflected when adding discounts or promos during wholesale orders at checkout.</li>\r\n 	<li><strong>Inventory Adjustment: </strong>Voiding a swap now correctly adjusts inventory stock numbers for accurate inventory management.</li>\r\n</ul>\r\n<strong>Activ8 eCommerce Updates:</strong>\r\n<ul>\r\n 	<li><strong>Enhanced Online Registration: </strong>Customer registrations made online are now uploaded to Tock seamlessly.</li>\r\n</ul>\r\nThis release also includes important bug fixes for a smoother user experience.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Commerce Cloud, Manager and eCommerce release notes','','publish','closed','open','','activ8-commerce-cloud-manager-and-ecommerce-release-notes','','','2024-05-01 08:59:14','2024-05-01 15:59:14','',0,'https://activeclubsolutions.net/?p=4211',0,'post','',0),
(4213,21,'2024-04-16 09:16:32','2024-04-16 16:16:32','','Global-updates','','inherit','closed','closed','','global-updates','','','2024-04-16 09:16:32','2024-04-16 16:16:32','',4211,'https://activeclubsolutions.net/wp-content/uploads/2024/04/Global-updates.gif',0,'attachment','image/gif',0),
(4214,0,'2024-04-16 16:16:55','2024-04-16 16:16:55','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/04/Global-updates.gif\"><img class=\"alignnone wp-image-4213 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/04/Global-updates.gif\" alt=\"\" width=\"300\" height=\"300\"></a><span>Please take note of these significant global updates: our integration with Clearent by Explor, UPS, Ship Compliant, Mailgun, CRV enhancements, and additional security features, among others.</span><span></span></h1>\n<p><strong>Activ8 Global Updates:</strong></p>\n<ul>\n<li><strong>UPS Integration Enhanced: </strong>Enjoy improved UPS integration for smoother shipping processes.</li>\n<li><strong>Enhanced Ship Compliant Check: </strong>Ship Compliant Check now functions seamlessly, even if shipping name and address are missing for Pickup transactions.</li>\n<li><strong>Introducing <a href=\"https://try.clearent.com/activeclubsolutions/\">Clearent Payment Processing</a> Integration: </strong>Seamlessly integrate Clearent Gateway for smoother payment processing.(not available on Activ8 iOS POS)</li>\n<li><strong>Enhanced Security Measures: </strong>Removing the credit card number from customer or vendor records now automatically deletes the token at the gateway, enhancing data security.</li>\n<li><strong>CRV Calculation Accuracy: </strong>Enjoy accurate CRV calculations for transaction selections made from case and pallet locations.</li>\n</ul>\n<p><strong>Activ8 Manager (Desktop) Updates:</strong></p>\n<ul>\n<li><strong>Improved User Guidance: </strong>Receive clear notifications in the job log if a card declines due to duplication, advising users to retry after 5 minutes.</li>\n<li><strong>Streamlined Invoicing: </strong>Wholesale requirements for emailing invoices have been removed for smoother operations.</li>\n<li><strong>Flexible Sales Receipts: </strong>Removed the necessity to ship a transaction before sending a sales receipt, providing greater flexibility.</li>\n<li><strong>Effortless Mailgun Integration: </strong>Seamlessly integrate Mailgun for efficient communication processes.</li>\n</ul>\n<p><strong>Activ8 POS Enhancements:</strong></p>\n<ul>\n<li><strong>Enhanced Data Privacy: </strong>Customer card data is no longer saved on automatically created customer records at checkout, ensuring enhanced data security.</li>\n<li><strong>Streamlined Shipping Refunds: </strong>Cloud POS users will now receive a prompt to void shipping labels when refunding shipping charges, enhancing efficiency.</li>\n<li><strong>Efficient Customer Record Management: </strong>Birth month is automatically inserted into customer records when provided during customer creation at POS.</li>\n<li><strong>Enhanced Access Control: </strong>As on Activ8 POS, only managers can now view the dashboard on iOS POS, ensuring secure access and proper management.</li>\n<li><strong>Improved Discount Management: </strong>Correct payment amounts are now reflected when adding discounts or promos during wholesale orders at checkout.</li>\n<li><strong>Inventory Adjustment: </strong>Voiding a swap now correctly adjusts inventory stock numbers for accurate inventory management.</li>\n</ul>\n<p><strong>Activ8 eCommerce Updates:</strong></p>\n<ul>\n<li><strong>Enhanced Online Registration: </strong>Customer registrations made online are now uploaded to Tock seamlessly.</li>\n</ul>\n<p><strong>Activ8 Cloud Updates:</strong></p>\n<ul>\n<li><strong>Enhanced Job Management Interface: </strong>Enjoy a new interface for updating scheduled jobs, enhancing management capabilities.</li>\n<li><strong>Enhanced Data Management: </strong>Now, delete credit card data when needed for improved data security.</li>\n<li><strong>Improved Shipping and Handling Sheets: </strong>Added ship type and ship via options for better shipping management.</li>\n<li><strong>SKU Generation: </strong>Generate SKU numbers directly in Cloud, mirroring Manager functionality for seamless SKU management.</li>\n<li><strong>Chrome for iPad users enhancement: </strong>Chrome now displays the keyboard on your iPad upon login for password data entry.</li>\n<li><strong>Enhanced Marketing Drawer: </strong>It now features two sheets, one of them includes the “Member Since” date, enhancing data availability for marketing purposes.</li>\n</ul>\n<p>This release also includes important bug fixes for a smoother user experience.</p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/activ8-commerce-cloud-manager-and-ecommerce-release-notes/\">Activ8 Commerce Cloud, Manager and eCommerce release notes</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Activ8 Commerce Cloud, Manager and eCommerce release notes','Please take note of these significant global updates: our integration with Clearent by Explor, UPS, Ship Compliant, Mailgun, CRV enhancements, and additional security features, among others. Activ8 Global Updates: UPS Integration Enhanced: Enjoy improved UPS integration for smoother shipping processes. Enhanced Ship Compliant Check: Ship Compliant Check now functions seamlessly, even if shipping name and address are […]\nThe post Activ8 Commerce Cloud, Manager and eCommerce release notes appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','activ8-commerce-cloud-manager-and-ecommerce-release-notes','','','2024-04-16 16:16:55','2024-04-16 16:16:55','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4214',0,'wprss_feed_item','',0),
(4215,21,'2024-04-16 15:52:48','2024-04-16 22:52:48','','global-updates-41624','','inherit','closed','closed','','feed-pics-2','','','2024-04-16 15:53:17','2024-04-16 22:53:17','',4211,'https://activeclubsolutions.net/wp-content/uploads/2024/04/Feed-pics-2.gif',0,'attachment','image/gif',0),
(4216,21,'2024-04-23 09:26:19','2024-04-23 16:26:19','','April-30','','inherit','closed','closed','','feed-pics-3','','','2024-04-23 09:26:28','2024-04-23 16:26:28','',4206,'https://activeclubsolutions.net/wp-content/uploads/2024/03/Feed-pics-3.gif',0,'attachment','image/gif',0),
(4217,2,'2024-04-24 10:29:06','2024-04-24 17:29:06','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/04/Feed-pics.png\"><img class=\"alignnone wp-image-4218 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/04/Feed-pics.png\" alt=\"\" width=\"300\" height=\"300\" /></a><span style=\"font-size: 12pt;\">Ever wondered how to effortlessly organize your images and craft stunning email communications?</span></h1>\r\n<!--more-->\r\n\r\nEver wondered how to effortlessly organize your images and craft stunning email communications? Look no further than Activ8 Cloud. While Activ8 Manager boasts impressive custom features, <strong>Activ8 Cloud</strong> is your essential tool for mastering image management and email template creation.\r\n\r\nReach out to <a href=\"mailto:support@activeclubsolutions.com\">support@activeclubsolutions.com</a> today to receive your <strong>Cloud link</strong>. It\'s time to delve into the world of Activ8 Commerce and discover new ways to streamline your workflow and enhance your communications on any device.\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Why Activ8 Cloud is necessary to manage your images','','publish','closed','open','','why-activ8-cloud-is-necessary-to-manage-your-images','','','2024-05-14 07:45:34','2024-05-14 14:45:34','',0,'https://activeclubsolutions.net/?p=4217',0,'post','',0),
(4218,21,'2024-04-23 12:35:16','2024-04-23 19:35:16','','Feed pics','','inherit','closed','closed','','feed-pics-4','','','2024-04-23 12:35:16','2024-04-23 19:35:16','',4217,'https://activeclubsolutions.net/wp-content/uploads/2024/04/Feed-pics.png',0,'attachment','image/png',0),
(4220,0,'2024-04-24 17:29:06','2024-04-24 17:29:06','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/04/Feed-pics.png\"><img class=\"alignnone wp-image-4218 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/04/Feed-pics.png\" alt=\"\" width=\"300\" height=\"300\"></a><span>Ever wondered how to effortlessly organize your images and craft stunning email communications?</span></h1>\n<p><span></span></p>\n<p>Ever wondered how to effortlessly organize your images and craft stunning email communications? Look no further than Activ8 Cloud. While Activ8 Manager boasts impressive custom features, <strong>Activ8 Cloud</strong> is your essential tool for mastering image management and email template creation.</p>\n<p>Reach out to <a href=\"mailto:support@activeclubsolutions.com\">support@activeclubsolutions.com</a> today to receive your <strong>Cloud link</strong>. It’s time to delve into the world of Activ8 Commerce and discover new ways to streamline your workflow and enhance your communications on any device.</p>\n<p> </p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/why-activ8-cloud-is-necessary-to-manage-your-images/\">Why Activ8 Cloud is necessary to manage your images</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Why Activ8 Cloud is necessary to manage your images','Ever wondered how to effortlessly organize your images and craft stunning email communications? Ever wondered how to effortlessly organize your images and craft stunning email communications? Look no further than Activ8 Cloud. While Activ8 Manager boasts impressive custom features, Activ8 Cloud is your essential tool for mastering image management and email template creation. Reach out […]\nThe post Why Activ8 Cloud is necessary to manage your images appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','why-activ8-cloud-is-necessary-to-manage-your-images','','','2024-04-24 17:29:06','2024-04-24 17:29:06','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4220',0,'wprss_feed_item','',0),
(4221,2,'2024-05-01 09:05:58','2024-05-01 16:05:58','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/05/Feed-pics-4.gif\"><img class=\"alignnone wp-image-4222 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/05/Feed-pics-4.gif\" alt=\"\" width=\"300\" height=\"300\" /></a><strong style=\"font-size: 16px;\">Your Wholesale Sales Channel is now available in Activ8 Cloud: </strong><span style=\"font-size: 16px;\">Effectively oversee your wholesale sales channel through Activ8 Cloud. Manage buyers and sales orders seamlessly. </span><a style=\"font-size: 16px;\" href=\"https://email.mail.activeclubsolutions.com/c/eJw8z79qwzAQgPGnkbea01n-o0FDmuChUChkaLdyli614WQFSW7p2xcydP_g4xdcAPLcBKq0UGF38nX75rMcy-W5YadHbfpxmrBvbjlFCiE7-k9KkqNuaS-tT7FZHfgOxwE8E1o7dX4Ba5dphGFYBnPTY7O5dw76lX4R0MDUd8a0ZoAnGAFQjwBaA2pl4I0ylSQ9to_b1EryJI24tdZ7Ud1J4axwLuyPzF6O5ajtzlXhvLLcFc4Uk8I5yucH-bpfqFK71igKu581CRcSbrJbWXhnv1K8a2t7ZeAr0iYPTmafcthCcS9X0LofrD1fQRvdD_gXAAD__6bzYgE\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://email.mail.activeclubsolutions.com/c/eJw8z79qwzAQgPGnkbea01n-o0FDmuChUChkaLdyli614WQFSW7p2xcydP_g4xdcAPLcBKq0UGF38nX75rMcy-W5YadHbfpxmrBvbjlFCiE7-k9KkqNuaS-tT7FZHfgOxwE8E1o7dX4Ba5dphGFYBnPTY7O5dw76lX4R0MDUd8a0ZoAnGAFQjwBaA2pl4I0ylSQ9to_b1EryJI24tdZ7Ud1J4axwLuyPzF6O5ajtzlXhvLLcFc4Uk8I5yucH-bpfqFK71igKu581CRcSbrJbWXhnv1K8a2t7ZeAr0iYPTmafcthCcS9X0LofrD1fQRvdD_gXAAD__6bzYgE&amp;source=gmail&amp;ust=1714665230878000&amp;usg=AOvVaw3OhhjJEp4hcZ8XAPnejQtr\">Learn more in the Activ8 Commerce Help app</a><span style=\"font-size: 16px;\">.</span></h1>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Wholesale in Activ8 Cloud','','publish','closed','open','','wholesale-in-activ8-cloud','','','2024-05-01 09:05:58','2024-05-01 16:05:58','',0,'https://activeclubsolutions.net/?p=4221',0,'post','',0),
(4222,21,'2024-05-01 09:04:45','2024-05-01 16:04:45','','Feed pics (4)','','inherit','closed','closed','','feed-pics-4-2','','','2024-05-01 09:04:45','2024-05-01 16:04:45','',4221,'https://activeclubsolutions.net/wp-content/uploads/2024/05/Feed-pics-4.gif',0,'attachment','image/gif',0),
(4224,0,'2024-05-01 16:05:58','2024-05-01 16:05:58','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/05/Feed-pics-4.gif\"><img class=\"alignnone wp-image-4222 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/05/Feed-pics-4.gif\" alt=\"\" width=\"300\" height=\"300\"></a><strong>Your Wholesale Sales Channel is now available in Activ8 Cloud: </strong><span>Effectively oversee your wholesale sales channel through Activ8 Cloud. Manage buyers and sales orders seamlessly. </span><a href=\"https://email.mail.activeclubsolutions.com/c/eJw8z79qwzAQgPGnkbea01n-o0FDmuChUChkaLdyli614WQFSW7p2xcydP_g4xdcAPLcBKq0UGF38nX75rMcy-W5YadHbfpxmrBvbjlFCiE7-k9KkqNuaS-tT7FZHfgOxwE8E1o7dX4Ba5dphGFYBnPTY7O5dw76lX4R0MDUd8a0ZoAnGAFQjwBaA2pl4I0ylSQ9to_b1EryJI24tdZ7Ud1J4axwLuyPzF6O5ajtzlXhvLLcFc4Uk8I5yucH-bpfqFK71igKu581CRcSbrJbWXhnv1K8a2t7ZeAr0iYPTmafcthCcS9X0LofrD1fQRvdD_gXAAD__6bzYgE\" target=\"_blank\" rel=\"noopener\" data-saferedirecturl=\"https://www.google.com/url?q=https://email.mail.activeclubsolutions.com/c/eJw8z79qwzAQgPGnkbea01n-o0FDmuChUChkaLdyli614WQFSW7p2xcydP_g4xdcAPLcBKq0UGF38nX75rMcy-W5YadHbfpxmrBvbjlFCiE7-k9KkqNuaS-tT7FZHfgOxwE8E1o7dX4Ba5dphGFYBnPTY7O5dw76lX4R0MDUd8a0ZoAnGAFQjwBaA2pl4I0ylSQ9to_b1EryJI24tdZ7Ud1J4axwLuyPzF6O5ajtzlXhvLLcFc4Uk8I5yucH-bpfqFK71igKu581CRcSbrJbWXhnv1K8a2t7ZeAr0iYPTmafcthCcS9X0LofrD1fQRvdD_gXAAD__6bzYgE&amp;source=gmail&amp;ust=1714665230878000&amp;usg=AOvVaw3OhhjJEp4hcZ8XAPnejQtr\">Learn more in the Activ8 Commerce Help app</a><span>.</span></h1>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/wholesale-in-activ8-cloud/\">Wholesale in Activ8 Cloud</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Wholesale in Activ8 Cloud','Your Wholesale Sales Channel is now available in Activ8 Cloud: Effectively oversee your wholesale sales channel through Activ8 Cloud. Manage buyers and sales orders seamlessly. Learn more in the Activ8 Commerce Help app. The Λctiv8 Team © 2023 Λctiv8Commerce/Active Club Solutions, Inc.\nThe post Wholesale in Activ8 Cloud appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','wholesale-in-activ8-cloud','','','2024-05-01 16:05:58','2024-05-01 16:05:58','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4224',0,'wprss_feed_item','',0),
(4225,2,'2024-05-03 11:03:47','2024-05-03 18:03:47','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/05/smiling-waitress-using-a8-system-less-blur-scaled.jpg\"><img class=\"alignnone wp-image-4226 size-medium\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/05/smiling-waitress-using-a8-system-less-blur-300x150.jpg\" alt=\"\" width=\"300\" height=\"150\" /></a><span style=\"font-size: 12pt;\">Switching to Activ8 POS is not only beneficial but also cost-effective.</span></h1>\r\n<!--more-->\r\n\r\nEnjoy the same great features as our Activ8 IOS POS without any additional cost. With Activ8, you\'ll experience a seamless transition to a user-friendly, intuitive platform that works on all your devices. (Works on all recent devices with updated OS and browser)\r\n\r\nTake advantage of better payment processor options and modern cloud credit card readers without breaking the bank. <a title=\"Check out Clearent\" href=\"http://https//try.clearent.com/activeclubsolutions/\" target=\"_blank\" rel=\"noopener\">Clearent</a> and <a title=\"Check out Worldpay\" href=\"http://https//go.worldpay.com/activeclub.html\" target=\"_blank\" rel=\"noopener\">Worldpay</a> payment processing can offer competitive rates when you use<strong> Activ8 POS. (Cloud version only)</strong>\r\n\r\nMake the switch today for a smoother, more profitable business operation.\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Seamless Transition to Activ8 POS and savings on payment processing','','publish','closed','open','','seamless-transition-to-activ8-pos-and-savings-on-payment-processing','','','2024-05-14 07:45:22','2024-05-14 14:45:22','',0,'https://activeclubsolutions.net/?p=4225',0,'post','',0),
(4226,21,'2024-05-01 11:06:47','2024-05-01 18:06:47','','smiling-waitress-using-a8-system-less-blur','','inherit','closed','closed','','smiling-waitress-using-a8-system-less-blur','','','2024-05-01 11:06:47','2024-05-01 18:06:47','',4225,'https://activeclubsolutions.net/wp-content/uploads/2024/05/smiling-waitress-using-a8-system-less-blur.jpg',0,'attachment','image/jpeg',0),
(4228,0,'2024-05-03 18:03:47','2024-05-03 18:03:47','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/05/smiling-waitress-using-a8-system-less-blur-scaled.jpg\"><img class=\"alignnone wp-image-4226 size-medium\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/05/smiling-waitress-using-a8-system-less-blur-300x150.jpg\" alt=\"\" width=\"300\" height=\"150\"></a><span>Switching to Activ8 POS is not only beneficial but also cost-effective.</span></h1>\n<p><span></span></p>\n<p>Enjoy the same great features as our Activ8 IOS POS without any additional cost. With Activ8, you’ll experience a seamless transition to a user-friendly, intuitive platform that works on all your devices. (Works on all recent devices with updated OS and browser)</p>\n<p>Take advantage of better payment processor options and modern cloud credit card readers without breaking the bank. <a title=\"Check out Clearent\" href=\"http://https//try.clearent.com/activeclubsolutions/\" target=\"_blank\" rel=\"noopener\">Clearent</a> and <a title=\"Check out Worldpay\" href=\"http://https//go.worldpay.com/activeclub.html\" target=\"_blank\" rel=\"noopener\">Worldpay</a> payment processing can offer competitive rates when you use<strong> Activ8 POS. (Cloud version only)</strong></p>\n<p>Make the switch today for a smoother, more profitable business operation.</p>\n<p> </p>\n<hr>\n<p>The Λctiv8 Team</p>\n<p align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/seamless-transition-to-activ8-pos-and-savings-on-payment-processing/\">Seamless Transition to Activ8 POS and savings on payment processing</a> appeared first on <a rel=\"nofollow\" href=\"https://activeclubsolutions.net/\">Winery POS Tasting Room POS mobile ipad POS wine club software</a>.</p>','Seamless Transition to Activ8 POS and savings on payment processing','Switching to Activ8 POS is not only beneficial but also cost-effective. Enjoy the same great features as our Activ8 IOS POS without any additional cost. With Activ8, you’ll experience a seamless transition to a user-friendly, intuitive platform that works on all your devices. (Works on all recent devices with updated OS and browser) Take advantage […]\nThe post Seamless Transition to Activ8 POS and savings on payment processing appeared first on Winery POS Tasting Room POS mobile ipad POS wine club software.','publish','closed','closed','','seamless-transition-to-activ8-pos-and-savings-on-payment-processing','','','2024-05-03 18:03:47','2024-05-03 18:03:47','',0,'https://activeclubsolutions.net/?post_type=wprss_feed_item&p=4228',0,'wprss_feed_item','',0),
(4230,2,'2024-07-24 12:00:31','2024-07-24 19:00:31','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/07/ACTIV-POS-CLOUD.png\"><img class=\"alignnone size-medium wp-image-4247\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/07/ACTIV-POS-CLOUD-300x210.png\" alt=\"Activ8 POS\" width=\"300\" height=\"210\" /></a>\r\n<div class=\"flex-1 overflow-hidden\">\r\n<div class=\"h-full\">\r\n<div class=\"react-scroll-to-bottom--css-golsg-79elbk h-full\">\r\n<div class=\"react-scroll-to-bottom--css-golsg-1n7m0yu\">\r\n<div class=\"flex flex-col text-sm md:pb-9\">\r\n<div class=\"w-full text-token-text-primary\" dir=\"auto\" data-testid=\"conversation-turn-3\" data-scroll-anchor=\"true\">\r\n<div class=\"text-base py-[18px] px-3 md:px-4 m-auto md:px-5 lg:px-1 xl:px-5\">\r\n<div class=\"mx-auto flex flex-1 gap-4 text-base md:gap-5 lg:gap-6 md:max-w-3xl lg:max-w-[40rem] xl:max-w-[48rem]\">\r\n<div class=\"group/conversation-turn relative flex w-full min-w-0 flex-col agent-turn\">\r\n<div class=\"flex-col gap-1 md:gap-3\">\r\n<div class=\"flex flex-grow flex-col max-w-full\">\r\n<div class=\"min-h-[20px] text-message flex w-full flex-col items-end gap-2 whitespace-pre-wrap break-words [.text-message+&amp;]:mt-5 overflow-x-auto\" dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"61058d47-8c61-41e6-a238-4c0ab4d4fc84\">\r\n<div class=\"flex w-full flex-col gap-1 empty:hidden first:pt-[3px]\">\r\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\r\n\r\n<strong>Q: How user-friendly is the new POS system?</strong>\r\nA: The new POS system is very user-friendly and easy to learn. It features a great touchscreen interface that enhances usability. It is also very fast.\r\n\r\n<strong>Q: Can I use the new POS system on any device?</strong>\r\nA: Yes, you can use the new POS system on any device connected to the internet, as long as the operating system is current. This is important for ensuring the best security and functionality.\r\n\r\n<strong>Q: Why do I need a current operating system for the new POS system?</strong>\r\nA: A current operating system guarantees the best security and functionality. Using an obsolete version puts you at risk and may limit the performance of the POS system. (This is true for all browser-based or native apps)\r\n\r\n<strong>Q: Do I need to switch credit card processors when adopting the new POS system?</strong>\r\nA: No, you do not need to switch credit card processors. However, this may lead to long-term savings, so it\'s important to explore your options.\r\n\r\n<strong>Q: What are the costs associated with switching credit card processors?</strong>\r\nA: The costs include fees for token transfer and purchasing new card readers. These costs might be offset in the long term if you secure better rates than you currently have.\r\n\r\n<strong>Q: Will I need new card readers with the new POS system?</strong>\r\nA: You may or may not need new card readers when updating your POS. Keep in mind that new card readers are often required regularly due to the fast evolution of payment technologies.\r\n\r\n<strong>Q: Will I need new receipt printers with the new POS system?</strong>\r\nA: You may or may not need a new receipt printer, depending on the device you use.\r\n<p style=\"padding-left: 40px;\"><strong>Q: Which printers are supported by Activ8 Solutions?</strong>\r\nA: Activ8 Solutions supports the Star Micronics TSP100 series and Star Micronics mC-Print3 printers.</p>\r\n<p style=\"padding-left: 40px;\"><strong>Q: Which version of these printers does Activ8 Solutions recommend?</strong>\r\nA: Activ8 Solutions strongly recommends using the \"CloudPRNT\" version of these printers because it is easier to configure.</p>\r\n<p style=\"padding-left: 40px;\"><strong>Q: Can I use a local network printer instead of the CloudPRNT version?</strong>\r\nA: Yes, you can use a local network printer, but you must use the LAN or wireless version only. Please note that USB and Bluetooth printers are not supported.</p>\r\n<p style=\"padding-left: 40px;\"><strong>Q: Is local printing from a web browser supported on iPads or tablets?</strong>\r\nA: No, local printing from a web browser is not supported on iPads or any other kind of tablet. Tablet users must use the CloudPRNT version of the supported printers to print from a web browser.</p>\r\n<strong>Q: Do I need a card reader for each device running Activ8 POS?</strong>\r\nA: No, one card reader can serve multiple devices or stations, so you don\'t need a reader for each device.\r\n\r\n<strong>Q: What if I want to keep using my older system and card readers?</strong>\r\nA: We will support the previous version of your POS until July 1st, 2025. However, we cannot control the obsolescence of credit card readers, which may stop working unexpectedly.\r\n\r\n<strong>Q: How should I prepare for the transition to the new POS system?</strong>\r\nA: We encourage you to start planning your transition early to prevent any disruptions. This ensures that your POS and payment systems continue to work seamlessly when you open for business.\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','FAQs: What to Expect When Upgrading to the new Activ8 POS','','publish','closed','open','','faqs-what-to-expect-when-switching-to-the-new-activ8-pos','','','2024-08-28 12:12:38','2024-08-28 19:12:38','',0,'https://activeclubsolutions.net/?p=4230',0,'post','',0),
(4231,2,'2024-06-12 13:15:16','2024-06-12 20:15:16','&nbsp;\r\n\r\n<span style=\"color: black; font-family: Helvetica, sans-serif; font-size: 14.5pt;\">The </span><span style=\"color: black; font-family: Helvetica, sans-serif; font-size: 14.5pt;\">following hardware has been tested and verified compatible with Activ</span><i style=\"color: black; font-family: Helvetica, sans-serif; font-size: 14.5pt;\">8</i><span style=\"color: black; font-family: Helvetica, sans-serif; font-size: 14.5pt;\">POS:</span>\r\n<div class=\"WordSection1\">\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #999999;\"><span style=\"color: black;\"><a href=\"https://www.secureclub.net/Help/webpos/index.html?wpos_start.html#browser\" target=\"wposhelp\" rel=\"noopener\"><b><span style=\"font-size: 16.0pt; font-family: \'Arial\',sans-serif; color: #0000cc; text-transform: uppercase;\">Web browser</span></b></a></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #DDDDDD;\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Cloud POS runs well in most graphics-mode web browsers. (JavaScript must be enabled.) The operating System needs to be the latest or recent version. Browsers on deprecated devices/computers/tablets which are no longer receiving security updates will not work.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #999999;\"><span style=\"color: black;\"><a href=\"https://www.secureclub.net/Help/webpos/index.html?wpos_tools.html#reader\" target=\"wposhelp\" rel=\"noopener\"><b><span style=\"font-size: 16.0pt; font-family: \'Arial\',sans-serif; color: #0000cc; text-transform: uppercase;\">Credit-card reader</span></b></a></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #E8E8E8;\"><b><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">WorldPay</span></b><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">:</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #E8E8E8; margin: 3.0pt 0in 6.0pt 31.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"color: black;\"><a href=\"https://ingenico.com/us-en/products-services/payment-terminals/link2500-series\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">Ingenico Link/2500</span></a></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #E8E8E8; margin: 3.0pt 0in 6.0pt 31.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"color: black;\"><a href=\"https://ingenico.com/us-en/products-services/payment-terminals/lane3000\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">Ingenico Lane/3000</span></a></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #E8E8E8; margin: 3.0pt 0in 6.0pt 31.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"color: black;\"><a href=\"https://ingenico.com/us-en/products-services/payment-terminals/lane7000-8000\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">Ingenico Lane/7000</span></a></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #E8E8E8; margin: 3.0pt 0in 6.0pt 31.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"color: black;\"><a href=\"https://ingenico.com/us-en/products-services/payment-terminals/move5000\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">Ingenico Move/5000</span></a></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #E8E8E8;\"><b><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">OpenEdge</span></b><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">: <b>COMING SOON…</b></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #E8E8E8; margin: 3.0pt 0in 6.0pt 31.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"color: black;\"><a href=\"https://www.verifone.com/en/us/devices/portables-transportables/v400m\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">Verifone V400m</span></a></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #E8E8E8; margin: 3.0pt 0in 6.0pt 31.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"color: black;\"><a href=\"https://www.verifone.com/en/us/devices/mpos/e285\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">Verifone e285</span></a></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #E8E8E8; margin: 3.0pt 0in 6.0pt 31.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"color: black;\"><a href=\"https://www.verifone.com/en/us/devices/multilane/m400\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">Verifone\r\nM400</span></a></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #E8E8E8; margin: 3.0pt 0in 6.0pt 31.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"color: black;\"><a href=\"https://www.verifone.com/en/uk/devices/countertops-pinpads/p400\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">Verifone P400</span></a></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #E8E8E8; margin: 3.0pt 0in 6.0pt 31.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Genius\r\nHandheld</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #E8E8E8;\"><b><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Clearent</span></b><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">:</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #E8E8E8; margin: 3.0pt 0in 6.0pt 31.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"color: black;\"><a href=\"https://www.dejavoosystems.com/\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">DejaVoo</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> Z6,\r\nZ8, Z9, Z11</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #E8E8E8; margin: 3.0pt 0in 6.0pt 31.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Pax </span><span style=\"color: black;\"><a href=\"https://www.pax.us/products/pin-pads/a35/\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">A35</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">, </span><span style=\"color: black;\"><a href=\"https://www.pax.us/products/countertop/a80/\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">A80</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">, </span><span style=\"color: black;\"><a href=\"https://www.pax.us/products/mobile/a920/\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">A920Pro</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">, </span><span style=\"color: black;\"><a href=\"https://www.pax.us/products/countertop-pin-pads/s300/\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">S300</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">, </span><span style=\"color: black;\"><a href=\"https://www.pax.us/products/unattended-self-service/im30/\" target=\"wposhdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">IM30</span></a></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal;\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal;\"><b><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Card\r\nreaders are supplied by your credit-card payment processor.</span></b><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> If you plan on using more than one POS station in the tasting room, ensure that you have at least one spare card reader for each station. When using Cloud POS for offsite sales, consider stocking additional card readers.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #999999;\"><span style=\"color: black;\"><a href=\"https://www.secureclub.net/Help/webpos/index.html?wpos_tools.html#printer\" target=\"wposhelp\" rel=\"noopener\"><b><span style=\"font-size: 16.0pt; font-family: \'Arial\',sans-serif; color: #0000cc; text-transform: uppercase;\">Receipt printer</span></b></a></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; text-align: center; line-height: normal; background: #DDDDDD;\" align=\"center\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/printer.png\"><img class=\"size-full wp-image-4232 alignnone\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/printer.png\" alt=\"\" width=\"150\" height=\"150\" /></a></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #DDDDDD; margin: 3.0pt 0in 6.0pt 61.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"color: black;\"><a href=\"https://star-emea.com/pos-printers/\" target=\"wposhelp\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">Star Micronics</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> TSP100 series</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #DDDDDD; margin: 3.0pt 0in 6.0pt 61.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  </span></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Star Micronics mC-Print3</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #DDDDDD;\"><i><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Note</span></i><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">:\r\nBecause it is easier to configure, Λctiv8 Solutions strongly recommends that you use the </span><span style=\"color: black;\"><a href=\"https://www.secureclub.net/Help/webpos/wpos_tools.html#webprint\" target=\"wposhelp\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">\"CloudPRNT\" version</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> of these printers. If you decide to use a local network printer, use the LAN or wireless version only; <i>USB and Bluetooth printers are not supported</i>.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #DDDDDD;\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Note too that local printing from a web browser is <i>not</i> supported on iPad or any other kind of tablet. To print from a web browser, tablet users\r\nmust use the “CloudPRNT” version of the supported printers.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #DDDDDD;\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #999999;\"><span style=\"color: black;\"><a href=\"https://www.secureclub.net/Help/webpos/index.html?wpos_tools.html#drawer\" target=\"wposhelp\" rel=\"noopener\"><b><span style=\"font-size: 16.0pt; font-family: \'Arial\',sans-serif; color: #0000cc; text-transform: uppercase;\">Cash drawer</span></b></a></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; margin: 3.0pt 0in 6.0pt 61.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§<span style=\"font: 7.0pt \'Times New Roman\';\">  <a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/cash.png\"><img class=\"alignnone size-full wp-image-4233\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/cash.png\" alt=\"\" width=\"143\" height=\"92\" /></a></span></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Star Micronics </span><a href=\"https://www.starmicronics.com/pages/SMD2-1317\" target=\"poshdwr\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">SMD2-1317 Mobility</span></a><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> Cash Drawer</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; margin-left: .25in; line-height: normal;\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">(or any cash drawer supported by the Star Micronics printers).</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal;\"><span style=\"font-size: 12.0pt; font-family: \'Times New Roman\',serif;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #999999;\"><span style=\"color: black;\"><a href=\"https://www.secureclub.net/Help/amo/index.html?ml_StoreList-Actions-labels.html\" target=\"amohelp\" rel=\"noopener\"><b><span style=\"font-size: 16.0pt; font-family: \'Arial\',sans-serif; color: #0000cc; text-transform: uppercase;\">Shipping-label printer</span></b></a></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #DDDDDD; margin: 3.0pt 0in 6.0pt 46.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§ </span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Zebra </span><span style=\"color: black;\"><a href=\"https://www.zebra.com/us/en/support-downloads/printers/desktop/zp450.html\" target=\"wposhelp\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">Zebra ZP 450</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> (UPS, GLS)<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/label.png\"><img class=\" wp-image-4234 alignright\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/label.png\" alt=\"\" width=\"119\" height=\"109\" /></a></span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #DDDDDD; margin: 3.0pt 0in 6.0pt 46.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§ </span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Zebra </span><span style=\"color: black;\"><a href=\"https://www.zebra.com/us/en/support-downloads/printers/desktop/zp500.html\" target=\"wposhelp\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">ZP 500/ZP 505</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> (FedEx)</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: -.25in; line-height: normal; background: #DDDDDD; margin: 3.0pt 0in 6.0pt 46.5pt;\"><span style=\"font-size: 10.0pt; font-family: Wingdings; color: black;\">§ </span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Zebra ZD450/</span><span style=\"color: black;\"><a href=\"https://www.zebra.com/us/en/products/spec-sheets/printers/desktop/zd420.html\" target=\"wposhelp\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">ZD420</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">/</span><span style=\"color: black;\"><a href=\"https://www.zebra.com/us/en/products/spec-sheets/printers/desktop/zd421-series.html\" target=\"wposhelp\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">ZD421D</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">/</span><span style=\"color: black;\"><a href=\"https://www.zebra.com/us/en/products/spec-sheets/printers/desktop/zd220.html\" target=\"wposhelp\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">ZD220</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">/</span><span style=\"color: black;\"><a href=\"https://www.zebra.com/gb/en/products/spec-sheets/printers/desktop/zd230.html\" target=\"wposhelp\" rel=\"noopener\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: #0000cc;\">ZD230</span></a></span><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> (GLS)</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #DDDDDD;\"><i><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Note</span></i><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">: Label printers are usually configured for use with a specific shipper (UPS, FedEx, GLS). Drivers and support for these models are provided by the shipper (not the manufacturer).</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #DDDDDD;\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal; background: #999999;\"><b><span style=\"font-size: 16.0pt; font-family: \'Arial\',sans-serif; color: #575757; text-transform: uppercase;\">Barcode scanner</span></b></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; text-align: center; line-height: normal;\" align=\"center\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/barcode.png\"><img class=\"alignnone size-full wp-image-4235\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/barcode.png\" alt=\"\" width=\"90\" height=\"80\" /></a></p>\r\n<p class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal;\"><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\">Most barcode scanners — Bluetooth or USB — will work correctly with their factory settings. Scanners must be in “basic” mode, with the terminator character set to “CR.” See your scannerʼs instructions or the manufacturerʼs web page for details.</span></p>\r\n\r\n<div class=\"MsoNormal\" style=\"text-align: center; line-height: normal; margin: 24.0pt 0in 0in 0in;\" align=\"center\">\r\n\r\n<hr style=\"color: black;\" align=\"center\" noshade=\"noshade\" size=\"2\" width=\"100%\" />\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<p class=\"MsoNormal\" style=\"line-height: normal; margin: 9.0pt 9.0pt 9.0pt 0in;\"><b><span style=\"font-size: 14.5pt; font-family: \'Helvetica\',sans-serif; color: black;\"> </span></b></p>\r\n<p class=\"MsoNormal\"></p>\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;','Activ8 POS Hardware Information','','publish','closed','open','','activ8-pos-hardware-information','','','2024-06-14 11:37:06','2024-06-14 18:37:06','',0,'https://activeclubsolutions.net/?p=4231',0,'post','',0),
(4232,21,'2024-06-12 13:07:54','2024-06-12 20:07:54','','printer','','inherit','closed','closed','','printer','','','2024-06-12 13:07:54','2024-06-12 20:07:54','',4231,'https://activeclubsolutions.net/wp-content/uploads/2024/06/printer.png',0,'attachment','image/png',0),
(4233,21,'2024-06-12 13:09:39','2024-06-12 20:09:39','','cash','','inherit','closed','closed','','cash','','','2024-06-12 13:09:39','2024-06-12 20:09:39','',4231,'https://activeclubsolutions.net/wp-content/uploads/2024/06/cash.png',0,'attachment','image/png',0),
(4234,21,'2024-06-12 13:11:10','2024-06-12 20:11:10','','label','','inherit','closed','closed','','label','','','2024-06-12 13:11:10','2024-06-12 20:11:10','',4231,'https://activeclubsolutions.net/wp-content/uploads/2024/06/label.png',0,'attachment','image/png',0),
(4235,21,'2024-06-12 13:12:12','2024-06-12 20:12:12','','barcode','','inherit','closed','closed','','barcode','','','2024-06-12 13:12:12','2024-06-12 20:12:12','',4231,'https://activeclubsolutions.net/wp-content/uploads/2024/06/barcode.png',0,'attachment','image/png',0),
(4236,2,'2024-06-19 11:48:50','2024-06-19 18:48:50','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/Feed-pics-5.gif\"><img class=\"alignnone wp-image-4237 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/Feed-pics-5.gif\" alt=\"employee incentive\" width=\"300\" height=\"300\" /><strong>Are you growing your club sales and membership with the Activ8 Commerce built-in and automated staff incentive system? </strong></a><!--more--></h1>\r\nThis powerful feature is already included in your package, and activating it is quick and easy.\r\n\r\nTo get started, simply contact our support team at <a href=\"https://email.mail.activeclubsolutions.com/c/eJx8zr1q7DAQQOGnsbprZkY_lgsVvhtC2CqwReqxpGUFsmUkeZ8_kECaQPoD5wsuAPsoAndeuUW3-J6e8ZLP9eW_iA4ntBanCUHca9k4hOr4J2klnz2VvY2-bOLhyFqLd6Msrlaxx5lJzrAGtkbqSUuR3EcMOF_PnYAUAqGG0Uj4BxMAIZKRBFoOCt65citZ0_i1s2MunrPI7tH7MchloNeNU-5lkEs7j6PUPij4pvlftOreYo57_CuJvtSQQnPXGyAapc3lBqhQGymejj4DAAD___XXXxk\">support@activeclubsolutions.com</a> to ensure this feature is turned on. All you need to do is decide the dollar amount you\'d like to award staff members for signing up new club members. Activ8 Commerce will handle the rest, making it effortless to manage and track staff incentives.\r\n\r\nDon’t miss out on this opportunity to motivate your team and boost your club’s growth. Reach out to our support team today and start seeing the benefits!\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Boost Your Club Sales and Membership with Activ8 Commerce\'s Automated Staff Incentive System','','publish','closed','open','','boost-your-club-sales-and-membership-with-activ8-commerces-automated-staff-incentive-system','','','2024-06-21 10:27:18','2024-06-21 17:27:18','',0,'https://activeclubsolutions.net/?p=4236',0,'post','',0),
(4237,21,'2024-06-19 11:46:35','2024-06-19 18:46:35','','staff-incentive','','inherit','closed','closed','','feed-pics-5','','','2024-06-19 11:47:26','2024-06-19 18:47:26','',4236,'https://activeclubsolutions.net/wp-content/uploads/2024/06/Feed-pics-5.gif',0,'attachment','image/gif',0),
(4239,2,'2024-06-21 10:26:52','2024-06-21 17:26:52','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/tips.gif\"><img class=\"alignnone wp-image-4240 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/06/tips.gif\" alt=\"\" width=\"300\" height=\"300\" />We added Smart User Tips to your Welcome Screen. </a></h1>\r\n<!--more-->\r\n\r\nThey\'ll appear in the right bottom corner of your Welcome Screen. If you don\'t see them, right-click on the clock and make sure the \"smart User Tips\" feed option is checked.\r\n\r\nThese tips are designed to enhance your user experience and keep you on top of your game. Enjoy!\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Check out the Smart User Tips!','','publish','closed','open','','check-out-the-smart-user-tips','','','2024-06-21 10:29:07','2024-06-21 17:29:07','',0,'https://activeclubsolutions.net/?p=4239',0,'post','',0),
(4240,21,'2024-06-21 10:22:47','2024-06-21 17:22:47','','tips','','inherit','closed','closed','','tips','','','2024-06-21 10:22:47','2024-06-21 17:22:47','',4239,'https://activeclubsolutions.net/wp-content/uploads/2024/06/tips.gif',0,'attachment','image/gif',0),
(4242,2,'2024-07-10 09:58:15','0000-00-00 00:00:00','<table style=\"width: 100%; background-color: rgb(255, 255, 255);\" border=\"0\" cellSpacing=\"0\" cellPadding=\"0\">\r\n    <tbody>\r\n        <tr>\r\n            <td>\r\n<!-- content table begins -->\r\n<table align=\"center\" style=\"width: 100%;\" border=\"0\" cellSpacing=\"0\" cellPadding=\"0\">\r\n    <tbody>\r\n        <tr>\r\n            <td cellpadding=\"0\" cellspacing=\"0\">&nbsp;</td>\r\n            <td style=\"width: 620px;\" cellpadding=\"0\" cellspacing=\"0\">\r\n<a href=\"https://activ8commerce.com/\" target=\"_blank\" rel=\"noopener\"><img width=\"620\" height=\"100\" alt=\"Activ8 Commerce\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/Activ8-Commerce-logo-wide.jpg\"></a></td>\r\n<td cellpadding=\"0\" cellspacing=\"0\">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n            <td colSpan=\"3\"><img width=\"1\" height=\"20\" style=\"border-width: 0px; border-style: solid;\" alt=\"\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/spacer.gif\"></td>\r\n</tr>\r\n<tr>\r\n            <td align=\"right\" style=\'background-position: right; background-image: url(\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/Activ8-POS-updated-left.jpg\"); background-repeat: no-repeat;\' cellpadding=\"0\" cellspacing=\"0\">&nbsp;</td>\r\n            <td style=\"width: 620px;\" cellpadding=\"0\" cellspacing=\"0\">\r\n<img width=\"620\" height=\"455\" alt=\"Activ8 POS\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/Activ8-ipads-new-order-2022.jpg\"></td>\r\n<td align=\"left\" style=\'background-position: left; background-image: url(\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/Activ8-POS-updated-right.jpg\"); background-repeat: no-repeat;\' cellpadding=\"0\" cellspacing=\"0\">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n            <td colSpan=\"3\"><img width=\"1\" height=\"1\" style=\"border-width: 0px; border-style: solid;\" alt=\"\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/spacer.gif\"></td>\r\n</tr>\r\n<tr>\r\n            <td cellpadding=\"0\" cellspacing=\"0\">&nbsp;</td>\r\n            <td style=\"width: 620px;\" cellpadding=\"0\" cellspacing=\"0\">\r\n<p style=\'margin: 28px 35px; color: rgb(51, 51, 51); font-family: \"Gill Sans\", Arial, \"sans-serif\"; font-size: 18px; font-weight: normal;\'>\r\nActiv8 Commerce is releasing the latest version of our Point of Sale <b>NEXT WEEK</b> with many new features to help speed up the checkout process!\r\n</p>\r\n\r\n<p style=\'margin: 28px 35px; color: rgb(51, 51, 51); font-family: \"Gill Sans\", Arial, \"sans-serif\"; font-size: 18px; font-weight: normal;\'> \r\n<b>Please note that if you do not want Activ8 Point of Sale automatically updating onto your iPads, you must turn off Auto Updates in the iPad\'s iTunes and App Store settings.</b>\r\n</p>\r\n\r\n<p style=\'margin: 28px 35px; color: rgb(51, 51, 51); font-family: \"Gill Sans\", Arial, \"sans-serif\"; font-size: 18px; font-weight: normal;\'> \r\nActiv8 Point of Sale version 2022.9.177 Release Notes\r\n</p>\r\n\r\n<ul style=\'margin: 28px 35px; color: rgb(51, 51, 51); font-family: \"Gill Sans\", Arial, \"sans-serif\"; font-size: 18px; font-weight: normal; list-style-type: disc;\'>\r\n<li>The \"New Order\" screen now has the option to show product icons for easier selection of items.</li>\r\n<li>Checkout screens have been updated with easier tip selection and receipt options selectable in POS Configuration settings.</li>\r\n<li>Sending text message receipts is now an option. If you would like to use this feature, please e-mail your request to support@activeclubsolutions.com and we will set it up.</li>\r\n<li>Customers can now easily view their order from the tip screen.</li>\r\n<li>A switch is now available that calculates suggested tips based on the order\'s pre-discounted sub-total instead of the after-discount price.</li>\r\n<li>Support has been added for the Lane 3000 and Chipper 3x credit card readers for Worldpay customers.</li>\r\n<li>Support has been added for the contactless-capable Chipper 2x credit card reader for Open Edge customers (Open Edge does not support the 2x reader within their OpenEdge Mobile App).</li>\r\n</ul>\r\n\r\n<p style=\'margin: 28px 35px; color: rgb(51, 51, 51); font-family: \"Gill Sans\", Arial, \"sans-serif\"; font-size: 18px; font-weight: normal;\'> \r\nPlease click on the following link to view a brief video of these features: <a href=\"https://player.vimeo.com/video/749028821?h=886bbd9d97\">Release Notes Video</a>\r\n</p>\r\n \r\n<tr>\r\n            <td colSpan=\"3\"><img width=\"1\" height=\"45\" style=\"border-width: 0px; border-style: solid;\" alt=\"\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/spacer.gif\">\r\n</td>\r\n</tr>\r\n\r\n<tr>\r\n            <td cellpadding=\"0\" cellspacing=\"0\">&nbsp;</td>\r\n            <td style=\"width: 620px;\" cellpadding=\"0\" cellspacing=\"0\">\r\n<a href=\"https://activ8commerce.com\"><img style=\"border: currentColor;\" alt=\"Activ8 Commerce Complete End-to-End System\" src=\"https://www.secureclub.net/images/ActiveClubMgmt/email-campaigns/Activ8-Commerce-Complete-End-to-End-System.jpg\"></a>\r\n<div>&nbsp;</div>\r\n                     </td>\r\n<td cellpadding=\"0\" cellspacing=\"0\">&nbsp;</td>\r\n</tr>\r\n    </tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n \r\n<tr>\r\n<td align=\"center\" style=\"width: 100%; background-color: rgb(235, 233, 233);\" cellpadding=\"2\">\r\n  <div>&nbsp;</div>\r\n                    <div>&nbsp; </div>\r\n <div style=\"text-align: center;\">\r\n                    <font color=\"#333333\" face=\'\"Gill Sans\", Arial, \"sans-serif\"\' style=\"font-size: 100%;\"><strong>For all the latest on Special Offers, Important POS Software Releases, and<br>Informative Articles on Sales in both the Winery and Distillery Industries<br>\r\nFollow Us <a style=\'color: rgb(123, 158, 58); font-family: \"Gill Sans\", Arial, \"sans-serif\";\' href=\"https://www.facebook.com/ActiveClubSolutions/\" target=\"_blank\" rel=\"noopener\">Facebook</a> ~ <a style=\'color: rgb(123, 158, 58); font-family: \"Gill Sans\", Arial, \"sans-serif\";\' href=\"https://www.linkedin.com/company/activ8-commerce/\" target=\"_blank\" rel=\"noopener\">LinkedIn</a> </strong></font>\r\n                    </div>\r\n                    <div>&nbsp;</div>\r\n                    <div>&nbsp; </div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n </table>\r\n','Activ8 Manager and Cloud - Release 2024.07.09','','draft','closed','open','','','','','2024-07-10 09:58:15','2024-07-10 16:58:15','',0,'https://activeclubsolutions.net/?p=4242',0,'post','',0),
(4243,2,'2024-07-10 10:04:30','2024-07-10 17:04:30','<h1><strong style=\"font-size: 16px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/07/Feed-pics-6.gif\"><img class=\"alignnone wp-image-4244 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/07/Feed-pics-6.gif\" alt=\"new version\" width=\"300\" height=\"300\" /></a>This new version addressed various minor bugs and issues to enhance overall system functionality. Release date 07/09/2024.</strong></h1>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Manager and Cloud Release 2024.07.09','','publish','closed','open','','activ8-manager-and-cloud-release-2024-07-09','','','2024-07-10 11:46:00','2024-07-10 18:46:00','',0,'https://activeclubsolutions.net/?p=4243',0,'post','',0),
(4244,21,'2024-07-10 10:02:31','2024-07-10 17:02:31','','Feed pics (6)','','inherit','closed','closed','','feed-pics-6','','','2024-07-10 10:02:44','2024-07-10 17:02:44','',4243,'https://activeclubsolutions.net/wp-content/uploads/2024/07/Feed-pics-6.gif',0,'attachment','image/gif',0),
(4247,21,'2024-07-24 11:47:29','2024-07-24 18:47:29','','ACTIV POS CLOUD','','inherit','closed','closed','','activ-pos-cloud','','','2024-07-24 11:47:49','2024-07-24 18:47:49','',4230,'https://activeclubsolutions.net/wp-content/uploads/2024/07/ACTIV-POS-CLOUD.png',0,'attachment','image/png',0),
(4249,21,'2024-07-24 11:50:34','0000-00-00 00:00:00','&lt;html&gt;\r\n\r\n&lt;head&gt;\r\n&lt;meta http-equiv=Content-Type content=\"text/html; charset=windows-1252\"&gt;\r\n&lt;meta name=Generator content=\"Microsoft Word 15 (filtered)\"&gt;\r\n&lt;style&gt;\r\n&lt;!--\r\n/* Font Definitions */\r\n@font-face\r\n{font-family:Helvetica;\r\npanose-1:2 11 6 4 2 2 2 2 2 4;}\r\n@font-face\r\n{font-family:Wingdings;\r\npanose-1:5 0 0 0 0 0 0 0 0 0;}\r\n@font-face\r\n{font-family:\"Cambria Math\";\r\npanose-1:2 4 5 3 5 4 6 3 2 4;}\r\n@font-face\r\n{font-family:Calibri;\r\npanose-1:2 15 5 2 2 2 4 3 2 4;}\r\n/* Style Definitions */\r\np.MsoNormal, li.MsoNormal, div.MsoNormal\r\n{margin-top:0in;\r\nmargin-right:0in;\r\nmargin-bottom:8.0pt;\r\nmargin-left:0in;\r\nline-height:107%;\r\nfont-size:11.0pt;\r\nfont-family:\"Calibri\",sans-serif;}\r\n.MsoPapDefault\r\n{margin-bottom:8.0pt;\r\nline-height:107%;}\r\n@page WordSection1\r\n{size:8.5in 11.0in;\r\nmargin:1.0in 1.0in 1.0in 1.0in;}\r\ndiv.WordSection1\r\n{page:WordSection1;}\r\n/* List Definitions */\r\nol\r\n{margin-bottom:0in;}\r\nul\r\n{margin-bottom:0in;}\r\n--&gt;\r\n&lt;/style&gt;\r\n\r\n&lt;/head&gt;\r\n\r\n&lt;body lang=EN-US link=blue vlink=\"#954F72\" style=\'word-wrap:break-word\'&gt;\r\n\r\n&lt;div class=WordSection1&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal\'&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;The\r\nfollowing hardware has been tested and verified compatible with Activ&lt;i&gt;8&lt;/i&gt;POS:&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal\'&gt;&lt;span\r\nstyle=\'font-size:12.0pt;font-family:\"Times New Roman\",serif\'&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#999999\'&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.secureclub.net/Help/webpos/index.html?wpos_start.html#browser\"\r\ntarget=wposhelp&gt;&lt;b&gt;&lt;span style=\'font-size:16.0pt;font-family:\"Arial\",sans-serif;\r\ncolor:#0000CC;text-transform:uppercase\'&gt;Web browser&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#DDDDDD\'&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Cloud\r\nPOS runs well in most graphics-mode web browsers. (JavaScript must be enabled.)\r\nOperating System needs to be latest or recent version. Browsers on deprecated\r\ndevices/computers/tablets which are no longer receiving security updates will\r\nnot work.&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#DDDDDD\'&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#999999\'&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.secureclub.net/Help/webpos/index.html?wpos_tools.html#reader\"\r\ntarget=wposhelp&gt;&lt;b&gt;&lt;span style=\'font-size:16.0pt;font-family:\"Arial\",sans-serif;\r\ncolor:#0000CC;text-transform:uppercase\'&gt;Credit-card reader&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#E8E8E8\'&gt;&lt;b&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;WorldPay&lt;/span&gt;&lt;/b&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;:&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:31.5pt;text-indent:-.25in;line-height:normal;background:#E8E8E8\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://ingenico.com/us-en/products-services/payment-terminals/link2500-series\"\r\ntarget=wposhdwr&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;Ingenico Link/2500&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:31.5pt;text-indent:-.25in;line-height:normal;background:#E8E8E8\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://ingenico.com/us-en/products-services/payment-terminals/lane3000\"\r\ntarget=wposhdwr&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;Ingenico Lane/3000&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:31.5pt;text-indent:-.25in;line-height:normal;background:#E8E8E8\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://ingenico.com/us-en/products-services/payment-terminals/lane7000-8000\"\r\ntarget=wposhdwr&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;Ingenico Lane/7000&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:31.5pt;text-indent:-.25in;line-height:normal;background:#E8E8E8\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://ingenico.com/us-en/products-services/payment-terminals/move5000\"\r\ntarget=wposhdwr&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;Ingenico Move/5000&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#E8E8E8\'&gt;&lt;b&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;OpenEdge&lt;/span&gt;&lt;/b&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;: &lt;b&gt;COMING\r\nSOON…&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:31.5pt;text-indent:-.25in;line-height:normal;background:#E8E8E8\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.verifone.com/en/us/devices/portables-transportables/v400m\"\r\ntarget=wposhdwr&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;Verifone V400m&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:31.5pt;text-indent:-.25in;line-height:normal;background:#E8E8E8\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a href=\"https://www.verifone.com/en/us/devices/mpos/e285\"\r\ntarget=wposhdwr&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;Verifone e285&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:31.5pt;text-indent:-.25in;line-height:normal;background:#E8E8E8\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.verifone.com/en/us/devices/multilane/m400\" target=wposhdwr&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:#0000CC\'&gt;Verifone\r\nM400&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:31.5pt;text-indent:-.25in;line-height:normal;background:#E8E8E8\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.verifone.com/en/uk/devices/countertops-pinpads/p400\"\r\ntarget=wposhdwr&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;Verifone P400&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:31.5pt;text-indent:-.25in;line-height:normal;background:#E8E8E8\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Genius\r\nHandheld&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#E8E8E8\'&gt;&lt;b&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Clearent&lt;/span&gt;&lt;/b&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;:&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:31.5pt;text-indent:-.25in;line-height:normal;background:#E8E8E8\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a href=\"https://www.dejavoosystems.com/\" target=wposhdwr&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:#0000CC\'&gt;DejaVoo&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;&amp;nbsp;Z6,\r\nZ8, Z9, Z11&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:31.5pt;text-indent:-.25in;line-height:normal;background:#E8E8E8\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Pax&amp;nbsp;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a href=\"https://www.pax.us/products/pin-pads/a35/\"\r\ntarget=wposhdwr&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;A35&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=\'font-size:14.5pt;font-family:\r\n\"Helvetica\",sans-serif;color:black\'&gt;,&amp;nbsp;&lt;/span&gt;&lt;span style=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.pax.us/products/countertop/a80/\" target=wposhdwr&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:#0000CC\'&gt;A80&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;,&amp;nbsp;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a href=\"https://www.pax.us/products/mobile/a920/\"\r\ntarget=wposhdwr&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;A920Pro&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=\'font-size:14.5pt;\r\nfont-family:\"Helvetica\",sans-serif;color:black\'&gt;,&amp;nbsp;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.pax.us/products/countertop-pin-pads/s300/\" target=wposhdwr&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:#0000CC\'&gt;S300&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;,&amp;nbsp;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.pax.us/products/unattended-self-service/im30/\"\r\ntarget=wposhdwr&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;IM30&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal\'&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;&lt;br\r\nclear=left&gt;\r\n&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal\'&gt;&lt;b&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Card\r\nreaders are supplied by your credit-card payment processor.&lt;/span&gt;&lt;/b&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;&amp;nbsp;If\r\nyou plan on using more than one POS station in the tasting room, ensure that\r\nyou have at least one spare card reader for each station. When using Cloud POS\r\nfor offsite sales, consider stocking additional card readers.&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#999999\'&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.secureclub.net/Help/webpos/index.html?wpos_tools.html#printer\"\r\ntarget=wposhelp&gt;&lt;b&gt;&lt;span style=\'font-size:16.0pt;font-family:\"Arial\",sans-serif;\r\ncolor:#0000CC;text-transform:uppercase\'&gt;Receipt printer&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal align=center style=\'margin-bottom:0in;text-align:center;\r\nline-height:normal;background:#DDDDDD\'&gt;&lt;span style=\'font-size:14.5pt;\r\nfont-family:\"Helvetica\",sans-serif;color:black\'&gt;&lt;img border=0 width=150\r\nheight=150 id=\"Picture 3\" src=\"Activ8CloudPOS_NEWPOS_files/image001.png\"&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:61.5pt;text-indent:-.25in;line-height:normal;background:#DDDDDD\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a href=\"https://star-emea.com/pos-printers/\"\r\ntarget=wposhelp&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;Star Micronics&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=\'font-size:14.5pt;\r\nfont-family:\"Helvetica\",sans-serif;color:black\'&gt;&amp;nbsp;TSP100 series&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:61.5pt;text-indent:-.25in;line-height:normal;background:#DDDDDD\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Star\r\nMicronics mC-Print3&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#DDDDDD\'&gt;&lt;i&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Note&lt;/span&gt;&lt;/i&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;:\r\nBecause it is easier to configure, &amp;#923;ctiv8 Solutions strongly recommends\r\nthat you use the&amp;nbsp;&lt;/span&gt;&lt;span style=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.secureclub.net/Help/webpos/wpos_tools.html#webprint\"\r\ntarget=wposhelp&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;&amp;quot;CloudPRNT&amp;quot; version&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;&amp;nbsp;of\r\nthese printers. If you decide to use a local network printer, use the LAN or\r\nwireless version only;&amp;nbsp;&lt;i&gt;USB and Bluetooth printers are not supported&lt;/i&gt;.&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#DDDDDD\'&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Note\r\ntoo that local printing from a web browser is&amp;nbsp;&lt;i&gt;not&lt;/i&gt;&amp;nbsp;supported on\r\niPad or any other kind of tablet. To print from a web browser, tablet users\r\nmust use the “CloudPRNT” version of the supported printers.&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#DDDDDD\'&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#999999\'&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.secureclub.net/Help/webpos/index.html?wpos_tools.html#drawer\"\r\ntarget=wposhelp&gt;&lt;b&gt;&lt;span style=\'font-size:16.0pt;font-family:\"Arial\",sans-serif;\r\ncolor:#0000CC;text-transform:uppercase\'&gt;Cash drawer&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:61.5pt;text-indent:-.25in;line-height:normal\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;img width=143\r\nheight=92 src=\"Activ8CloudPOS_NEWPOS_files/image002.png\" align=left&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Star\r\nMicronics&amp;nbsp;&lt;/span&gt;&lt;a href=\"https://www.starmicronics.com/pages/SMD2-1317\"\r\ntarget=poshdwr&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;SMD2-1317 Mobility&lt;/span&gt;&lt;/a&gt;&lt;span style=\'font-size:14.5pt;\r\nfont-family:\"Helvetica\",sans-serif;color:black\'&gt;&amp;nbsp;Cash Drawer&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;margin-left:.25in;line-height:normal\'&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;(or any\r\ncash drawer supported by the Star Micronics printers).&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal\'&gt;&lt;span\r\nstyle=\'font-size:12.0pt;font-family:\"Times New Roman\",serif\'&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal\'&gt;&lt;img width=103\r\nheight=94 src=\"Activ8CloudPOS_NEWPOS_files/image003.png\" align=right&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#999999\'&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.secureclub.net/Help/amo/index.html?ml_StoreList-Actions-labels.html\"\r\ntarget=amohelp&gt;&lt;b&gt;&lt;span style=\'font-size:16.0pt;font-family:\"Arial\",sans-serif;\r\ncolor:#0000CC;text-transform:uppercase\'&gt;Shipping-label printer&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:46.5pt;text-indent:-.25in;line-height:normal;background:#DDDDDD\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style=\'font-size:\r\n14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Zebra&amp;nbsp;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.zebra.com/us/en/support-downloads/printers/desktop/zp450.html\"\r\ntarget=wposhelp&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;Zebra ZP 450&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=\'font-size:14.5pt;\r\nfont-family:\"Helvetica\",sans-serif;color:black\'&gt;&amp;nbsp;(UPS, GLS)&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:46.5pt;text-indent:-.25in;line-height:normal;background:#DDDDDD\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style=\'font-size:\r\n14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Zebra&amp;nbsp;&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.zebra.com/us/en/support-downloads/printers/desktop/zp500.html\"\r\ntarget=wposhelp&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;ZP 500/ZP 505&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=\'font-size:14.5pt;\r\nfont-family:\"Helvetica\",sans-serif;color:black\'&gt;&amp;nbsp;(FedEx)&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:3.0pt;margin-right:0in;margin-bottom:6.0pt;\r\nmargin-left:46.5pt;text-indent:-.25in;line-height:normal;background:#DDDDDD\'&gt;&lt;span\r\nstyle=\'font-size:10.0pt;font-family:Wingdings;color:black\'&gt;§&lt;span\r\nstyle=\'font:7.0pt \"Times New Roman\"\'&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style=\'font-size:\r\n14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Zebra ZD450/&lt;/span&gt;&lt;span\r\nstyle=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.zebra.com/us/en/products/spec-sheets/printers/desktop/zd420.html\"\r\ntarget=wposhelp&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;ZD420&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=\'font-size:14.5pt;font-family:\r\n\"Helvetica\",sans-serif;color:black\'&gt;/&lt;/span&gt;&lt;span style=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.zebra.com/us/en/products/spec-sheets/printers/desktop/zd421-series.html\"\r\ntarget=wposhelp&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;ZD421D&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=\'font-size:14.5pt;\r\nfont-family:\"Helvetica\",sans-serif;color:black\'&gt;/&lt;/span&gt;&lt;span style=\'color:\r\nblack\'&gt;&lt;a\r\nhref=\"https://www.zebra.com/us/en/products/spec-sheets/printers/desktop/zd220.html\"\r\ntarget=wposhelp&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;ZD220&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=\'font-size:14.5pt;font-family:\r\n\"Helvetica\",sans-serif;color:black\'&gt;/&lt;/span&gt;&lt;span style=\'color:black\'&gt;&lt;a\r\nhref=\"https://www.zebra.com/gb/en/products/spec-sheets/printers/desktop/zd230.html\"\r\ntarget=wposhelp&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:#0000CC\'&gt;ZD230&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style=\'font-size:14.5pt;font-family:\r\n\"Helvetica\",sans-serif;color:black\'&gt;&amp;nbsp;(GLS)&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#DDDDDD\'&gt;&lt;i&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Note&lt;/span&gt;&lt;/i&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;: Label\r\nprinters are usually configured for use with a specific shipper (UPS, FedEx,\r\nGLS). Drivers and support for these models are provided by the shipper (not the\r\nmanufacturer).&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#DDDDDD\'&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;&lt;br\r\nclear=right&gt;\r\n&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal;background:#999999\'&gt;&lt;b&gt;&lt;span\r\nstyle=\'font-size:16.0pt;font-family:\"Arial\",sans-serif;color:#575757;\r\ntext-transform:uppercase\'&gt;Barcode scanner&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal align=center style=\'margin-bottom:0in;text-align:center;\r\nline-height:normal\'&gt;&lt;span style=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;\r\ncolor:black\'&gt;&lt;img border=0 width=90 height=80 id=\"Picture 2\"\r\nsrc=\"Activ8CloudPOS_NEWPOS_files/image004.png\"&gt;&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal\'&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;Most\r\nbarcode scanners&amp;#8202;—&amp;#8202;Bluetooth or USB&amp;#8202;—&amp;#8202;will work\r\ncorrectly with their factory settings. Scanners must be in “basic” mode, with\r\nthe terminator character set to “CR.” See your scanner&amp;#700;s instructions or\r\nthe manufacturer&amp;#700;s web page for details.&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-bottom:0in;line-height:normal\'&gt;&lt;span\r\nstyle=\'font-size:14.5pt;font-family:\"Helvetica\",sans-serif;color:black\'&gt;&lt;br\r\nclear=left&gt;\r\n&lt;/span&gt;&lt;/p&gt;\r\n\r\n&lt;div class=MsoNormal align=center style=\'margin-top:24.0pt;margin-right:0in;\r\nmargin-bottom:0in;margin-left:0in;text-align:center;line-height:normal\'&gt;&lt;span\r\nstyle=\'font-size:12.0pt;font-family:\"Times New Roman\",serif\'&gt;\r\n\r\n&lt;hr size=2 width=\"100%\" noshade style=\'color:black\' align=center&gt;\r\n\r\n&lt;/span&gt;&lt;/div&gt;\r\n\r\n&lt;p class=MsoNormal style=\'margin-top:9.0pt;margin-right:9.0pt;margin-bottom:\r\n9.0pt;margin-left:0in;line-height:normal\'&gt;&lt;b&gt;&lt;span style=\'font-size:14.5pt;\r\nfont-family:\"Helvetica\",sans-serif;color:black\'&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;\r\n\r\n&lt;p class=MsoNormal&gt;&amp;nbsp;&lt;/p&gt;\r\n\r\n&lt;/div&gt;\r\n\r\n&lt;/body&gt;\r\n\r\n&lt;/html&gt;','New Post','','draft','closed','open','','','','','2024-07-24 11:50:34','2024-07-24 18:50:34','',0,'https://activeclubsolutions.net/?p=4249',0,'post','',0),
(4251,2,'2024-08-13 13:21:30','2024-08-13 20:21:30','<strong style=\"font-size: 16px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/07/Feed-pics-6.gif\"><img class=\"alignnone wp-image-4244 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/07/Feed-pics-6.gif\" alt=\"new version\" width=\"300\" height=\"300\" /></a>Check these Image Library, Search Dates, Club S&amp;H and other </strong><strong style=\"font-size: 16px;\">Features and Enhancements:</strong>\r\n\r\n<span style=\"font-family: georgia, palatino, serif; font-size: 12pt;\">Here are the release notes for the latest updates to Activ8 Control Center (Manager and Cloud):</span>\r\n<ul>\r\n 	<li><strong>Image Library File Name Updates</strong>\r\nWe\'ve introduced a new feature to streamline your image management. When you rename an image file, Activ8 will automatically locate and update all instances where the image is used across your system, such as in your shopping cart catalog or email templates. No more manual updates—let Activ8 do the work for you!</li>\r\n</ul>\r\n<p style=\"padding-left: 40px;\"><img src=\"https://www.secureclub.net/images/ActiveClub/Release%20Notes/image%20update.PNG\" /></p>\r\n\r\n<ul>\r\n 	<li><strong>Enhanced Club Runs and Allocations</strong>\r\nManaging your clubs just got easier! You\'ll notice new buttons for the Control Panel and Statistics sections within Club Runs and Allocations. Clicking these buttons (and the buttons within the Control Panel section) will now direct you to related help articles, ensuring you have the support you need right at your fingertips.</li>\r\n</ul>\r\n<p style=\"padding-left: 40px;\"><img src=\"https://www.secureclub.net/images/ActiveClub/Release%20Notes/control%20panel.PNG\" /></p>\r\n\r\n<ul>\r\n 	<li><strong>Club Packages – Fixed Shipping &amp; Handling</strong>\r\nWe\'ve added a new field when creating club packages that allows you to set a fixed Shipping &amp; Handling (S&amp;H) cost. This helps streamline the package setup and ensures consistent S&amp;H fees.</li>\r\n</ul>\r\n<p style=\"padding-left: 40px;\"><img src=\"https://www.secureclub.net/images/ActiveClub/Release%20Notes/SandH.PNG\" /></p>\r\n\r\n<ul>\r\n 	<li><strong>Expanded Search Filters with Custom Date Ranges</strong>\r\nTo improve your search capabilities, we\'ve added new date ranges in the filter section, including the ability to create custom date ranges. These date ranges will be displayed prominently at the top of your results sheet, making it easier to manage and review your data.</li>\r\n</ul>\r\n<p style=\"padding-left: 40px;\"><img class=\"\" src=\"https://www.secureclub.net/images/ActiveClub/Release%20Notes/date%20range.png\" width=\"139\" height=\"483\" /></p>\r\n\r\n<ul>\r\n 	<li><strong>New POS and Sales Reports</strong>\r\nWe\'ve introduced three new reports: a Global POS report, POS Sales by Categories and POS Sales by Employee. These reports will help you analyze and optimize your sales performance across different dimensions.</li>\r\n 	<li>Various bug fixes</li>\r\n</ul>\r\nThese updates are designed to make your experience with Activ8 even more seamless and efficient. Enjoy the new features!\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Commerce Release Notes 08.13.2024. Image Library, Search Dates, Club S&H and Other New Features and Enhancements.','','publish','closed','open','','activ8-commerce-release-notes-08-13-2024-new-features-and-enhancements','','','2024-08-27 11:37:03','2024-08-27 18:37:03','',0,'https://activeclubsolutions.net/?p=4251',0,'post','',0);
INSERT INTO `wpqk_posts` VALUES
(4253,2,'2024-08-27 11:51:50','2024-08-27 18:51:50','<strong style=\"font-size: 16px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/07/Feed-pics-6.gif\"><img class=\"alignnone wp-image-4244 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/07/Feed-pics-6.gif\" alt=\"new version\" width=\"300\" height=\"300\" /></a></strong><strong style=\"font-size: 16px;\">Check these Loyalty Points and Inventory Location updates:</strong>\r\n<ul>\r\n 	<li>Users can no longer change the Package Type in an inventory location record if there have already been transactions using inventory from that location.<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/08/inventory-location-1.png\"><img class=\"alignnone size-medium wp-image-4256\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/08/inventory-location-1-300x137.png\" alt=\"\" width=\"300\" height=\"137\" /></a></li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n 	<li>You no longer need to set \"Use Loyalty Points\" to \"Yes\" in the Merchant record to process refunds to loyalty points. This change prevents accidental earning of points when switching this option to \"Yes\" just to process refunds.</li>\r\n</ul>\r\n<ul>\r\n 	<li>Various bug fixes</li>\r\n</ul>\r\nThese updates are designed to make your experience with Activ8 even more seamless and efficient. Enjoy the new features!\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Commerce Release Notes 08.27.2024. Loyalty Points and Inventory Location Features and Enhancements.','','publish','closed','open','','activ8-commerce-release-notes-08-27-2024-loyalty-points-and-inventory-location-features-and-enhancements','','','2024-08-27 11:51:50','2024-08-27 18:51:50','',0,'https://activeclubsolutions.net/?p=4253',0,'post','',0),
(4255,21,'2024-08-27 11:43:28','2024-08-27 18:43:28','','inventory location','','inherit','closed','closed','','inventory-location','','','2024-08-27 11:43:39','2024-08-27 18:43:39','',4253,'https://activeclubsolutions.net/wp-content/uploads/2024/08/inventory-location.png',0,'attachment','image/png',0),
(4256,21,'2024-08-27 11:44:56','2024-08-27 18:44:56','','inventory location','','inherit','closed','closed','','inventory-location-2','','','2024-08-27 11:44:56','2024-08-27 18:44:56','',4253,'https://activeclubsolutions.net/wp-content/uploads/2024/08/inventory-location-1.png',0,'attachment','image/png',0),
(4257,2,'2024-08-28 12:23:35','2024-08-28 19:23:35','<h1><strong style=\"font-size: 16px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/07/ACTIV-POS-CLOUD.png\"><img class=\"alignnone wp-image-4247 size-medium\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/07/ACTIV-POS-CLOUD-300x210.png\" alt=\"Activ8 POS\" width=\"300\" height=\"210\" /></a>Still using different systems for POS, eCommerce, and clubs?</strong></h1>\r\nUsing different systems for POS, eCommerce, and clubs? That can lead to:\r\n<ul>\r\n 	<li><strong>Data Drama:</strong>Your data\'s all over the place, making it hard to get a full picture of your customers.</li>\r\n 	<li><strong>Integration Woes: </strong>Keeping these systems synced is frustrating and costly.</li>\r\n 	<li><strong>Customer Confusion: </strong>A disjointed experience can frustrate your customers.</li>\r\n 	<li><strong>Extra Costs: </strong>More systems mean more expenses and time wasted.</li>\r\n 	<li><strong>Operational Hiccups: </strong>Switching between systems slows you down and invites errors.</li>\r\n</ul>\r\n<a href=\"https://email.mail.activeclubsolutions.com/c/eJxkz89OwzAMx_GnaW6pYjv9s0MOY6hCnJD2BG7ibhVtg5J0aG-PYIILZ38k_77BBcNeVODCI2dxR1_mm5yWfXx-UuKgQ2up7cCqKcWVQ0iO_0iOy17muOXax1VdneH-0DL0LFNrqaVgpQ04jdIB-XE8qNkNaUY67hc0aAEAGqp7AG06Y8gSNtQapMqaN06c49Jg_fOur5foeVGLu5bykSs6VjhUODyOPq6rJC_fMyocAPW73HW5ztsl6wfRv0Z_8layvsddl6h93PIcJOlRpphE34WTli1UOKjkXmSRTSprHsn-X3ISH1OYQ3avZwPQEdnT2YCFpiV1c_gVAAD__3-HchE\"><strong>GET MORE INSIGHTS ON THIS TOPIC HERE...</strong></a>\r\n\r\nAvoid these headaches with an all-in-one solution! With Activ8 POS, enjoy a smooth, seamless experience across all your devices. See it in action with <strong><a href=\"https://email.mail.activeclubsolutions.com/c/eJxkzrFq7DAQheGnkbprNDOyZBcqfDeYkCqwTzCWxlmDvAqSvc8fkoU0qc-B_0shGY6iEx-8cJMwxWN7yCWfy8t_LQE8WkvOg9VrLTunVAP_XlrJ57GVe-ti2fUtOFxXn2AdE47knKeltzwYloQehUe9hbluSNP5gQYtAEBP3QDwz3hjyBL25AySsuadK7eSe-x-ckOXS-Ssc7gdx2dTNCmcFc7PMZZ9lxrlm6FwTrIXhbOu4VWy3EVZ8zTHP-YqsdS0pRbergbAE9nL1YCF3pF-BPwKAAD__0fYWn8\">a demo today</a> </strong>and simplify your operations!\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Don\'t Let Separate Systems Hold You Back','','publish','closed','open','','dont-let-separate-systems-hold-you-back','','','2024-10-04 10:52:54','2024-10-04 17:52:54','',0,'https://activeclubsolutions.net/?p=4257',0,'post','',0),
(4259,2,'2024-10-03 13:31:20','2024-10-03 20:31:20','<h1><strong style=\"font-size: 16px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/Images.gif\"><img class=\"alignnone wp-image-4260 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/Images.gif\" alt=\"Image library enhancements\" width=\"300\" height=\"300\" /></a></strong>Improvements to the <strong>Image Library</strong> and its connection with Products and Packages!</h1>\r\n<strong>What\'s New:</strong><!--more-->\r\n<ul>\r\n 	<li><strong>Right-Click Magic:</strong> The Image Library\'s right mouse menu now works directly from the product or package sheet.</li>\r\n 	<li><strong>Insert Images Easily:</strong> You can now insert images from your local machine into Product or Package folders. The uploaded image is copied to the current Image Library folder and attached to the selected Product or Package field.</li>\r\n</ul>\r\n<p style=\"padding-left: 40px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/image-library-product.png\"><img class=\"alignnone size-medium wp-image-4269\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/image-library-product-300x220.png\" alt=\"\" width=\"300\" height=\"220\" /></a></p>\r\n\r\n<ul>\r\n 	<li><strong>Simple Fixes:</strong> Accidentally placed the image in the wrong folder? No worries! Just move it to the correct folder in the Image Library. Easy as that!</li>\r\n</ul>\r\nNote: These updates <strong>do not</strong> affect marketing or system templates.\r\n\r\nEnjoy the seamless experience!\r\n<blockquote>Still only using our Remote Desktop version? It\'s time to log in to <strong>Activ8 Commerce Cloud</strong> and enjoy a user-friendly interface that’s easy to learn, with powerful marketing and image management features.\r\n\r\nYou can keep using Remote Desktop for advanced administrative tasks, but make the most of our Cloud for everything else!</blockquote>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Image Library Enhancements','','publish','closed','open','','image-library-enhancements','','','2024-10-04 11:05:41','2024-10-04 18:05:41','',0,'https://activeclubsolutions.net/?p=4259',0,'post','',0),
(4260,21,'2024-10-03 13:30:38','2024-10-03 20:30:38','','Images','','inherit','closed','closed','','images','','','2024-10-03 13:30:54','2024-10-03 20:30:54','',4259,'https://activeclubsolutions.net/wp-content/uploads/2024/10/Images.gif',0,'attachment','image/gif',0),
(4262,2,'2024-10-04 10:46:02','2024-10-04 17:46:02','<h1><strong style=\"font-size: 16px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/Feed-pics-7.gif\"><img class=\"alignnone wp-image-4268 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/Feed-pics-7.gif\" alt=\"\" width=\"300\" height=\"300\" /></a></strong>Enhanced order history views, new club filters to easier product management and real-time print queue updates.</h1>\r\nCheck out all the details below!<!--more-->\r\n\r\n<strong>What’s New:</strong>\r\n<h2>POS</h2>\r\n<ul>\r\n 	<li><strong>Cloud Print Queue:</strong> Now see real-time (well, almost!) status updates on your cloud print queue, plus a handy new button to empty it with a click.</li>\r\n</ul>\r\n<p style=\"padding-left: 40px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/Cloudprint.png\"><img class=\"alignnone size-medium wp-image-4267\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/Cloudprint-300x144.png\" alt=\"\" width=\"300\" height=\"144\" /></a></p>\r\n\r\n<ul>\r\n 	<li><strong>Order History Enhancements:</strong> You now have alternative display options in both <strong>Order History</strong> and <strong>Customer - Order History</strong> for a clearer, more flexible viewing experience. Use the cat/dog icon to toggle between showing the order status or sales channel.</li>\r\n</ul>\r\n<p style=\"padding-left: 40px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/cat.png\"><img class=\"alignnone size-full wp-image-4264\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/cat.png\" alt=\"\" width=\"32\" height=\"39\" /></a><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/Dog.png\"><img class=\"alignnone size-full wp-image-4265\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/Dog.png\" alt=\"\" width=\"32\" height=\"35\" /></a></p>\r\n\r\n<table style=\"border-collapse: collapse; width: 100%;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 74.6343%;\">\r\n<h2>Cloud Control Central</h2>\r\n<ul>\r\n 	<li><strong>Store Drawer Filters:</strong> We’ve added two new filters—Club Name and Club Type—to help you easily filter clubs in the store drawer. Super handy for club management!</li>\r\n 	<li><strong>Club Type Added:</strong> Club Type is now available on all sheets that include Club Name, giving you more detailed insights at a glance.</li>\r\n 	<li><strong>Bug Fixes &amp; UI Enhancements:</strong> We’ve tackled some bugs and polished up the user interface to make everything look and work even better.</li>\r\n 	<li><strong>Product Management Made Easy:</strong> The Products Pageview interface has been upgraded with lots of enhancements to simplify managing products. Plus, new buttons allow you to quickly access the products you need. Use sheets to view and update multiple product data in a snap!</li>\r\n</ul>\r\n<p style=\"padding-left: 40px;\">See more here: https://activeclubsolutions.net/image-library-enhancements/</p>\r\n</td>\r\n<td style=\"width: 25.3657%;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/club-type.png\"><img class=\"alignnone wp-image-4266\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/club-type-103x300.png\" alt=\"\" width=\"140\" height=\"408\" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h2>eCommerce</h2>\r\n<ul>\r\n 	<li><strong>Wholesale Orders in the Shopping Cart:</strong> Now you can get wholesale orders directly from your website—making it even easier to manage sales!</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','POS, Cloud Control Central, and eCommerce UI Enhancements','','publish','closed','open','','pos-cloud-control-central-and-ecommerce-ui-enhancements','','','2024-10-04 10:56:13','2024-10-04 17:56:13','',0,'https://activeclubsolutions.net/?p=4262',0,'post','',0),
(4264,21,'2024-10-04 10:10:53','2024-10-04 17:10:53','','cat','','inherit','closed','closed','','cat','','','2024-10-04 10:10:53','2024-10-04 17:10:53','',4262,'https://activeclubsolutions.net/wp-content/uploads/2024/10/cat.png',0,'attachment','image/png',0),
(4265,21,'2024-10-04 10:11:47','2024-10-04 17:11:47','','Dog','','inherit','closed','closed','','dog','','','2024-10-04 10:11:47','2024-10-04 17:11:47','',4262,'https://activeclubsolutions.net/wp-content/uploads/2024/10/Dog.png',0,'attachment','image/png',0),
(4266,21,'2024-10-04 10:25:32','2024-10-04 17:25:32','','club-type','','inherit','closed','closed','','club-type','','','2024-10-04 10:25:32','2024-10-04 17:25:32','',4262,'https://activeclubsolutions.net/wp-content/uploads/2024/10/club-type.png',0,'attachment','image/png',0),
(4267,21,'2024-10-04 10:39:08','2024-10-04 17:39:08','','Cloudprint','','inherit','closed','closed','','cloudprint','','','2024-10-04 10:39:08','2024-10-04 17:39:08','',4262,'https://activeclubsolutions.net/wp-content/uploads/2024/10/Cloudprint.png',0,'attachment','image/png',0),
(4268,21,'2024-10-04 10:45:47','2024-10-04 17:45:47','','Feed pics (7)','','inherit','closed','closed','','feed-pics-7','','','2024-10-04 10:45:47','2024-10-04 17:45:47','',4262,'https://activeclubsolutions.net/wp-content/uploads/2024/10/Feed-pics-7.gif',0,'attachment','image/gif',0),
(4269,21,'2024-10-04 11:02:03','2024-10-04 18:02:03','','image library product','','inherit','closed','closed','','image-library-product','','','2024-10-04 11:02:03','2024-10-04 18:02:03','',4259,'https://activeclubsolutions.net/wp-content/uploads/2024/10/image-library-product.png',0,'attachment','image/png',0),
(4271,2,'2024-10-08 07:45:33','2024-10-08 14:45:33','<h1><strong style=\"font-size: 16px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/Feed-pics-1.png\"><img class=\"alignnone wp-image-4272 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/Feed-pics-1.png\" alt=\"\" width=\"300\" height=\"300\" /></a></strong>Improvements to POS settings, inventory management, and smoother checkout processes.</h1>\r\nCheck out all the details below!<!--more-->\r\n<h2>Desktop Version 889:</h2>\r\n<ul>\r\n 	<li><strong>New POS Switch:</strong> A switch for \"Send Items To Card Reader\" is now available in the Tips and Receipts section. Default is set to \"No.\"</li>\r\n 	<li><strong>Rounding Issue Fixed:</strong> The 1 cent rounding error when adjusting shipping costs is resolved.</li>\r\n 	<li><strong>Improved Inventory Views:</strong> SKU Numbers and Barcodes are now visible in all inventory views.</li>\r\n</ul>\r\n<h2>eCommerce:</h2>\r\n<ul>\r\n 	<li><strong>Simplified Expiration Date:</strong> No more 2-digit expiration years needed for carts and registrations when using auto-filled wallet values.</li>\r\n</ul>\r\n<h2>POS Webservice:</h2>\r\n<ul>\r\n 	<li><strong>Control for Item Display:</strong> The new POS switch controls whether items are displayed on Worldpay card readers. Default is \"No\" to speed up checkout.</li>\r\n</ul>\r\nAs always, we\'re here to help if you have any questions!\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Manager (Desktop), eCommerce and POS Administrative Updates.','','publish','closed','open','','activ8-manager-desktop-ecommerce-and-pos-administrative-updates','','','2024-10-08 07:45:33','2024-10-08 14:45:33','',0,'https://activeclubsolutions.net/?p=4271',0,'post','',0),
(4272,21,'2024-10-08 07:39:26','2024-10-08 14:39:26','','Feed pics (1)','','inherit','closed','closed','','feed-pics-1-2','','','2024-10-08 07:39:26','2024-10-08 14:39:26','',4271,'https://activeclubsolutions.net/wp-content/uploads/2024/10/Feed-pics-1.png',0,'attachment','image/png',0),
(4274,2,'2024-10-22 10:33:09','2024-10-22 17:33:09','<h1><strong style=\"font-size: 16px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/chipper.png\"><img class=\"alignnone wp-image-4275 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/10/chipper.png\" alt=\"\" width=\"210\" height=\"210\" /></a></strong>Attention Worldpay Card Reader Users</h1>\r\nStarting September 2, 2025, Worldpay will officially end all service and support for PCI 4.0 devices on triPOS products, affecting the BBPOS Chipper 2XBT and BBPOS Chipper 3XBT. <!--more-->This is a great time to start planning a smooth and cost-effective transition to the new Activ8 POS. There’s no additional cost for switching to the new Activ8 POS, though depending on your setup, some hardware peripheral updates may be needed.\r\n\r\nPlease contact us for any information or assistance.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Attention Worldpay Card Reader Users','','publish','closed','open','','attention-worldpay-card-reader-users','','','2024-10-23 10:49:55','2024-10-23 17:49:55','',0,'https://activeclubsolutions.net/?p=4274',0,'post','',0),
(4275,21,'2024-10-22 10:31:33','2024-10-22 17:31:33','','chipper','','inherit','closed','closed','','chipper-2','','','2024-10-22 10:31:33','2024-10-22 17:31:33','',4274,'https://activeclubsolutions.net/wp-content/uploads/2024/10/chipper.png',0,'attachment','image/png',0),
(4276,2,'2024-11-05 11:17:01','2024-11-05 19:17:01','<h1><strong style=\"font-size: 16px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/11/where.gif\"><img class=\"alignnone wp-image-4277 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/11/where.gif\" alt=\"\" width=\"300\" height=\"300\" /></a></strong>They’re All in One Place!</h1>\r\nHead to the HELP app <img class=\"\" src=\"https://activ8commerce.com/wp-content/uploads/2024/10/cloud-help.png.webp\" alt=\"cloud help - Video Tutorials\" width=\"39\" height=\"29\" />, where all your resources now live. Just hit \'Search\' <img class=\"\" src=\"https://activ8commerce.com/wp-content/uploads/2024/10/cloud-search-resource.png.webp\" alt=\"cloud search resource - Video Tutorials\" width=\"37\" height=\"28\" />for a specific topic or go to the main menu to find all our Video Tutorials.\r\n\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/11/videos-1.png\"><img class=\"alignnone size-medium wp-image-4280\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/11/videos-1-300x79.png\" alt=\"\" width=\"300\" height=\"79\" /></a>\r\n\r\n<strong>Tip: Bookmark this link to our tutorial library:</strong> <a href=\"https://www.secureclub.net/Help/videos/index.html\">https://www.secureclub.net/Help/videos/index.html</a>\r\n\r\nPlease contact us for any information or assistance.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Looking for Video Tutorials?','','publish','closed','open','','looking-for-video-tutorials','','','2024-11-06 11:09:41','2024-11-06 19:09:41','',0,'https://activeclubsolutions.net/?p=4276',0,'post','',0),
(4277,21,'2024-11-05 11:06:25','2024-11-05 19:06:25','','where','','inherit','closed','closed','','where','','','2024-11-05 11:06:25','2024-11-05 19:06:25','',4276,'https://activeclubsolutions.net/wp-content/uploads/2024/11/where.gif',0,'attachment','image/gif',0),
(4279,21,'2024-11-05 11:12:16','2024-11-05 19:12:16','','videos','','inherit','closed','closed','','videos','','','2024-11-05 11:12:16','2024-11-05 19:12:16','',4276,'https://activeclubsolutions.net/wp-content/uploads/2024/11/videos.png',0,'attachment','image/png',0),
(4280,21,'2024-11-05 11:15:38','2024-11-05 19:15:38','','videos','','inherit','closed','closed','','videos-2','','','2024-11-05 11:15:38','2024-11-05 19:15:38','',4276,'https://activeclubsolutions.net/wp-content/uploads/2024/11/videos-1.png',0,'attachment','image/png',0),
(4281,2,'2024-11-10 14:41:52','2024-11-10 22:41:52','<h1><strong style=\"font-size: 16px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/11/Feed-pics-2.png\"><img class=\"alignnone wp-image-4286 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/11/Feed-pics-2.png\" alt=\"\" width=\"300\" height=\"300\" /></a></strong></h1>\r\n<strong>Improvements Alert! </strong>\r\n<ul>\r\n 	<li><strong>Have you spotted the new in-app updates in Activ8 Cloud? </strong><!--more--></li>\r\n</ul>\r\n<strong>We’re excited to help you become power-users and make the most of the system\'s features! </strong>\r\n<ul>\r\n 	<li><strong>Plus, we\'ve added an intuitive \"Merge Customer\" feature—simple and seamless. Happy exploring!</strong></li>\r\n</ul>\r\n<p style=\"padding-left: 40px;\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/11/Merge-two-customers-together-to-create-one-record.png\"><img class=\"alignnone wp-image-4284 \" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/11/Merge-two-customers-together-to-create-one-record-300x250.png\" alt=\"\" width=\"339\" height=\"282\" /></a></p>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','New Built-In Notifications & Intuitive Customer Merge Feature!','','publish','closed','open','','new-built-in-notifications-intuitive-customer-merge-feature','','','2024-11-21 12:28:07','2024-11-21 20:28:07','',0,'https://activeclubsolutions.net/?p=4281',0,'post','',0),
(4283,21,'2024-11-10 14:26:44','2024-11-10 22:26:44','','customer merge','','inherit','closed','closed','','customer-merge','','','2024-11-10 14:26:44','2024-11-10 22:26:44','',4281,'https://activeclubsolutions.net/wp-content/uploads/2024/11/customer-merge.png',0,'attachment','image/png',0),
(4284,21,'2024-11-10 14:37:08','2024-11-10 22:37:08','','Merge two customers together to create one record','','inherit','closed','closed','','merge-two-customers-together-to-create-one-record','','','2024-11-10 14:37:08','2024-11-10 22:37:08','',4281,'https://activeclubsolutions.net/wp-content/uploads/2024/11/Merge-two-customers-together-to-create-one-record.png',0,'attachment','image/png',0),
(4285,21,'2024-11-10 14:40:46','2024-11-10 22:40:46','','Feed pics','','inherit','closed','closed','','feed-pics-8','','','2024-11-10 14:40:46','2024-11-10 22:40:46','',4281,'https://activeclubsolutions.net/wp-content/uploads/2024/11/Feed-pics.mp4',0,'attachment','video/mp4',0),
(4286,21,'2024-11-10 14:41:24','2024-11-10 22:41:24','','Custome rmerge','','inherit','closed','closed','','feed-pics-2-2','','','2024-11-10 14:41:38','2024-11-10 22:41:38','',4281,'https://activeclubsolutions.net/wp-content/uploads/2024/11/Feed-pics-2.png',0,'attachment','image/png',0),
(4287,2,'2024-11-27 02:33:25','2024-11-27 10:33:25','<h2><strong style=\"font-size: 16px;\"><img class=\"alignnone wp-image-4288 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/11/2024-features.png\" alt=\"announcement\" width=\"270\" height=\"270\" /> </strong>This year, we\'ve introduced over 50 updates</h2>\r\ndesigned to make Activ8 Commerce faster, more intuitive, and more secure. These enhancements span Activ8 Cloud, POS, Manager, and eCommerce, empowering you to streamline operations and deliver exceptional service. Here’s what’s new:\r\n\r\n<hr />\r\n\r\n<strong>System Email Templates</strong>\r\n<ul>\r\n 	<li><strong>Modern &amp; Responsive Designs:</strong> Fresh email templates that look great and adapt to all devices.</li>\r\n 	<li><strong>Upgrade Options:</strong>\r\n<ol>\r\n 	<li>Contact support for setup (standard fee applies).</li>\r\n 	<li>DIY setup anytime with our <strong><u>self-setup tutorial</u></strong>.</li>\r\n</ol>\r\n</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<strong>Time Clock Management in the Cloud</strong>\r\n<ul>\r\n 	<li><strong>Seamless Control:</strong> Manage POS time clock entries, generate reports, and edit logs directly in Activ8 Cloud.</li>\r\n 	<li><strong>Intuitive Interface:</strong> Visual, easy-to-use tools streamline workforce management.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<strong>Tock Reservation System Integration</strong>\r\n<ul>\r\n 	<li><strong>POS Syncing:</strong> Effortlessly manage reservations, payments, and customer data.</li>\r\n 	<li><strong>Enhanced Service:</strong> Simplify operations while delivering exceptional guest experiences.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<strong>Shipping &amp; Logistics Enhancements</strong>\r\n<ul>\r\n 	<li><strong>UPS Global Update (April 30 Deadline):</strong> Connect Activ8 and UPS accounts to continue printing labels.</li>\r\n 	<li><strong>GLS (formerly GSO) Integration:</strong> Improved functionality for smoother workflows.</li>\r\n 	<li><strong>Improved Shipping Sheets:</strong> Added \"ship type\" and \"ship via\" options for better logistics management.</li>\r\n 	<li><strong>Enhanced Ship Compliant Check: </strong>Ship Compliant Check now functions seamlessly, even if shipping name and address are missing for Pickup transactions.</li>\r\n 	<li><strong>Fixed Shipping Costs for Club Packages: </strong>Set consistent Shipping &amp; Handling fees when creating club packages.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<strong>Activ8 Cloud Control Central Updates</strong>\r\n<ul>\r\n 	<li><strong>Wholesale Sales Online:</strong> Accept and manage wholesale orders directly from your POS or Activ8 Cloud.</li>\r\n 	<li><strong>Enhanced Job Management Interface: </strong>Enjoy a new interface for updating scheduled jobs, enhancing management capabilities.</li>\r\n 	<li><strong>Enhanced Club Management:</strong> New filters for \"Club Name\" and \"Club Type\" in the Store Drawer, plus improved navigation to help resources.</li>\r\n 	<li><strong>Marketing Tools:</strong> Member data, such as \"Member Since\" dates, is now readily accessible in the Marketing Drawer.</li>\r\n 	<li><strong>SKU Generation:</strong> Create SKU numbers directly in Cloud to streamline inventory processes. SKU Numbers and Barcodes are now visible in all inventory views.</li>\r\n 	<li><strong>Expanded Search Filters:</strong> Custom date ranges and clearer results display for better data handling.</li>\r\n 	<li><strong>Effortless Product Management:</strong> A revamped product page view, quick access buttons, and sheet tools for bulk edits.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<strong>eCommerce Improvements</strong>\r\n<ul>\r\n 	<li><strong>Faster Checkouts: </strong>Wallet auto-fill now supports standard expiration formats.</li>\r\n 	<li><strong>Online-to-Tock Sync: </strong>Automatically upload online customer registrations to Tock.</li>\r\n 	<li><strong>Wholesale Online Orders: </strong>Accept wholesale orders from your website with ease.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<strong>Image Library Enhancements for eCommerce, Inventory and Digital Communications</strong>\r\n<ul>\r\n 	<li><strong>Automatic Updates</strong>: Renaming or moving image files automatically updates all system references.</li>\r\n 	<li><strong>Direct Uploads</strong>: Insert images straight from your device into product or package folders.</li>\r\n 	<li><strong>Right-Click Magic</strong>: Use right-click functionality in the Image Library for quick edits or moving images.</li>\r\n 	<li><strong>Quick Fixes</strong>: Easily move misplaced images to the correct folders without hassle.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<strong>POS Enhancements</strong>\r\n<ul>\r\n 	<li><strong>Wholesale Sales Online:</strong> Accept and manage wholesale orders directly from your POS or Activ8 Cloud.</li>\r\n 	<li><strong>Open Tabs:</strong> Open and manage tabs for customers or tables, add items, and split payments seamlessly.</li>\r\n 	<li><strong>Store Credit Refunds:</strong> Automatically display the option during refunds at POS.</li>\r\n 	<li><strong>Data Privacy:</strong> Auto-created customer records at checkout no longer save card data for enhanced security.</li>\r\n 	<li><strong>Shipping Refunds:</strong> Prompt to void shipping labels when refunding shipping charges.</li>\r\n 	<li><strong>Customer Birth Month:</strong> Automatically added to customer records when provided.</li>\r\n 	<li><strong>Access Control:</strong> Only managers can view the dashboard on iOS POS.</li>\r\n 	<li><strong>Real-Time Print Queue Updates:</strong> Track and clear print jobs more efficiently.</li>\r\n 	<li><strong>Flexible Order History:</strong> Toggle display options for sales channels or order statuses.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<strong>Activ8 Manager (Remote Desktop) Updates</strong>\r\n<ul>\r\n 	<li><strong>Clearer Decline Notifications: </strong>Helpful retry suggestions for card declines.</li>\r\n 	<li><strong>Flexible Invoicing: </strong>Send sales receipts without shipping transactions first.</li>\r\n 	<li><strong>Mailgun Integration:</strong> A better option for digital communications.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<strong>Security &amp; Payment Enhancements</strong>\r\n<ul>\r\n 	<li><strong>Clearent Payment Processor:</strong> Seamlessly process payments (not available on iOS POS).</li>\r\n 	<li><strong>Credit Card Token Deletion:</strong> Removing card numbers now deletes the gateway token automatically.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<strong>Bug Fixes &amp; Quality-of-Life Improvements</strong>\r\n<ul>\r\n 	<li><strong>Club Management Buttons:</strong> Quick access to help articles and support for Club Runs and Allocations.</li>\r\n 	<li><strong>Loyalty Points Management:</strong> Simplified processes for earning and redeeming points. Upgraded Loyalty Cards sheet in the customer drawer.</li>\r\n 	<li><strong>Customer Merge</strong>: Easily combine duplicate customer records with our intuitive merge feature.</li>\r\n 	<li><strong>In-App Updates:</strong> Get instant notifications about new features and enhancements right within Activ8 Cloud to help you stay up to date.</li>\r\n 	<li><strong>Smart User Tips:</strong> Quick, helpful hints on the Welcome Screen to keep you on top of new features.</li>\r\n 	<li>The Activ8 Cloud login screen now allows you to display your password for added convenience.</li>\r\n 	<li><strong>Chrome for iPad users enhancement: </strong>Chrome now displays the keyboard on your iPad upon login for password data entry.</li>\r\n 	<li><strong>UI Enhancements:</strong> Polished interface across Cloud and POS for a smoother experience.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<strong>New Reports</strong>\r\n<ul>\r\n 	<li><strong>Global POS Report:</strong> View POS data from a global perspective.</li>\r\n 	<li><strong>POS Sales by Category &amp; Employee:</strong> Gain deeper insights into sales performance.</li>\r\n 	<li><strong>CRV Calculations and Reports</strong> have been integrated in your system.</li>\r\n 	<li><strong>Club Pickups: </strong>Now sorted by category, and ship/pickup date.</li>\r\n</ul>\r\nThese updates and many more enhancements and bug fixes ensure that every aspect of your Activ8 Commerce experience is better than ever. Questions or need support? Email us at <a href=\"mailto:support@activeclubsolutions.com\">support@activeclubsolutions.com</a> to get started!\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Activ8 Commerce: 2024 Feature Highlights','','publish','closed','open','','activ8-commerce-2024-feature-highlights','','','2024-12-09 13:51:09','2024-12-09 21:51:09','',0,'https://activeclubsolutions.net/?p=4287',0,'post','',0),
(4288,21,'2024-11-27 08:26:35','2024-11-27 16:26:35','','2024-features','','inherit','closed','closed','','2024-features','','','2024-11-27 08:26:44','2024-11-27 16:26:44','',4287,'https://activeclubsolutions.net/wp-content/uploads/2024/11/2024-features.png',0,'attachment','image/png',0),
(4291,2,'2024-12-09 13:47:51','2024-12-09 21:47:51','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics-8.gif\"><img class=\"wp-image-4293 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics-8.gif\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<h2>Announcing the Tab and Table Seating new Activ8 POS Features!</h2>\r\n&nbsp;\r\n\r\nElevate your guest experience and wow them from the moment they walk in! With Activ8 POS, our new <strong>\"Open Tab\"</strong> feature is here—completely free and incredibly easy to use. Simply open a tab, hold a credit card, close it when ready, and even split checks or payments effortlessly.\r\n\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/open-tab-1.png\"><img class=\"alignnone wp-image-4295 size-medium_large\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/open-tab-1-768x432.png\" alt=\"\" width=\"768\" height=\"432\" /></a>\r\n\r\n&nbsp;\r\n\r\nBut that’s not all! We’ve also introduced a <strong>table seating feature</strong> that’s as visual and intuitive as it gets. Assign tables to parties, track orders seamlessly, and manage your tasting room like a pro.\r\n\r\n<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Table-seating.png\"><img class=\"alignnone wp-image-4296 size-medium_large\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Table-seating-768x418.png\" alt=\"\" width=\"768\" height=\"418\" /></a>\r\n\r\nTogether, these upgrades elevate your service to a whole new level. Make every visit smooth, memorable, and hassle-free!\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Shall I start a tab for you?','','draft','closed','open','','shall-i-start-a-tab-for-you','','','2024-12-20 15:40:50','2024-12-20 23:40:50','',0,'https://activeclubsolutions.net/?p=4291',0,'post','',0),
(4293,21,'2024-12-09 13:28:33','2024-12-09 21:28:33','','Feed pics (8)','Open tab new feature!','inherit','closed','closed','','feed-pics-8-2','','','2024-12-09 13:28:50','2024-12-09 21:28:50','',4291,'https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics-8.gif',0,'attachment','image/gif',0),
(4294,21,'2024-12-09 13:43:04','2024-12-09 21:43:04','','open tab','','inherit','closed','closed','','open-tab','','','2024-12-09 13:43:04','2024-12-09 21:43:04','',4291,'https://activeclubsolutions.net/wp-content/uploads/2024/12/open-tab.png',0,'attachment','image/png',0),
(4295,21,'2024-12-09 13:44:25','2024-12-09 21:44:25','','open tab (1)','','inherit','closed','closed','','open-tab-1','','','2024-12-09 13:44:25','2024-12-09 21:44:25','',4291,'https://activeclubsolutions.net/wp-content/uploads/2024/12/open-tab-1.png',0,'attachment','image/png',0),
(4296,21,'2024-12-09 13:47:19','2024-12-09 21:47:19','','Table seating','','inherit','closed','closed','','table-seating','','','2024-12-09 13:47:19','2024-12-09 21:47:19','',4291,'https://activeclubsolutions.net/wp-content/uploads/2024/12/Table-seating.png',0,'attachment','image/png',0),
(4297,2,'2024-12-13 10:44:45','2024-12-13 18:44:45','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/profile.png\"><img class=\"alignnone wp-image-4298 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/profile.png\" alt=\"\" width=\"270\" height=\"270\" /></a>\r\n<h1>Got a few minutes?</h1>\r\nPlease fill out <a href=\"https://activ8commerce.com/activ8-commerce-client-updates/\"><strong>our client update and feedback form</strong></a>. Your insights help us make things even better for you—because you deserve nothing less!\r\n\r\nThanks a ton—you’re the best!\r\n\r\nhttps://activ8commerce.com/activ8-commerce-client-updates/\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Update your profile and preferences - deadline extended!','','publish','closed','open','','update-your-profile-and-preferences','','','2024-12-31 09:29:42','2024-12-31 17:29:42','',0,'https://activeclubsolutions.net/?p=4297',0,'post','',0),
(4298,21,'2024-12-13 10:41:04','2024-12-13 18:41:04','','profile','','inherit','closed','closed','','profile','','','2024-12-13 10:41:04','2024-12-13 18:41:04','',4297,'https://activeclubsolutions.net/wp-content/uploads/2024/12/profile.png',0,'attachment','image/png',0),
(4300,2,'2024-12-20 15:23:55','2024-12-20 23:23:55','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.gif\"><img class=\"alignnone wp-image-4302 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.gif\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<h2>Announcing the Tab and Table Seating new Activ8 POS Features!</h2>\r\nWe’ve made managing your customers\' experience even easier with our new <strong>Tab and Table Seating</strong> features, now available in Activ8 POS.\r\n<div class=\"flex max-w-full flex-col flex-grow\">\r\n<div class=\"min-h-8 text-message flex w-full flex-col items-end gap-2 whitespace-normal break-words text-start [.text-message+&amp;]:mt-5\" dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"272a68fd-d03a-4655-aa45-00054e3a861f\" data-message-model-slug=\"gpt-4o\">\r\n<div class=\"flex w-full flex-col gap-1 empty:hidden first:pt-[3px]\">\r\n<div class=\"markdown prose w-full break-words dark:prose-invert light\">\r\n\r\n✨ <strong>Key Features:</strong>\r\n<ul>\r\n 	<li>Effortlessly <strong>open and close tabs</strong> for your customers.</li>\r\n 	<li>Easily <strong>assign table seating</strong> and link orders to tables with just a touch.</li>\r\n 	<li>Designed to be <strong>intuitive and user-friendly</strong> for your team.</li>\r\n</ul>\r\n🎥 <strong>Watch our quick video demos</strong> to see these features in action!\r\n\r\n<a href=\"https://player.vimeo.com/video/1040822761\">Open Tab Overview</a>\r\n\r\n<a href=\"https://player.vimeo.com/video/1040930215\">Table Seating Overview</a>\r\n\r\nHave questions? We’re here to help—reach out anytime. 🚀\r\n\r\nMake your service smoother than ever—give it a try today!\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','New Tab and Table Seating Features in Activ8 POS!','','publish','closed','open','','new-tab-and-table-seating-features-in-activ8-pos','','','2024-12-20 15:23:55','2024-12-20 23:23:55','',0,'https://activeclubsolutions.net/?p=4300',0,'post','',0),
(4302,21,'2024-12-20 15:19:39','2024-12-20 23:19:39','','Feed pics','','inherit','closed','closed','','feed-pics-9','','','2024-12-20 15:19:39','2024-12-20 23:19:39','',4300,'https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.gif',0,'attachment','image/gif',0),
(4303,2,'2024-12-23 14:38:12','2024-12-23 22:38:12','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.png\"><img class=\"alignnone wp-image-4304 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.png\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<h2>Mark your calendar! 01/09/2025</h2>\r\nJoin us on <strong>Thursday, January 9th, at 10 AM Pacific / 1 PM Eastern</strong> for an exclusive <strong>Activ8 POS webinar</strong>.\r\n\r\nTake a guided tour, ask your burning questions, and see how we can simplify your operations. Don’t miss it!\r\n<h3 style=\"text-align: center;\"><strong>To save your spot email <a href=\"mailto:Brandy@activeclubsolutions.com\">Brandy@activeclubsolutions.com</a>.</strong></h3>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Join Our Activ8 POS Webinar!','','draft','closed','open','','new-tab-and-table-seating-features-in-activ8-pos-2','','','2025-01-22 09:17:13','2025-01-22 17:17:13','',0,'https://activeclubsolutions.net/?p=4303',0,'post','',0),
(4304,21,'2024-12-23 14:34:13','2024-12-23 22:34:13','','Feed pics','','inherit','closed','closed','','feed-pics-10','','','2024-12-23 14:34:13','2024-12-23 22:34:13','',4303,'https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.png',0,'attachment','image/png',0),
(4306,2,'2025-02-06 12:21:38','2025-02-06 20:21:38','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/02/Feed-pics.png\"><img class=\"alignnone wp-image-4309 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/02/Feed-pics.png\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<h2>Mark your calendar! 02/20/2025</h2>\r\nJoin us on <strong>Thursday, February 20th, at 10 AM Pacific / 1 PM Eastern</strong> for an exclusive <strong>Activ8 Commerce webinar</strong>.\r\n\r\nSell More Wine with Smarter Marketing – Activ8 Commerce Webinar!\r\n<table class=\"k-table\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr data-role=\"resizable\">\r\n<td>\r\n<p data-pm-slice=\"1 1 []\">Want to <strong>target the right customers</strong> at the right time with the right message? Join us for a free webinar where we’ll show you how to <strong>leverage Activ8 Commerce’s new RFM filtering</strong> and <strong>built-in digital marketing tools</strong> to increase sales and customer engagement.</p>\r\n<p data-pm-slice=\"1 1 []\">In this live session, you’ll learn how to:</p>\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" />Use <strong>Recency, Frequency, and Monetary (RFM) filtering</strong> to segment customers\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" />Create <strong>highly targeted email &amp; SMS campaigns</strong> inside Activ8 Commerce\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" />Boost customer retention and <strong>drive more revenue—effortlessly</strong>\r\n<p data-pm-slice=\"1 1 []\"><strong>Event Details:</strong>\r\n<strong>Date:</strong> Thursday, February 20th, 2025\r\n<strong>Time:</strong> 10:00 AM Pacific / 1:00 PM East\r\n<strong>Duration:</strong> 50 minutes\r\n<strong>Where:</strong> Online</p>\r\n<p data-pm-slice=\"1 1 []\"><strong>How to Reserve Your Spot:</strong>\r\nSimply email <a><strong>brandy@activeclubsolutions.com</strong></a> to confirm your attendance and receive your exclusive access link.</p>\r\nDon’t miss out—<strong>save your spot now!</strong>\r\n\r\nSee you there!\r\n\r\n&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"text-align: center;\"><strong>To save your spot email <a href=\"mailto:Brandy@activeclubsolutions.com\">Brandy@activeclubsolutions.com</a>.</strong></h3>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Join Our New Webinar!','','draft','closed','open','','join-our-new-webinar','','','2025-02-21 10:50:33','2025-02-21 18:50:33','',0,'https://activeclubsolutions.net/?p=4306',0,'post','',0),
(4308,21,'2025-02-06 12:18:16','2025-02-06 20:18:16','','Webinar2-2025','','inherit','closed','closed','','webinar2-2025','','','2025-02-06 12:18:16','2025-02-06 20:18:16','',4306,'https://activeclubsolutions.net/wp-content/uploads/2025/02/Webinar2-2025.png',0,'attachment','image/png',0),
(4309,21,'2025-02-06 12:21:29','2025-02-06 20:21:29','','Feed pics','','inherit','closed','closed','','feed-pics-11','','','2025-02-06 12:21:29','2025-02-06 20:21:29','',4306,'https://activeclubsolutions.net/wp-content/uploads/2025/02/Feed-pics.png',0,'attachment','image/png',0),
(4310,2,'2025-02-05 12:22:04','2025-02-05 20:22:04','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.png\"><img class=\"alignnone wp-image-4304 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.png\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<h2>Access the Webinar Recording here:</h2>\r\n<h2><iframe src=\"https://player.vimeo.com/video/1045537937?title=0&amp;byline=0&amp;portrait=0&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" width=\"240\" height=\"135\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media\" title=\"Activ8 POS Webinar January 2025\"></iframe></h2>\r\n<h2 data-pm-slice=\"1 1 []\">This webinar features:</h2>\r\n<p data-pm-slice=\"1 1 []\">Are you ready to revolutionize your winery or distillery operations? Join us for a powerful live webinar where we reveal <strong>10 Reasons Why You Need Activ8 POS</strong> and show you how our platform can simplify your business like never before.</p>\r\n<p data-pm-slice=\"1 1 []\"><strong>What You Get:</strong></p>\r\n\r\n<ul>\r\n 	<li>A guided tour of the <strong>life-changing features</strong> that make Activ8 POS a must-have for wineries and distilleries.</li>\r\n 	<li>Real-world insights on how Activ8 can save time, boost sales, and improve customer experience.</li>\r\n 	<li>A live Q&amp;A session with our experts to answer all your questions.</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','January 2025 Activ8 POS Webinar Recording','','publish','closed','open','','january-2025-activ8-pos-webinar-recording','','','2025-02-06 12:47:05','2025-02-06 20:47:05','',0,'https://activeclubsolutions.net/?p=4310',0,'post','',0),
(4313,2,'2025-02-21 10:49:48','2025-02-21 18:49:48','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/02/Feed-pics.png\"><img class=\"alignnone wp-image-4309 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/02/Feed-pics.png\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<h2>Access the Webinar Recording here:</h2>\r\n<h2><iframe title=\"RFM Filtering Webinar February 2025\" src=\"https://player.vimeo.com/video/1058791357?title=0&amp;byline=0&amp;portrait=0&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" width=\"240\" height=\"135\" frameborder=\"0\"></iframe></h2>\r\n<h2 data-pm-slice=\"1 1 []\">This webinar features:</h2>\r\nHow to <strong>leverage Activ8 Commerce’s new RFM filtering</strong> and <strong>built-in digital marketing tools</strong> to increase sales and customer engagement.\r\n\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" />Use <strong>Recency, Frequency, and Monetary (RFM) filtering</strong> to segment customers\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" />Create <strong>highly targeted email &amp; SMS campaigns</strong> inside Activ8 Commerce\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" />Boost customer retention and <strong>drive more revenue—effortlessly</strong>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','February 2025 RFM Filtering Webinar Recording','','publish','closed','open','','february-2025-rfm-filtering-webinar-recording','','','2025-02-21 10:49:48','2025-02-21 18:49:48','',0,'https://activeclubsolutions.net/?p=4313',0,'post','',0),
(4314,2,'2025-03-15 08:38:23','2025-03-15 15:38:23','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/03/Feed-pics.png\"><img class=\"alignnone wp-image-4315 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/03/Feed-pics.png\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<h2>Mark your calendar for March 27!</h2>\r\nJoin us on <strong>Thursday, March 27th, at 10 AM Pacific / 1 PM Eastern</strong> for a new free <strong>Activ8 Commerce webinar</strong>.\r\n\r\nMaster Club &amp; Allocation Releases with Activ8 Commerce!\r\n<table class=\"k-table\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr data-role=\"resizable\">\r\n<td>\r\n<p data-pm-slice=\"1 1 []\"><strong>Date: Thursday, March 27</strong>\r\n<strong>Time: 10:00 AM Pacific / 1:00 PM Eastern</strong>\r\n<strong>Where: Online (details upon registration)</strong></p>\r\n<p data-pm-slice=\"1 1 []\">What You\'ll Learn:</p>\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> <strong>Best Practices</strong> for managing wine clubs and allocations to enhance customer experience, loyalty, and repeat purchases.\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> <strong>How to Automate</strong> processes and minimize manual errors for stress-free releases.\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> <strong>Engaging System Emails</strong> – Keep your members informed and excited throughout the release process.\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> <strong>Live Demo</strong> of Activ8 Commerce\'s intuitive Club and Allocation Release Wizard for seamless management.\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /><strong> Q&amp;A</strong> Session – Get your questions answered by our experts!\r\n<p data-pm-slice=\"1 1 []\"><strong>Why Attend?</strong></p>\r\n\r\n<ul data-pm-slice=\"1 1 []\">\r\n 	<li style=\"list-style-type: none;\">\r\n<ul data-pm-slice=\"1 1 []\">\r\n 	<li>Discover how automation can save you time and reduce errors.</li>\r\n 	<li>Learn how to enhance customer experience with personalized, automated communications.</li>\r\n 	<li>See a live demonstration of the tools that will make your club management effortless!</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n<p data-pm-slice=\"1 1 []\"><strong>Ready to Join?</strong>\r\nRegister by emailing <a><strong>brandy@activeclubsolutions.com</strong></a>.</p>\r\nSpaces are limited—secure yours today to elevate your club and allocation process!\r\n\r\nSee you there!</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"text-align: center;\"><strong>To save your spot email <a href=\"mailto:Brandy@activeclubsolutions.com\">Brandy@activeclubsolutions.com</a>.</strong></h3>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Join Our Club Webinar!','','draft','closed','open','','join-our-club-webinar','','','2025-03-29 12:33:02','2025-03-29 19:33:02','',0,'https://activeclubsolutions.net/?p=4314',0,'post','',0),
(4315,21,'2025-03-15 08:35:13','2025-03-15 15:35:13','','Feed pics','','inherit','closed','closed','','feed-pics-12','','','2025-08-13 13:59:26','2025-08-13 20:59:26','',4314,'https://activeclubsolutions.net/wp-content/uploads/2025/03/Feed-pics.png',0,'attachment','image/png',0),
(4317,2,'2025-03-29 12:24:17','2025-03-29 19:24:17','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/03/Feed-pics.png\"><img class=\"alignnone wp-image-4315 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/03/Feed-pics.png\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<h2>Access the Webinar Recording here:</h2>\r\n<h2><iframe title=\"Club and Allocations Wizard Webinar March 2025\" src=\"https://player.vimeo.com/video/1070434390?title=0&amp;byline=0&amp;portrait=0&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" width=\"240\" height=\"135\" frameborder=\"0\" data-mce-fragment=\"1\"></iframe></h2>\r\n<h2 data-pm-slice=\"1 1 []\">This webinar features:</h2>\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> <strong>Best Practices</strong> for managing wine clubs and allocations to enhance customer experience, loyalty, and repeat purchases.\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> <strong>How to Automate</strong> processes and minimize manual errors for stress-free releases.\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> <strong>Engaging System Emails</strong> – Keep your members informed and excited throughout the release process.\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> <strong>Live Demo</strong> of Activ8 Commerce\'s intuitive Club and Allocation Release Wizard for seamless management.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','March 2025 Club & Allocations Wizard Webinar Recording','','publish','closed','open','','march-2025-club-allocations-wizard-webinar-tecording','','','2025-04-03 10:36:01','2025-04-03 17:36:01','',0,'https://activeclubsolutions.net/?p=4317',0,'post','',0),
(4319,2,'2025-03-29 12:32:30','2025-03-29 19:32:30','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/02/10877677.jpg\"><img class=\"alignnone wp-image-4192 size-medium\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/02/10877677-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />Are you using the most recent system templates?</a><span style=\"font-size: 12pt;\"> Our system emails are beautiful, modern, and, most importantly, responsive - update yours!!!</span></h1>\r\n<!--more-->\r\n\r\nTo preview the new templates, visit your Activ8 Cloud help: <a href=\"https://links.send1.activeclubsolutions.com/?ref=4EEAAH-ecfDIRUUHkxNC2H59p1y9WC16AQAAAF8eZhaKhxhw6ZerpNlo6nOyxVlFlCckIIwh1l0KxnbmP7yDKbLGxN25zysoWR9JOi28-dD4fTlCAuI-9w7Z6S1rOT2T1BKZYpTYN60FFTk3ILxGcx-JIVHqEH-3M3JSDh3bzzg6C6RzMqcTIQrmWSilJnBCbeud9TukmxAOW50hqDF-tfbmCpxkDpInMRZi_QNvASWFwPl3OLYxyPTq5vy8wyOlWr4uS8yg1BTODqfDUHV8qzuzmOkpYLQ2ky5HfoW4t6W-dzRjW6gFOfM3RwOb5HKASLPbhdo6VcElfWjRNKj_7FIaqTfwN2DoIHtOLVruxLGlJnH2YOV-WZDu8uc\">Templates previews.</a>\r\n\r\nIf you would like to upgrade some or all your system emails to the new templates, you have 2 convenient options:\r\n1. Contact support for a setup at the standard support fee\r\n2. Or - Activate and edit these templates on your own at any time. We made this video to guide you through the process: <a href=\"https://player.vimeo.com/video/908801765\">New template self setup tutorial</a>.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Remember to update your System Emails!','','publish','closed','open','','remember-to-update-your-system-emails','','','2025-07-10 10:56:53','2025-07-10 17:56:53','',0,'https://activeclubsolutions.net/?p=4319',0,'post','',0),
(4321,2,'2025-04-10 11:23:53','2025-04-10 18:23:53','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/04/Feed-pics.gif\"><img class=\"alignnone wp-image-4323 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/04/Feed-pics.gif\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<p data-pm-slice=\"1 1 []\">We’ve got some news so good, you’ll want to raise a glass! <img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/champagne-glasses-21x21.png\" />Our brand-new Referral Program is here, and it’s your chance to save big just for sharing the love.\r\n\r\nThink of it as our way of saying, “Thanks for being awesome!” (and for having great taste in business tools <img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/wink-21x21.png\" />). Here’s how it works:\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/champagne-bottle.png\" /><strong>Refer 1 new customer</strong> to Activ8 by 12/31/25 and get entered into a drawing to <strong>win a whole year of subscription</strong> fees waived! (Drawing held on Jan 1, 2026)\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/champagne-bottle.png\" /><strong>Refer 2 new customers</strong> by 12/31/25 and <strong>we’ll waive six months of your subscription fees</strong>—no drawing, just sweet savings!\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/champagne-bottle.png\" /><strong>Refer 4 new customers</strong> by 12/31/25 and <strong>we’ll wipe out an entire year of your subscription fees</strong>—guaranteed!</p>\r\n<p data-pm-slice=\"1 1 []\"></p>\r\n<p data-pm-slice=\"1 1 []\"><strong>To qualify:</strong>\r\nYour referrals need to be active and processing transactions by <strong>12/31/25</strong> to count. Ready to play matchmaker for us? We’ve made it easy—just click below and share the good news:\r\n\r\n<a title=\"Submit a referral\" href=\"https://activ8commerce.com/submit-your-referral/\" target=\"_blank\" rel=\"noopener\"><img src=\"https://www.secureclub.net/images/activeclub/release%20notes/referral-click-620x293.png\" /></a>\r\n\r\n</p>\r\nLooking forward to seeing who you send our way!\r\n\r\nCheers,\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Our brand-new Referral Program is here!','','draft','closed','open','','our-brand-new-referral-program-is-here','','','2025-08-13 13:41:02','2025-08-13 20:41:02','',0,'https://activeclubsolutions.net/?p=4321',0,'post','',0),
(4323,21,'2025-04-10 11:23:36','2025-04-10 18:23:36','','Feed pics','','inherit','closed','closed','','feed-pics-13','','','2025-04-10 11:23:36','2025-04-10 18:23:36','',4321,'https://activeclubsolutions.net/wp-content/uploads/2025/04/Feed-pics.gif',0,'attachment','image/gif',0),
(4324,2,'2025-04-24 12:37:35','2025-04-24 19:37:35','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/04/Feed-pics-1.png\"><img class=\"alignnone wp-image-4325 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/04/Feed-pics-1.png\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<table style=\"width: 111.753%; height: 433px;\" width=\"620\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 100%;\">Join us <strong>Tuesday, May 6 at 1 PM Pacific / 4 PM Eastern</strong> for a fast, practical webinar to help you avoid tech troubles and keep things running smoothly.\r\n\r\nWe\'ll cover:\r\n\r\n<strong>Credit Card Readers: </strong>What works with Activ8, setup tips, and common fixes (it depends on your processor—we’ll explain).\r\n<strong>Receipt Printers:</strong> – Compatible models, install steps, and top printing fails to avoid.\r\n<strong>WiFi: </strong>What you really need for solid POS performance—and what to stay away from.\r\n<strong> Q&amp;A</strong> Session – with our developer and support team—bring your toughest questions!\r\n\r\n<strong>Save your Spot:</strong>\r\n\r\nEmail <strong><a href=\"mailto:brandy@activeclubsolutions.com\">brandy@activeclubsolutions.com</a></strong>.\r\n\r\nCan\'t make it? Let us know what days and times works better - we\'re planning more!</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"text-align: center;\"></h3>\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','POS Hardware Doesn\'t Have to Be a Headache Webinar!','','draft','closed','open','','pos-hardware-doesnt-have-to-be-a-headache-webinar','','','2025-05-07 10:33:41','2025-05-07 17:33:41','',0,'https://activeclubsolutions.net/?p=4324',0,'post','',0),
(4325,21,'2025-04-24 12:34:09','2025-04-24 19:34:09','','Feed pics (1)','','inherit','closed','closed','','feed-pics-1-3','','','2025-04-24 12:34:09','2025-04-24 19:34:09','',4324,'https://activeclubsolutions.net/wp-content/uploads/2025/04/Feed-pics-1.png',0,'attachment','image/png',0),
(4327,2,'2025-05-07 10:39:41','2025-05-07 17:39:41','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/04/Feed-pics-1.png\"><img class=\"alignnone wp-image-4325 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/04/Feed-pics-1.png\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<h2>Access the Webinar Recording here:</h2>\r\n<h2><iframe title=\"Activ8 POS Readers and Printers Webinar May 2025\" src=\"https://player.vimeo.com/video/1082254641?title=0&amp;byline=0&amp;portrait=0&amp;badge=0&amp;autopause=0&amp;player_id=0&amp;app_id=58479\" width=\"240\" height=\"135\" frameborder=\"0\" data-mce-fragment=\"1\"></iframe></h2>\r\n<h2 data-pm-slice=\"1 1 []\">In this webinar:</h2>\r\nA fast, practical webinar to help you avoid tech troubles and keep things running smoothly.\r\n\r\n<strong><img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> Credit Card Readers: </strong>What works with Activ8, setup tips, and common fixes (it depends on your processor—we’ll explain).\r\n<strong><img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> Receipt Printers:</strong> – Compatible models, install steps, and top printing fails to avoid.\r\n<strong><img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> WiFi: </strong>What you really need for solid POS performance—and what to stay away from.\r\n<strong> <img src=\"https://www.secureclub.net/images/ActiveClub/Icons%20and%20emojis/green-check.png\" /> Q&amp;A</strong> Session – with our developer and support team.\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','May 2025 Activ8 POS Readers and Printers Webinar Recording','','publish','closed','open','','may-2025-activ8-pos-readers-and-printers-webinar-recording','','','2025-05-07 10:39:41','2025-05-07 17:39:41','',0,'https://activeclubsolutions.net/?p=4327',0,'post','',0),
(4329,2,'2025-05-27 10:31:00','2025-05-27 17:31:00','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics.png\"><img class=\"alignnone wp-image-4330 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics.png\" alt=\"\" width=\"300\" height=\"300\" /></a></h1>\r\n<p data-start=\"99\" data-end=\"167\"><strong data-start=\"99\" data-end=\"167\">New Integration: Activ8 + Klaviyo = Next-Level Wine Marketing</strong></p>\r\n<p data-start=\"169\" data-end=\"313\">We’re excited to announce our <strong data-start=\"199\" data-end=\"232\">full integration with Klaviyo</strong>—a top-tier email and SMS marketing platform trusted by leading eCommerce brands.</p>\r\n<p data-start=\"315\" data-end=\"757\"><strong data-start=\"315\" data-end=\"365\">What this means for your winery or distillery:</strong><br data-start=\"365\" data-end=\"368\" />Your customer and sales data from Activ8 now flows seamlessly into Klaviyo, empowering you to:<br data-start=\"462\" data-end=\"465\" />✅ Send targeted, personalized emails and texts based on purchase history<br data-start=\"537\" data-end=\"540\" />✅ Automate abandoned cart reminders, product announcements, and reorder nudges<br data-start=\"618\" data-end=\"621\" />✅ Segment your audience by tasting room visits, lifetime value, and more<br data-start=\"693\" data-end=\"696\" />✅ Boost online wine sales with smarter, data-driven campaigns</p>\r\n<p data-start=\"759\" data-end=\"819\"><strong data-start=\"759\" data-end=\"819\">Take your wine eCommerce to the next level—effortlessly.</strong></p>\r\n<p data-start=\"821\" data-end=\"934\">👉 <strong data-start=\"824\" data-end=\"850\">Contact Support@activeclubsolutions.com</strong> today to enable the Klaviyo integration and start growing your DTC sales with ease.</p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Send More, Sell More—Klaviyo Now Integrated with Activ8 Commerce','','publish','closed','open','','send-more-sell-more-klaviyo-now-integrated-with-activ8-commerce','','','2025-05-27 10:31:00','2025-05-27 17:31:00','',0,'https://activeclubsolutions.net/?p=4329',0,'post','',0),
(4330,21,'2025-05-27 10:29:29','2025-05-27 17:29:29','','Feed pics','','inherit','closed','closed','','feed-pics-14','','','2025-05-27 10:29:29','2025-05-27 17:29:29','',4329,'https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics.png',0,'attachment','image/png',0),
(4332,21,'2025-05-28 10:02:48','0000-00-00 00:00:00','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics-1.png\"><img class=\"alignnone wp-image-4333 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics-1.png\" alt=\"\" width=\"300\" height=\"300\" /></a></h1>\r\n<p data-start=\"147\" data-end=\"214\"><strong data-start=\"147\" data-end=\"214\">New Feature Alert: Subscriptions Are Here! 🍷📦</strong></p>\r\n<p data-start=\"216\" data-end=\"347\">We’re thrilled to introduce our latest game-changing feature: <strong data-start=\"278\" data-end=\"311\">Subscriptions</strong> – now available in Activ8 Commerce!</p>\r\n<p data-start=\"349\" data-end=\"600\">Give your customers the freedom to sip on their schedule with <strong data-start=\"411\" data-end=\"444\">automated recurring shipments</strong> and flexible subscription options. Whether it’s monthly reds or quarterly mixed cases, it’s never been easier to keep the wine flowing—and the revenue too.</p>\r\n\r\n<h3 data-start=\"602\" data-end=\"625\">Why You’ll Love It:</h3>\r\n<ul data-start=\"626\" data-end=\"876\">\r\n 	<li data-start=\"626\" data-end=\"689\">\r\n<p data-start=\"628\" data-end=\"689\"><strong data-start=\"628\" data-end=\"662\">Predictable, recurring revenue</strong> without the admin hassle</p>\r\n</li>\r\n 	<li data-start=\"690\" data-end=\"751\">\r\n<p data-start=\"692\" data-end=\"751\"><strong data-start=\"692\" data-end=\"717\">Hands-off fulfillment</strong> with automatic order generation</p>\r\n</li>\r\n 	<li data-start=\"752\" data-end=\"811\">\r\n<p data-start=\"754\" data-end=\"811\"><strong data-start=\"754\" data-end=\"787\">Customer-friendly flexibility</strong> that boosts retention</p>\r\n</li>\r\n 	<li data-start=\"812\" data-end=\"876\">\r\n<p data-start=\"814\" data-end=\"876\"><strong data-start=\"814\" data-end=\"838\">Seamless integration</strong> with your existing Activ8 store &amp; POS</p>\r\n</li>\r\n</ul>\r\n<p data-start=\"878\" data-end=\"931\">Ready to turn casual shoppers into loyal subscribers?</p>\r\n<p data-start=\"933\" data-end=\"1000\">👉 <strong data-start=\"936\" data-end=\"1000\">Contact Activ8 Support to activate Subscriptions today!</strong></p>\r\n<p data-start=\"1002\" data-end=\"1044\">Let’s raise a glass to smarter selling. 🍷</p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Subscriptions Are Here!','','draft','closed','open','','','','','2025-05-28 10:02:48','2025-05-28 17:02:48','',0,'https://activeclubsolutions.net/?p=4332',0,'post','',0),
(4333,21,'2025-05-27 14:07:26','2025-05-27 21:07:26','','Feed pics (1)','','inherit','closed','closed','','feed-pics-1-4','','','2025-05-27 14:07:26','2025-05-27 21:07:26','',4332,'https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics-1.png',0,'attachment','image/png',0),
(4334,2,'2025-05-29 11:40:42','2025-05-29 18:40:42','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics.gif\"><img class=\"alignnone wp-image-4335 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics.gif\" alt=\"\" width=\"300\" height=\"300\" /></a></h1>\r\n<p data-start=\"92\" data-end=\"252\"><strong data-start=\"92\" data-end=\"140\">🔧 Quick Tip for Activ8 Cloud and POS v2 Users</strong><br data-start=\"140\" data-end=\"143\" />If your <strong data-start=\"151\" data-end=\"167\">Activ8 Cloud</strong> or <strong data-start=\"171\" data-end=\"181\">POS v2</strong> ever feels sluggish or unresponsive, a quick refresh can save the day!</p>\r\n<p data-start=\"254\" data-end=\"265\">Here’s how:</p>\r\n\r\n<ul data-start=\"267\" data-end=\"458\">\r\n 	<li data-start=\"267\" data-end=\"322\">\r\n<p data-start=\"269\" data-end=\"322\"><strong data-start=\"269\" data-end=\"281\">Windows:</strong> Press <strong data-start=\"288\" data-end=\"301\">Ctrl + F5</strong> for a hard refresh</p>\r\n</li>\r\n 	<li data-start=\"323\" data-end=\"370\">\r\n<p data-start=\"325\" data-end=\"370\"><strong data-start=\"325\" data-end=\"333\">Mac:</strong> Press the <strong data-start=\"344\" data-end=\"363\">Command (⌘) + R</strong> keys</p>\r\n</li>\r\n 	<li data-start=\"371\" data-end=\"458\">\r\n<p data-start=\"373\" data-end=\"458\"><strong data-start=\"373\" data-end=\"382\">iPad:</strong> There’s no refresh button — just <strong data-start=\"416\" data-end=\"435\">reboot the iPad</strong> to get back on track</p>\r\n</li>\r\n</ul>\r\n<p data-start=\"460\" data-end=\"581\">💡 A quick refresh clears stuck data and reloads the latest version — giving you smoother, faster performance in seconds!</p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Feeling Stuck? Hit Refresh!','','publish','closed','open','','feeling-stuck-hit-refresh','','','2025-05-29 11:40:42','2025-05-29 18:40:42','',0,'https://activeclubsolutions.net/?p=4334',0,'post','',0),
(4335,21,'2025-05-29 11:38:13','2025-05-29 18:38:13','','Feed pics','','inherit','closed','closed','','feed-pics-15','','','2025-05-29 11:38:13','2025-05-29 18:38:13','',4334,'https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics.gif',0,'attachment','image/gif',0),
(4337,21,'2025-06-10 08:37:39','2025-06-10 15:37:39','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/06/26.png\"><img class=\"alignnone wp-image-4339 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/06/26.png\" alt=\"\" width=\"300\" height=\"300\" /></a></h1>\r\n<p data-start=\"265\" data-end=\"431\">We’re excited to roll out a fresh update to Activ8 POS, designed to make your daily operations faster, clearer, and more connected. Here\'s what\'s new in version 195:</p>\r\n\r\n<ul data-start=\"433\" data-end=\"1596\">\r\n 	<li data-start=\"433\" data-end=\"618\">\r\n<p data-start=\"435\" data-end=\"618\"><strong data-start=\"435\" data-end=\"463\">Inventory Transfer Notes</strong><br data-start=\"463\" data-end=\"466\" />You can now add notes when performing inventory transfers directly in the POS. This gives your team added visibility and clarity around each movement.</p>\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Release%20Notes/inventory_transfer.png\" width=\"480\" height=\"267\" /></li>\r\n 	<li data-start=\"620\" data-end=\"845\">\r\n<p data-start=\"622\" data-end=\"845\"><strong data-start=\"622\" data-end=\"654\">Customer Search Enhancements</strong><br data-start=\"654\" data-end=\"657\" />When you search for a customer, you’ll now see both their pickup count and tasting room visit count for the current month. These are displayed as clickable buttons with helpful tooltips.</p>\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Release%20Notes/customer_notes_crop.PNG\" width=\"486\" height=\"177\" /></li>\r\n 	<li data-start=\"847\" data-end=\"1057\">\r\n<p data-start=\"849\" data-end=\"1057\"><strong data-start=\"849\" data-end=\"889\">Improved Customer Selection Workflow</strong><br data-start=\"889\" data-end=\"892\" />Whether you\'re starting a new order or selecting an existing customer, all related buttons are now clickable and include tooltips to guide you through the process.</p>\r\n<img src=\"https://www.secureclub.net/images/ActiveClub/Release%20Notes/customer_preview.png\" width=\"494\" height=\"276\" /></li>\r\n 	<li data-start=\"1059\" data-end=\"1249\">\r\n<p data-start=\"1061\" data-end=\"1249\"><strong data-start=\"1061\" data-end=\"1085\">Pending Order Search</strong><br data-start=\"1085\" data-end=\"1088\" />Quickly find pending orders with the new search functionality. This feature was introduced last month and is now fully integrated into the customer experience.</p>\r\n</li>\r\n 	<li data-start=\"1440\" data-end=\"1596\">\r\n<p data-start=\"1442\" data-end=\"1596\"><strong data-start=\"1442\" data-end=\"1485\">Bug Fixes &amp; User Interface Improvements</strong><br data-start=\"1485\" data-end=\"1488\" />As always, this release includes various bug fixes and UI refinements to keep everything running smoothly.</p>\r\n</li>\r\n</ul>\r\n<p data-start=\"1598\" data-end=\"1670\">If you have any questions or feedback, our support team is here to help.</p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','New in Activ8 POS: Smarter Customer Insights, Transfer Notes & More','','publish','closed','open','','new-in-activ8-pos-smarter-customer-insights-transfer-notes-more','','','2025-06-10 08:37:39','2025-06-10 15:37:39','',0,'https://activeclubsolutions.net/?p=4337',0,'post','',0),
(4338,21,'2025-06-10 08:37:08','2025-06-10 15:37:08','','Feed pics','','inherit','closed','closed','','feed-pics-16','','','2025-06-10 08:37:08','2025-06-10 15:37:08','',4337,'https://activeclubsolutions.net/wp-content/uploads/2025/06/Feed-pics.zip',0,'attachment','application/zip',0),
(4339,21,'2025-06-10 08:37:28','2025-06-10 15:37:28','','26','','inherit','closed','closed','','26','','','2025-06-10 08:37:28','2025-06-10 15:37:28','',4337,'https://activeclubsolutions.net/wp-content/uploads/2025/06/26.png',0,'attachment','image/png',0),
(4341,2,'2025-08-13 13:40:24','2025-08-13 20:40:24','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/08/Feed-pics.gif\"><img class=\"alignnone wp-image-4342 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/08/Feed-pics.gif\" alt=\"Toasting to referrals\" width=\"300\" height=\"300\" /></a>\r\n<p data-start=\"236\" data-end=\"452\">We’re keeping the good times (and good deals) rolling with our Referral Program—your chance to score serious savings just for introducing fellow wineries, distilleries, or craft beverage friends to Activ8 Commerce.</p>\r\n<p data-start=\"454\" data-end=\"486\"><strong data-start=\"454\" data-end=\"484\">Here’s the 2025 game plan:</strong></p>\r\n\r\n<ul>\r\n 	<li data-start=\"489\" data-end=\"573\"><strong data-start=\"489\" data-end=\"503\">1 referral</strong> by 12/31/25 → entered to win <em data-start=\"533\" data-end=\"546\">1 year free</em> (drawing on Jan 1, 2026)</li>\r\n 	<li data-start=\"576\" data-end=\"656\"><strong data-start=\"576\" data-end=\"591\">2 referrals</strong> by 12/31/25 → <em data-start=\"606\" data-end=\"621\">6 months free</em>—no drawing, just instant savings</li>\r\n 	<li data-start=\"659\" data-end=\"723\"><strong data-start=\"659\" data-end=\"674\">4 referrals</strong> by 12/31/25 → <em data-start=\"689\" data-end=\"707\">1 full year free</em>—guaranteed 🎯</li>\r\n</ul>\r\n<p data-start=\"725\" data-end=\"825\"><strong data-start=\"725\" data-end=\"740\">To qualify:</strong><br data-start=\"740\" data-end=\"743\" />Your referrals just need to be active and processing transactions by year’s end.</p>\r\n<p data-start=\"827\" data-end=\"917\"><strong data-start=\"827\" data-end=\"841\">It’s easy:</strong> click below, share the good news, and let’s grow this community together.</p>\r\n<p data-start=\"919\" data-end=\"1017\">Cheers to saving big and helping friends find their perfect commerce partner!</p>\r\n<a title=\"Submit a referral\" href=\"https://activ8commerce.com/submit-your-referral/\" target=\"_blank\" rel=\"noopener\"><img src=\"https://www.secureclub.net/images/activeclub/release%20notes/referral-click-620x293.png\" /></a>\r\n\r\nLooking forward to seeing who you send our way!\r\n\r\nCheers,\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Raise a glass—your referrals could toast you to free months (or a whole year) of Activ8!','','publish','closed','open','','raise-a-glass-your-referrals-could-toast-you-to-free-months-or-a-whole-year-of-activ8','','','2025-08-13 13:59:49','2025-08-13 20:59:49','',0,'https://activeclubsolutions.net/?p=4341',0,'post','',0),
(4342,21,'2025-08-13 13:38:37','2025-08-13 20:38:37','','Feed pics','','inherit','closed','closed','','feed-pics-17','','','2025-08-13 13:38:51','2025-08-13 20:38:51','',4341,'https://activeclubsolutions.net/wp-content/uploads/2025/08/Feed-pics.gif',0,'attachment','image/gif',0),
(4343,2,'2025-08-13 14:02:53','2025-08-13 21:02:53','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/03/Feed-pics.png\"><img class=\"alignnone wp-image-4315 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/03/Feed-pics.png\" alt=\"stress-free club releases\" width=\"300\" height=\"300\" /></a></h1>\r\n<p data-start=\"135\" data-end=\"322\">Did you know you can use the <strong>Club Release Wizard</strong> in your Activ8 Cloud Back Office <strong>to plan, run, and even schedule</strong> your club releases ahead of time?<br data-start=\"295\" data-end=\"298\" />It’s your shortcut to:</p>\r\n\r\n<ul data-start=\"323\" data-end=\"566\">\r\n 	<li data-start=\"323\" data-end=\"396\">\r\n<p data-start=\"325\" data-end=\"396\"><strong data-start=\"325\" data-end=\"349\">Stress-free releases</strong> – Automate processes and avoid manual errors</p>\r\n</li>\r\n 	<li data-start=\"397\" data-end=\"481\">\r\n<p data-start=\"399\" data-end=\"481\"><strong data-start=\"399\" data-end=\"418\">Happier members</strong> – Keep them informed and excited with engaging system emails</p>\r\n</li>\r\n 	<li data-start=\"482\" data-end=\"566\">\r\n<p data-start=\"484\" data-end=\"566\"><strong data-start=\"484\" data-end=\"502\">Better results</strong> – Follow best practices to boost loyalty and repeat purchases</p>\r\n</li>\r\n</ul>\r\n<p data-start=\"568\" data-end=\"688\">🎥 <strong data-start=\"571\" data-end=\"594\">Missed our Club Wizard Webinar?</strong> <a href=\"https://player.vimeo.com/video/1070434390\">Access the recording here</a> to see a live demo and get expert tips from the Activ8 Team.</p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Run Your Club the Easy Way – With the Wizard!','','publish','closed','open','','run-your-club-the-easy-way-with-the-wizard','','','2025-08-13 14:02:53','2025-08-13 21:02:53','',0,'https://activeclubsolutions.net/?p=4343',0,'post','',0),
(4345,2,'2025-08-21 09:00:23','2025-08-21 16:00:23','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/08/SHopify-feed.png\"><img class=\"alignnone wp-image-4347 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/08/SHopify-feed.png\" alt=\"\" width=\"300\" height=\"300\" /></a></h1>\r\n<p data-start=\"99\" data-end=\"167\"><strong data-start=\"99\" data-end=\"167\">We’re bringing the power of Shopify—the world’s leading eCommerce platform—to Activ8 Commerce. </strong>Soon, you’ll be able to offer subscriptions, accept Apple Pay, Google Pay, and Shop Pay, and expand your online sales with ease.<!--more--><strong>READ MORE...</strong></p>\r\n<p data-start=\"99\" data-end=\"167\">With this integration, you’ll have the choice to continue using Activ8 Commerce\'s beautifully redesigned all-in-one eCommerce solution <strong data-start=\"499\" data-end=\"505\">or</strong> connect Shopify to unlock its specialized features — like subscriptions, digital wallets, and a wide range of plugins — all while keeping your POS, club, and inventory seamlessly connected.</p>\r\n<p data-start=\"759\" data-end=\"819\"><strong data-start=\"759\" data-end=\"819\">Take your wine eCommerce to the next level—effortlessly.</strong></p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Coming Soon: Shopify + Activ8 Commerce','','draft','closed','open','','coming-soon-shopify-activ8-commerce','','','2025-09-23 08:46:12','2025-09-23 15:46:12','',0,'https://activeclubsolutions.net/?p=4345',0,'post','',0),
(4347,21,'2025-08-18 09:19:03','2025-08-18 16:19:03','','SHopify-feed','','inherit','closed','closed','','shopify-feed','','','2025-08-18 09:19:03','2025-08-18 16:19:03','',4345,'https://activeclubsolutions.net/wp-content/uploads/2025/08/SHopify-feed.png',0,'attachment','image/png',0),
(4348,2,'2025-08-18 09:42:03','2025-08-18 16:42:03','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/08/webinar-news.png\"><img class=\"alignnone wp-image-4350 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/08/webinar-news.png\" alt=\"webinar news\" width=\"300\" height=\"300\" /></a>\r\n<p data-start=\"193\" data-end=\"313\">What if a built-in feature—already in your Activ8 system—could boost your wine club sales…and you’re not using it yet?</p>\r\n<p data-start=\"315\" data-end=\"704\">Join us for a short, high-impact session where we’ll:<br data-start=\"368\" data-end=\"371\" />✨ Share <strong data-start=\"379\" data-end=\"391\">big news</strong> and upcoming releases in Activ8—you’ll be the first to know<br data-start=\"451\" data-end=\"454\" />✨ Highlight <strong data-start=\"466\" data-end=\"493\">sales-boosting features</strong> you may not be using (or didn’t know existed!)<br data-start=\"540\" data-end=\"543\" />✨ Show how a small shift in your process could lead to big gains<br data-start=\"607\" data-end=\"610\" />✨ Wrap up with <strong data-start=\"625\" data-end=\"654\">Q&amp;A and open conversation</strong>—connect with the Activ8 team <em data-start=\"684\" data-end=\"689\">and</em> other businesses like yours.</p>\r\n<p data-start=\"706\" data-end=\"778\">🗓 <strong data-start=\"709\" data-end=\"732\">Thursday, September 4th 2025</strong><br data-start=\"732\" data-end=\"735\" />🕘 <strong>10:00 AM Pacific / 1:00 PM Eastern</strong></p>\r\n<p data-start=\"780\" data-end=\"840\">📩 <strong data-start=\"783\" data-end=\"838\">Register by emailing <a class=\"cursor-pointer\" rel=\"noopener\" data-start=\"806\" data-end=\"836\">Brandy@activeclubsolutions.com</a></strong></p>\r\n<p data-start=\"842\" data-end=\"958\">Don’t miss this chance to learn, connect, and grow. You’ve already got the tools—now let’s turn them into results.</p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','🚀 New Webinar: Activ8 News + Hidden Features That Drive Club Sales','','draft','closed','open','','%f0%9f%9a%80-new-webinar-activ8-news-hidden-features-that-drive-club-sales','','','2025-09-05 10:42:47','2025-09-05 17:42:47','',0,'https://activeclubsolutions.net/?p=4348',0,'post','',0),
(4350,21,'2025-08-18 09:38:57','2025-08-18 16:38:57','','webinar-news','','inherit','closed','closed','','webinar-news','','','2025-08-18 09:39:10','2025-08-18 16:39:10','',4348,'https://activeclubsolutions.net/wp-content/uploads/2025/08/webinar-news.png',0,'attachment','image/png',0),
(4351,2,'2025-08-29 08:19:35','2025-08-29 15:19:35','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.png\"><img class=\"alignnone wp-image-4304 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.png\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<h2>Access Webinar Recordings here:</h2>\r\n<ul>\r\n 	<li data-pm-slice=\"1 1 []\"><span style=\"font-size: 14pt;\">10 Reasons Why You Need Activ8 POS: <a href=\"https://player.vimeo.com/video/1045537937\">play here</a>. </span></li>\r\n 	<li data-pm-slice=\"1 1 []\"><span style=\"font-size: 14pt;\">RFM Filtering and Built-in Digital Marketing: <a href=\"https://player.vimeo.com/video/1058791357\">play here</a>. </span></li>\r\n 	<li data-pm-slice=\"1 1 []\"><span style=\"font-size: 14pt;\">Seamless Club and Allocation Releases: <a href=\"https://player.vimeo.com/video/1070434390\">play here</a>.</span></li>\r\n 	<li data-pm-slice=\"1 1 []\"><span style=\"font-size: 14pt;\">POS Printers and Credit Card Readers: <a href=\"https://player.vimeo.com/video/1082254641\">play here</a>. </span></li>\r\n 	<li data-pm-slice=\"1 1 []\"><span style=\"font-size: 14pt;\">Activ8 News + Club Sales Boosters built into your system: <a href=\"https://player.vimeo.com/video/1115988196\">play here</a>.</span></li>\r\n</ul>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Access Our Webinar Recordings','','publish','closed','open','','access-our-webinars','','','2025-09-04 15:58:55','2025-09-04 22:58:55','',0,'https://activeclubsolutions.net/?p=4351',0,'post','',0),
(4353,2,'2025-09-04 15:59:15','2025-09-04 22:59:15','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/08/webinar-news.png\"><img class=\"alignnone wp-image-4350 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/08/webinar-news.png\" alt=\"webinar news\" width=\"300\" height=\"300\" /></a>\r\n<p data-start=\"193\" data-end=\"313\">Missed our webinar? No worries, access the <a href=\"https://player.vimeo.com/video/1115988196\">recording right here!</a></p>\r\n<p data-start=\"193\" data-end=\"313\">What if a built-in feature—already in your Activ8 system—could boost your wine club sales…and you’re not using it yet?</p>\r\n<p data-start=\"315\" data-end=\"704\">What you will learn:<br data-start=\"368\" data-end=\"371\" />✨ <strong>Big news</strong> and upcoming releases in Activ8—you’ll be the first to know<br data-start=\"451\" data-end=\"454\" />✨ <strong>Sales-boosting features</strong> you may not be using (or didn’t know existed!)</p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Webinar Recording: Activ8 News + Hidden Features That Drive Club Sales','','publish','closed','open','','webinar-recording-activ8-news-hidden-features-that-drive-club-sales','','','2025-09-04 15:59:22','2025-09-04 22:59:22','',0,'https://activeclubsolutions.net/?p=4353',0,'post','',0),
(4354,2,'2025-09-23 08:54:37','2025-09-23 15:54:37','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/09/New-Shopify-Feed.png\"><img class=\"alignnone wp-image-4356 size-medium\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/09/New-Shopify-Feed-300x300.png\" alt=\"shopify meets Activ8 commerce\" width=\"300\" height=\"300\" /></a></h1>\r\n<p data-start=\"99\" data-end=\"167\"><strong data-start=\"99\" data-end=\"167\">We’re bringing the power of Shopify—the world’s leading eCommerce platform—to Activ8 Commerce. </strong>Offer subscriptions, accept Apple Pay, Google Pay, and Shop Pay, and expand your online sales with ease.<!--more--><strong>READ MORE...</strong></p>\r\n<p data-start=\"99\" data-end=\"167\">With this integration, you have the choice to continue using Activ8 Commerce\'s beautifully redesigned all-in-one eCommerce solution <strong data-start=\"499\" data-end=\"505\">or</strong> connect Shopify to unlock its specialized features — like subscriptions, digital wallets, and a wide range of plugins — all while keeping your POS, club, and inventory seamlessly connected.</p>\r\n<p data-start=\"759\" data-end=\"819\"><strong data-start=\"759\" data-end=\"819\">Take your wine eCommerce to the next level—effortlessly.</strong></p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','NEW! Shopify + Activ8 Commerce','','publish','closed','open','','new-shopify-activ8-commerce','','','2025-09-23 08:54:44','2025-09-23 15:54:44','',0,'https://activeclubsolutions.net/?p=4354',0,'post','',0),
(4355,21,'2025-09-23 08:54:14','2025-09-23 15:54:14','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/09/New-Shopify-Feed.png\"><img class=\"alignnone wp-image-4356 size-medium\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/09/New-Shopify-Feed-300x300.png\" alt=\"shopify meets Activ8 commerce\" width=\"300\" height=\"300\" /></a></h1>\r\n<p data-start=\"99\" data-end=\"167\"><strong data-start=\"99\" data-end=\"167\">We’re bringing the power of Shopify—the world’s leading eCommerce platform—to Activ8 Commerce. </strong>Offer subscriptions, accept Apple Pay, Google Pay, and Shop Pay, and expand your online sales with ease.<!--more--><strong>READ MORE...</strong></p>\r\n<p data-start=\"99\" data-end=\"167\">With this integration, you have the choice to continue using Activ8 Commerce\'s beautifully redesigned all-in-one eCommerce solution <strong data-start=\"499\" data-end=\"505\">or</strong> connect Shopify to unlock its specialized features — like subscriptions, digital wallets, and a wide range of plugins — all while keeping your POS, club, and inventory seamlessly connected.</p>\r\n<p data-start=\"759\" data-end=\"819\"><strong data-start=\"759\" data-end=\"819\">Take your wine eCommerce to the next level—effortlessly.</strong></p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','NEW! Shopify + Activ8 Commerce','','inherit','closed','closed','','4354-autosave-v1','','','2025-09-23 08:54:14','2025-09-23 15:54:14','',4354,'https://activeclubsolutions.net/?p=4355',0,'revision','',0),
(4356,21,'2025-09-23 08:52:06','2025-09-23 15:52:06','','New-Shopify-Feed','','inherit','closed','closed','','new-shopify-feed','','','2025-09-23 08:52:38','2025-09-23 15:52:38','',4354,'https://activeclubsolutions.net/wp-content/uploads/2025/09/New-Shopify-Feed.png',0,'attachment','image/png',0),
(4357,2,'2025-10-20 12:33:30','2025-10-20 19:33:30','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/10/Feed-pics.gif\"><img class=\"alignnone wp-image-4359 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/10/Feed-pics.gif\" alt=\"\" width=\"300\" height=\"300\" /></a></h1>\r\n<p data-start=\"369\" data-end=\"550\">Finding what you need just got faster — and smarter.<br data-start=\"421\" data-end=\"424\" />You can now <strong data-start=\"436\" data-end=\"483\">create, rename, and delete your own filters</strong> for both <strong data-start=\"493\" data-end=\"506\">Customers</strong> <em data-start=\"507\" data-end=\"512\">and</em> <strong data-start=\"513\" data-end=\"523\">Orders</strong> — no save button needed.</p>\r\n<p data-start=\"552\" data-end=\"708\">✅ Create 10 filters in 5 minutes<br data-start=\"584\" data-end=\"587\" />✅ Delete them just as fast<br data-start=\"613\" data-end=\"616\" />✅ Rename or tweak them anytime<br data-start=\"646\" data-end=\"649\" />✅ Plus, a new <strong data-start=\"663\" data-end=\"681\">“Clear” button</strong> to start fresh instantly</p>\r\n<p data-start=\"710\" data-end=\"775\">Simple, powerful, and built to keep your daily work effortless.</p>\r\n<p data-start=\"777\" data-end=\"891\">👉 Try it now in Activ8 Cloud, or contact <strong data-start=\"819\" data-end=\"854\"><a class=\"decorated-link cursor-pointer\" rel=\"noopener\" data-start=\"821\" data-end=\"852\">support@activ8clubsolutions.com</a></strong> if you’d like a quick walkthrough.</p>\r\n<p data-start=\"759\" data-end=\"819\"><a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/10/filters.png\"><img class=\"alignnone size-medium wp-image-4358\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/10/filters-300x281.png\" alt=\"\" width=\"300\" height=\"281\" /></a></p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','New in Activ8 Cloud: Custom Filters!','','publish','closed','open','','new-in-activ8-cloud-custom-filters','','','2025-10-22 16:30:08','2025-10-22 23:30:08','',0,'https://activeclubsolutions.net/?p=4357',0,'post','',0),
(4358,21,'2025-10-20 12:14:14','2025-10-20 19:14:14','','filters','','inherit','closed','closed','','filters','','','2025-10-20 12:14:14','2025-10-20 19:14:14','',4357,'https://activeclubsolutions.net/wp-content/uploads/2025/10/filters.png',0,'attachment','image/png',0),
(4359,21,'2025-10-20 12:33:18','2025-10-20 19:33:18','','Feed pics','','inherit','closed','closed','','feed-pics-18','','','2025-10-20 12:33:18','2025-10-20 19:33:18','',4357,'https://activeclubsolutions.net/wp-content/uploads/2025/10/Feed-pics.gif',0,'attachment','image/gif',0),
(4361,2,'2025-10-24 16:31:03','2025-10-24 23:31:03','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/10/Feed-pics-1.gif\"><img class=\"alignnone wp-image-4362 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/10/Feed-pics-1.gif\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<p data-start=\"172\" data-end=\"219\">Get holiday-ready and stay ahead of the rush.</p>\r\n<p data-start=\"221\" data-end=\"391\">🎄 <strong data-start=\"224\" data-end=\"267\">How-To LIVE! Holiday Promotions Edition</strong></p>\r\n<p data-start=\"221\" data-end=\"391\"><strong>Nov 6 - 4 PM Eastern / 1 PM Pacific</strong><br data-start=\"267\" data-end=\"270\" />Promo codes, gift kits &amp; shipping offers that boost sales.<br data-start=\"328\" data-end=\"331\" />📩 Email <strong data-start=\"340\" data-end=\"374\"><a class=\"decorated-link cursor-pointer\" rel=\"noopener\" data-start=\"342\" data-end=\"372\">Brandy@activeclubsolutions.com</a></strong> for your link.</p>\r\n<p data-start=\"393\" data-end=\"598\"><strong data-start=\"396\" data-end=\"433\">💬 Ask the Expert: Open Q&amp;A</strong></p>\r\n<p data-start=\"393\" data-end=\"598\"><strong data-start=\"396\" data-end=\"433\">Nov 20 - <span data-olk-copy-source=\"MessageBody\">11 AM – 3 PM Eastern / 8 AM – 12 PM Pacific</span></strong><br data-start=\"433\" data-end=\"436\" />Bring your tech &amp; process questions—get live answers before the holiday crush.<br data-start=\"514\" data-end=\"517\" />🔗 <a class=\"decorated-link\" href=\"https://v.ringcentral.com/join/632623601\" target=\"_new\" rel=\"noopener\" data-start=\"520\" data-end=\"596\">v.ringcentral.com/join/632623601</a></p>\r\n\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Join Us Live – November Sessions!','','draft','closed','open','','join-us-live-november-sessions','','','2025-11-07 09:52:43','2025-11-07 17:52:43','',0,'https://activeclubsolutions.net/?p=4361',0,'post','',0),
(4362,21,'2025-10-22 16:18:46','2025-10-22 23:18:46','','Feed pics','','inherit','closed','closed','','feed-pics-19','','','2025-10-22 16:18:46','2025-10-22 23:18:46','',4361,'https://activeclubsolutions.net/wp-content/uploads/2025/10/Feed-pics-1.gif',0,'attachment','image/gif',0),
(4363,2,'2025-11-07 09:51:03','2025-11-07 17:51:03','<h1><a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/11/Feed-pics-1.gif\"><img class=\"alignnone wp-image-4364 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/11/Feed-pics-1.gif\" alt=\"New stuff\" width=\"300\" height=\"300\" /></a></h1>\r\n<article class=\"text-token-text-primary w-full focus:outline-none [--shadow-height:45px] has-data-writing-block:pointer-events-none has-data-writing-block:-mt-(--shadow-height) has-data-writing-block:pt-(--shadow-height) [&amp;:has([data-writing-block])&gt;*]:pointer-events-auto [content-visibility:auto] supports-[content-visibility:auto]:[contain-intrinsic-size:auto_100lvh] scroll-mt-[calc(var(--header-height)+min(200px,max(70px,20svh)))]\" dir=\"auto\" tabindex=\"-1\" data-turn-id=\"request-WEB:1170a4a1-a79c-476b-b163-4df6b1f9b5a2-3\" data-testid=\"conversation-turn-4\" data-scroll-anchor=\"false\" data-turn=\"assistant\">\r\n<div class=\"text-base my-auto mx-auto [--thread-content-margin:--spacing(4)] thread-sm:[--thread-content-margin:--spacing(6)] thread-lg:[--thread-content-margin:--spacing(16)] px-(--thread-content-margin)\">\r\n<div class=\"[--thread-content-max-width:40rem] thread-lg:[--thread-content-max-width:48rem] mx-auto max-w-(--thread-content-max-width) flex-1 group/turn-messages focus-visible:outline-hidden relative flex w-full min-w-0 flex-col agent-turn\" tabindex=\"-1\">\r\n<div class=\"flex max-w-full flex-col grow\">\r\n<div class=\"min-h-8 text-message relative flex w-full flex-col items-end gap-2 text-start break-words whitespace-normal [.text-message+&amp;]:mt-1\" dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"e15333b6-233e-42f0-99a1-d056209a338b\" data-message-model-slug=\"gpt-5\">\r\n<div class=\"flex w-full flex-col gap-1 empty:hidden first:pt-[1px]\">\r\n<div class=\"streaming-animation markdown prose dark:prose-invert w-full break-words light markdown-new-styling\">\r\n<p data-start=\"119\" data-end=\"314\"><strong data-start=\"119\" data-end=\"184\">Smarter, faster, simpler — your Activ8 tools just got better.</strong><br data-start=\"184\" data-end=\"187\" />We’ve added practical upgrades across both the <strong data-start=\"234\" data-end=\"241\">POS</strong> and <strong data-start=\"246\" data-end=\"262\">Activ8 Cloud</strong> to make your workday smoother and more efficient.</p>\r\n<p data-start=\"316\" data-end=\"808\"><strong data-start=\"316\" data-end=\"331\">In the POS:</strong><br data-start=\"331\" data-end=\"334\" />💡 New <strong data-start=\"341\" data-end=\"364\">Product Detail Page</strong> for quick info at checkout<br data-start=\"391\" data-end=\"394\" />⚠️ <strong data-start=\"397\" data-end=\"421\">Promotion safeguards</strong> to flag missing requirements<br data-start=\"450\" data-end=\"453\" />💵 <strong data-start=\"456\" data-end=\"487\">Tip refunds &amp; store credits</strong> for cash orders<br data-start=\"503\" data-end=\"506\" data-is-only-node=\"\" />🔠 <strong data-start=\"509\" data-end=\"544\">Alphabetized packages/inventory</strong> for easier finds<br data-start=\"561\" data-end=\"564\" />🖨️ <strong data-start=\"568\" data-end=\"595\">Automated item printing</strong> by location<br data-start=\"607\" data-end=\"610\" />💳 <strong data-start=\"613\" data-end=\"642\">Card-on-file confirmation</strong> (shows last 4 digits)<br data-start=\"664\" data-end=\"667\" />📞 <strong data-start=\"670\" data-end=\"705\">Customer search by phone number</strong><br data-start=\"705\" data-end=\"708\" />#️⃣ <strong data-start=\"712\" data-end=\"732\">Auto number mode</strong> for faster tablet entry<br data-start=\"756\" data-end=\"759\" />📦 <strong data-start=\"762\" data-end=\"781\">Search packages</strong> by name, SKU, or barcode</p>\r\n<p data-start=\"810\" data-end=\"1189\"><strong data-start=\"810\" data-end=\"830\">In Activ8 Cloud:</strong><br data-start=\"830\" data-end=\"833\" />🔍 <strong data-start=\"836\" data-end=\"863\">Custom reusable filters</strong> for customer searches<br data-start=\"885\" data-end=\"888\" />⚙️ <strong data-start=\"891\" data-end=\"914\">Bulk Alter Products</strong> for quick product edits<br data-start=\"938\" data-end=\"941\" />🏷️ <strong data-start=\"945\" data-end=\"969\">Product Notes &amp; Tags</strong> to organize eCommerce<br data-start=\"991\" data-end=\"994\" data-is-only-node=\"\" />📸 <strong data-start=\"997\" data-end=\"1017\">Barcode scanning</strong> for faster product entry<br data-start=\"1042\" data-end=\"1045\" />🔗 <strong data-start=\"1048\" data-end=\"1068\">Custom URL slugs</strong> to prevent duplicates<br data-start=\"1090\" data-end=\"1093\" />🔒 <strong data-start=\"1096\" data-end=\"1120\">Members-only display</strong> for exclusive items<br data-start=\"1140\" data-end=\"1143\" />📬 <strong data-start=\"1146\" data-end=\"1179\">Expanded Klaviyo segmentation</strong> options</p>\r\n<p data-start=\"1191\" data-end=\"1275\">💬 Have questions or want a walkthrough? Email <strong data-start=\"1238\" data-end=\"1273\"><a class=\"decorated-link cursor-pointer\" rel=\"noopener\" data-start=\"1240\" data-end=\"1271\">support@activeclubsolutions.com</a></strong></p>\r\n<p data-start=\"1277\" data-end=\"1485\">🗓️ <strong data-start=\"1281\" data-end=\"1335\">Coming Soon: Ask the Expert – Open Q&amp;A with Activ8</strong><br data-start=\"1335\" data-end=\"1338\" />📅 November 20 | 11 AM–3 PM ET / 8 AM–12 PM PT<br data-start=\"1384\" data-end=\"1387\" />👉 Join live: <a class=\"decorated-link\" href=\"https://v.ringcentral.com/join/632623601\" target=\"_new\" rel=\"noopener\" data-start=\"1401\" data-end=\"1485\">https://v.ringcentral.com/join/632623601</a></p>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</article>\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Smarter, faster, simpler — your Activ8 tools just got better.','','publish','closed','open','','new-in-activ8-cloud-custom-filters-2','','','2025-11-07 09:51:50','2025-11-07 17:51:50','',0,'https://activeclubsolutions.net/?p=4363',0,'post','',0),
(4364,21,'2025-11-07 09:50:45','2025-11-07 17:50:45','','Feed pics (1)','','inherit','closed','closed','','feed-pics-1-5','','','2025-11-07 09:50:55','2025-11-07 17:50:55','',4363,'https://activeclubsolutions.net/wp-content/uploads/2025/11/Feed-pics-1.gif',0,'attachment','image/gif',0),
(4365,2,'2025-11-12 12:12:27','2025-11-12 20:12:27','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/11/Feed-pics-1.png\"><img class=\"alignnone wp-image-4367 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/11/Feed-pics-1.png\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n<p data-start=\"172\" data-end=\"219\">Get holiday-ready and stay ahead of the rush.</p>\r\n<p data-start=\"393\" data-end=\"598\"><strong data-start=\"396\" data-end=\"433\">💬 Ask the Expert: Open Q&amp;A</strong></p>\r\n<p data-start=\"393\" data-end=\"598\"><strong data-start=\"396\" data-end=\"433\">Nov 20 - <span data-olk-copy-source=\"MessageBody\">11 AM – 3 PM Eastern / 8 AM – 12 PM Pacific</span></strong><br data-start=\"433\" data-end=\"436\" />Bring your tech &amp; process questions—get live answers before the holiday crush.</p>\r\nHave questions? Get them answered before the year-end crunch.\r\nThis open-door Q&amp;A is your chance to talk directly with our experts - about tech, workflows, club management, eCommerce, or anything else.\r\n\r\nGet your question answered, stay a minute or chat for a while, stay tuned the whole time, it is free!\r\n\r\n<strong>Why join?</strong>\r\nBecause November is the perfect window to prepare - before tasting rooms get busy and club releases kick in.\r\nBring your questions, get clear answers, and save yourself from troubleshooting during your busiest days.\r\n<p data-start=\"393\" data-end=\"598\"><br data-start=\"514\" data-end=\"517\" />🔗 <a class=\"decorated-link\" href=\"https://v.ringcentral.com/join/632623601\" target=\"_new\" rel=\"noopener\" data-start=\"520\" data-end=\"596\">v.ringcentral.com/join/632623601</a></p>\r\n<p data-start=\"393\" data-end=\"598\">Meeting ID: 632623601</p>\r\nOne tap to join (audio only):\r\n+1 267 930 4000, 632623601# (United States – Philadelphia, PA)\r\n\r\n<hr />\r\n\r\nThe Λctiv8 Team\r\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Ask the Expert - Free Session!','','publish','closed','open','','ask-the-expert-free-session','','','2025-11-12 12:12:38','2025-11-12 20:12:38','',0,'https://activeclubsolutions.net/?p=4365',0,'post','',0),
(4366,21,'2025-11-12 12:11:54','2025-11-12 20:11:54','<a href=\"https://activeclubsolutions.net/wp-content/uploads/2025/10/Feed-pics-1.gif\"><img class=\"alignnone wp-image-4362 size-full\" src=\"https://activeclubsolutions.net/wp-content/uploads/2025/10/Feed-pics-1.gif\" alt=\"\" width=\"300\" height=\"300\" data-wp-editing=\"1\" /></a>\n<p data-start=\"172\" data-end=\"219\">Get holiday-ready and stay ahead of the rush.</p>\n<p data-start=\"393\" data-end=\"598\"><strong data-start=\"396\" data-end=\"433\">💬 Ask the Expert: Open Q&amp;A</strong></p>\n<p data-start=\"393\" data-end=\"598\"><strong data-start=\"396\" data-end=\"433\">Nov 20 - <span data-olk-copy-source=\"MessageBody\">11 AM – 3 PM Eastern / 8 AM – 12 PM Pacific</span></strong><br data-start=\"433\" data-end=\"436\" />Bring your tech &amp; process questions—get live answers before the holiday crush.</p>\nHave questions? Get them answered before the year-end crunch.\nThis open-door Q&amp;A is your chance to talk directly with our experts - about tech, workflows, club management, eCommerce, or anything else.\n\nGet your question answered, stay a minute or chat for a while, stay tuned the whole time, it is free!\n\n<strong>Why join?</strong>\nBecause November is the perfect window to prepare - before tasting rooms get busy and club releases kick in.\nBring your questions, get clear answers, and save yourself from troubleshooting during your busiest days.\n<p data-start=\"393\" data-end=\"598\"><br data-start=\"514\" data-end=\"517\" />🔗 <a class=\"decorated-link\" href=\"https://v.ringcentral.com/join/632623601\" target=\"_new\" rel=\"noopener\" data-start=\"520\" data-end=\"596\">v.ringcentral.com/join/632623601</a></p>\n<p data-start=\"393\" data-end=\"598\">Meeting ID: 632623601</p>\nOne tap to join (audio only):\n+1 267 930 4000, 632623601# (United States – Philadelphia, PA)\n\n<hr />\n\nThe Λctiv8 Team\n<p style=\"font-size: 80%;\" align=\"left\">© 2023 Λctiv8Commerce/Active Club Solutions, Inc.</p>','Ask the Expert - Free Session!','','inherit','closed','closed','','4365-autosave-v1','','','2025-11-12 12:11:54','2025-11-12 20:11:54','',4365,'https://activeclubsolutions.net/?p=4366',0,'revision','',0),
(4367,21,'2025-11-12 12:12:15','2025-11-12 20:12:15','','Feed pics (1)','','inherit','closed','closed','','feed-pics-1-6','','','2025-11-12 12:12:15','2025-11-12 20:12:15','',4365,'https://activeclubsolutions.net/wp-content/uploads/2025/11/Feed-pics-1.png',0,'attachment','image/png',0),
(4368,2,'2025-11-13 17:49:10','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','open','','','','','2025-11-13 17:49:10','0000-00-00 00:00:00','',0,'https://activeclubsolutions.net/?p=4368',0,'post','',0);
/*!40000 ALTER TABLE `wpqk_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_redirection_404`
--

DROP TABLE IF EXISTS `wpqk_redirection_404`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_redirection_404` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` mediumtext NOT NULL,
  `domain` varchar(255) DEFAULT NULL,
  `agent` varchar(255) DEFAULT NULL,
  `referrer` varchar(255) DEFAULT NULL,
  `http_code` int(10) unsigned NOT NULL DEFAULT 0,
  `request_method` varchar(10) DEFAULT NULL,
  `request_data` mediumtext DEFAULT NULL,
  `ip` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `referrer` (`referrer`(191)),
  KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_redirection_404`
--

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

--
-- Table structure for table `wpqk_redirection_groups`
--

DROP TABLE IF EXISTS `wpqk_redirection_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_redirection_groups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `tracking` int(11) NOT NULL DEFAULT 1,
  `module_id` int(10) unsigned NOT NULL DEFAULT 0,
  `status` enum('enabled','disabled') NOT NULL DEFAULT 'enabled',
  `position` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `module_id` (`module_id`),
  KEY `status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_redirection_groups`
--

LOCK TABLES `wpqk_redirection_groups` WRITE;
/*!40000 ALTER TABLE `wpqk_redirection_groups` DISABLE KEYS */;
INSERT INTO `wpqk_redirection_groups` VALUES
(1,'Redirections',1,1,'enabled',0),
(2,'Modified Posts',1,1,'enabled',1);
/*!40000 ALTER TABLE `wpqk_redirection_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_redirection_items`
--

DROP TABLE IF EXISTS `wpqk_redirection_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_redirection_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `url` mediumtext NOT NULL,
  `match_url` varchar(2000) DEFAULT NULL,
  `match_data` text DEFAULT NULL,
  `regex` int(10) unsigned NOT NULL DEFAULT 0,
  `position` int(10) unsigned NOT NULL DEFAULT 0,
  `last_count` int(10) unsigned NOT NULL DEFAULT 0,
  `last_access` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `group_id` int(11) NOT NULL DEFAULT 0,
  `status` enum('enabled','disabled') NOT NULL DEFAULT 'enabled',
  `action_type` varchar(20) NOT NULL,
  `action_code` int(10) unsigned NOT NULL,
  `action_data` mediumtext DEFAULT NULL,
  `match_type` varchar(20) NOT NULL,
  `title` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(191)),
  KEY `status` (`status`),
  KEY `regex` (`regex`),
  KEY `group_idpos` (`group_id`,`position`),
  KEY `group` (`group_id`),
  KEY `match_url` (`match_url`(191))
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_redirection_items`
--

LOCK TABLES `wpqk_redirection_items` WRITE;
/*!40000 ALTER TABLE `wpqk_redirection_items` DISABLE KEYS */;
INSERT INTO `wpqk_redirection_items` VALUES
(1,'/sample-blog-post/','/sample-blog-post','{\"source\":{\"flag_regex\":false}}',0,0,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/new-constant-contact-vertical-response-integration/','url',NULL),
(2,'/active-club-solutions-is-pleased-to-announce-the-full-integration-of-its-wine-club-software-with-constant-contact-and-vertical-response/','/active-club-solutions-is-pleased-to-announce-the-full-integration-of-its-wine-club-software-with-constant-contact-and-vertical-response','{\"source\":{\"flag_regex\":false}}',0,1,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/new-constant-contact-vertical-response-integration/','url',NULL),
(3,'/another-sample-blog-post-here/','/another-sample-blog-post-here','{\"source\":{\"flag_regex\":false}}',0,2,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/the-active-club-ipad-app/','url',NULL),
(4,'/who-is-this-from-you-get-to-choose/','/who-is-this-from-you-get-to-choose','{\"source\":{\"flag_regex\":false}}',0,3,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/email-nicknames/','url',NULL),
(5,'/use-active-club-managers-attractive-and-personalized-email-communications-to-better-serve-your-customers/','/use-active-club-managers-attractive-and-personalized-email-communications-to-better-serve-your-customers','{\"source\":{\"flag_regex\":false}}',0,4,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/new-html-system-emails/','url',NULL),
(6,'/acknowledge-your-customers-on-their-birthday-without-remembering-or-doing-a-thing/','/acknowledge-your-customers-on-their-birthday-without-remembering-or-doing-a-thing','{\"source\":{\"flag_regex\":false}}',0,5,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/new-automated-birthday-recognition/','url',NULL),
(7,'/new-the-latest-and-smartest-in-customer-selections-customized-winemakers-selection-club/','/new-the-latest-and-smartest-in-customer-selections-customized-winemakers-selection-club','{\"source\":{\"flag_regex\":false}}',0,6,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/new-the-latest-and-smartest-in-customer-selections/','url',NULL),
(8,'/active-club-solutions-is-proud-to-present-remote-active-club-manager/','/active-club-solutions-is-proud-to-present-remote-active-club-manager','{\"source\":{\"flag_regex\":false}}',0,7,434,'2025-11-14 20:28:57',1,'enabled','url',301,'https://activeclubsolutions.net/remote-active-club-manager/','url',NULL),
(9,'/start-managing-wine-club-and-e-commerce-inventory-and-allocations-better/','/start-managing-wine-club-and-e-commerce-inventory-and-allocations-better','{\"source\":{\"flag_regex\":false}}',0,8,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/new-inventory-tracking-features/','url',NULL),
(10,'/manage-your-wine-club-members-from-your-ipad-with-our-new-ipadtablet-app/','/manage-your-wine-club-members-from-your-ipad-with-our-new-ipadtablet-app','{\"source\":{\"flag_regex\":false}}',0,9,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/the-active-club-ipad-app/','url',NULL),
(11,'/wine-club-software-vertical-response-constant-contact/','/wine-club-software-vertical-response-constant-contact','{\"source\":{\"flag_regex\":false}}',0,10,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/new-constant-contact-vertical-response-integration/','url',NULL),
(12,'/new-the-active-club-mobile-pos/','/new-the-active-club-mobile-pos','{\"source\":{\"flag_regex\":false}}',0,11,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/new-the-active-club-ipad-winery-pos/','url',NULL),
(13,'/why-to-consider-a-kiosk-in-your-tasting-room/','/why-to-consider-a-kiosk-in-your-tasting-room','{\"source\":{\"flag_regex\":false}}',0,12,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/consider-a-kiosk-in-your-tasting-room/','url',NULL),
(14,'/3842-2/','/3842-2','{\"source\":{\"flag_regex\":false}}',0,13,22,'2025-03-14 00:35:56',1,'enabled','url',301,'https://activeclubsolutions.net/loveclocks/','url',NULL),
(15,'/3860-2/','/3860-2','{\"source\":{\"flag_regex\":false}}',0,14,3,'2024-07-24 19:35:29',1,'enabled','url',301,'https://activeclubsolutions.net/activ8cloud/','url',NULL),
(16,'/3866-2/','/3866-2','{\"source\":{\"flag_regex\":false}}',0,15,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://activeclubsolutions.net/club-choice/','url',NULL),
(17,'/winery-pos-wine-club-software-demo/','/winery-pos-wine-club-software-demo',NULL,0,16,1414,'2025-11-14 22:06:22',1,'enabled','url',301,'https://activ8commerce.com/demo/','url',NULL),
(18,'/contact-active-club-solutions/','/contact-active-club-solutions',NULL,0,17,4835,'2025-11-14 13:24:33',1,'enabled','url',301,'https://activ8commerce.com/contact-us/','url',NULL);
/*!40000 ALTER TABLE `wpqk_redirection_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_redirection_logs`
--

DROP TABLE IF EXISTS `wpqk_redirection_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_redirection_logs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` mediumtext NOT NULL,
  `domain` varchar(255) DEFAULT NULL,
  `sent_to` mediumtext DEFAULT NULL,
  `agent` mediumtext DEFAULT NULL,
  `referrer` mediumtext DEFAULT NULL,
  `http_code` int(10) unsigned NOT NULL DEFAULT 0,
  `request_method` varchar(10) DEFAULT NULL,
  `request_data` mediumtext DEFAULT NULL,
  `redirect_by` varchar(50) DEFAULT NULL,
  `redirection_id` int(10) unsigned DEFAULT NULL,
  `ip` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `redirection_id` (`redirection_id`),
  KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_redirection_logs`
--

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

--
-- Table structure for table `wpqk_sg_action`
--

DROP TABLE IF EXISTS `wpqk_sg_action`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_sg_action` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` tinyint(3) unsigned NOT NULL,
  `subtype` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `status` tinyint(3) unsigned NOT NULL,
  `progress` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `start_date` datetime NOT NULL,
  `update_date` datetime DEFAULT NULL,
  `options` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_sg_action`
--

LOCK TABLES `wpqk_sg_action` WRITE;
/*!40000 ALTER TABLE `wpqk_sg_action` DISABLE KEYS */;
INSERT INTO `wpqk_sg_action` VALUES
(4,'sg_backup_opt(full)_20170322235206',1,0,4,100,'2017-03-22 23:52:06','2017-04-02 05:53:10','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(5,'sg_backup_opt(full)_20170322235242',1,0,4,100,'2017-03-22 23:52:42','2017-04-02 05:53:10','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"1\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(6,'sg_backup_opt(full)_20170322235242',3,1,7,3,'2017-03-22 23:52:58','2017-03-22 23:56:08','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"1\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(7,'sg_backup_opt(full)_20170323000900',1,0,4,100,'2017-03-23 00:09:00','2017-04-02 05:53:10','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(16,'sg_backup_opt(upl)_20170324163504',1,0,4,100,'2017-03-24 16:35:04','2017-04-02 05:53:10','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"1\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/,wp-content\\/plugins,wp-content\\/themes\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\\/uploads\",\"SG_BACKUP_TYPE\":\"2\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":0,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(17,'sg_backup_opt(upl)_20170324163504',3,1,5,0,'2017-03-24 16:35:23','2017-03-24 16:44:33','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"1\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/,wp-content\\/plugins,wp-content\\/themes\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\\/uploads\",\"SG_BACKUP_TYPE\":\"2\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":0,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(24,'sg_backup_opt(db)_20170331100012',1,0,4,100,'2017-03-31 10:00:12','2017-04-02 05:53:10','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"1\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"\",\"SG_BACKUP_FILE_PATHS\":0,\"SG_BACKUP_TYPE\":\"2\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":0}'),
(25,'sg_backup_opt(db)_20170331100012',3,1,3,100,'2017-03-31 10:00:13','2017-03-31 10:00:14','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"1\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"\",\"SG_BACKUP_FILE_PATHS\":0,\"SG_BACKUP_TYPE\":\"2\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":0}'),
(33,'sg_backup_opt(full)_20170402063656',1,0,3,100,'2017-04-02 06:36:56','2017-04-02 06:37:12','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(34,'sg_backup_opt(full)_20170402232036',1,0,3,100,'2017-04-02 23:20:36','2017-04-02 23:20:53','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(35,'sg_backup_opt(full)_20170406211103',1,0,3,100,'2017-04-06 21:11:03','2017-04-06 21:11:28','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(36,'sg_backup_opt(full)_20170415052546',1,0,3,100,'2017-04-15 05:25:46','2017-04-15 05:26:12','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(37,'sg_backup_opt(full)_20170418235516',1,0,3,100,'2017-04-18 23:55:16','2017-04-18 23:55:41','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(38,'sg_backup_opt(full)_20170419031724',1,0,3,100,'2017-04-19 03:17:24','2017-04-19 03:17:47','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(39,'sg_backup_opt(full)_20170419221329',1,0,3,100,'2017-04-19 22:13:29','2017-04-19 22:13:54','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(40,'sg_backup_opt(full)_20170420040622',1,0,3,100,'2017-04-20 04:06:22','2017-04-20 04:06:47','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(41,'sg_backup_opt(full)_20170504000812',1,0,3,100,'2017-05-04 00:08:12','2017-05-04 00:08:45','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}'),
(42,'sg_backup_opt(full)_20170606003730',1,0,3,100,'2017-06-06 00:37:30','2017-06-06 00:38:00','{\"SG_BACKUP_UPLOAD_TO_STORAGES\":\"\",\"SG_BACKUP_FILE_PATHS_EXCLUDE\":\"wp-content\\/plugins\\/backup\\/,wp-content\\/plugins\\/backup-guard-pro\\/,wp-content\\/plugins\\/backup-guard-silver\\/,wp-content\\/plugins\\/backup-guard-gold\\/,wp-content\\/plugins\\/backup-guard-platinum\\/,wp-content\\/uploads\\/backup-guard\\/,wp-content\\/uploads\\/sg_symlinks\\/,wp-content\\/ai1wm-backups\\/,wp-content\\/aiowps_backups\\/,wp-content\\/Dropbox_Backup\\/,wp-content\\/updraft\\/,wp-content\\/upsupsystic\\/,wp-content\\/wpbackitup_backups\\/,wp-content\\/wpbackitup_restore\\/,wp-content\\/backups\\/,wp-content\\/uploads\\/wp-clone\\/,wp-content\\/uploads\\/wp-staging\\/,wp-content\\/uploads\\/wp-migrate-db\\/,wp-content\\/uploads\\/db-backup\\/,wp-content\\/plugins\\/wordpress-move\\/backup\\/,wp-content\\/as3b_backups\\/,wp-content\\/uploads\\/backupbuddy_backups\\/\",\"SG_BACKUP_FILE_PATHS\":\"wp-content\",\"SG_BACKUP_TYPE\":\"1\",\"SG_ACTION_BACKUP_DATABASE_AVAILABLE\":1,\"SG_ACTION_BACKUP_FILES_AVAILABLE\":1}');
/*!40000 ALTER TABLE `wpqk_sg_action` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_sg_config`
--

DROP TABLE IF EXISTS `wpqk_sg_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_sg_config` (
  `ckey` varchar(100) NOT NULL,
  `cvalue` text NOT NULL,
  PRIMARY KEY (`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_sg_config`
--

LOCK TABLES `wpqk_sg_config` WRITE;
/*!40000 ALTER TABLE `wpqk_sg_config` DISABLE KEYS */;
INSERT INTO `wpqk_sg_config` VALUES
('SG_AJAX_REQUEST_FREQUENCY','2000'),
('SG_AMOUNT_OF_BACKUPS_TO_KEEP','100'),
('SG_BACKUPED_TABLES','[\"wp_options\",\"wp_commentmeta\",\"wp_comments\",\"wp_itsec_lockouts\",\"wp_itsec_log\",\"wp_itsec_temp\",\"wp_links\",\"wp_postmeta\",\"wp_posts\",\"wp_term_relationships\",\"wp_term_taxonomy\",\"wp_termmeta\",\"wp_terms\",\"wp_usermeta\",\"wp_users\",\"wp_wpeditor_settings\",\"wsw_404_log\"]'),
('SG_BACKUP_CURRENT_KEY','7470b3b23ade45c2c30a939480fbc5b6'),
('SG_BACKUP_FILE_NAME_PREFIX','sg_backup_'),
('SG_BACKUP_GUARD_VERSION','1.1.38'),
('SG_BACKUP_SYNCHRONOUS_STORAGE_UPLOAD','1'),
('SG_BACKUP_TYPE','2'),
('SG_BACKUP_WITH_RELOADINGS','1'),
('SG_DELETE_BACKUP_AFTER_UPLOAD','0'),
('SG_EXCEPTION_TIMEOUT_ERROR','1'),
('SG_EXTERNAL_RESTORE_PATH','bg_restore.php'),
('SG_FTP_CONNECTION_STRING','acmadmin@67.102.226.237:21'),
('SG_FTP_HOST','67.102.226.237'),
('SG_FTP_PASSWORD','Poco#2017*'),
('SG_FTP_PORT','21'),
('SG_FTP_ROOT_FOLDER','/wordpress'),
('SG_FTP_USER','acmadmin'),
('SG_NOTIFICATIONS_EMAIL_ADDRESS',''),
('SG_NOTIFICATIONS_ENABLED','0'),
('SG_RELOAD_METHOD','2'),
('SG_REVIEW_POPUP_STATE','2'),
('SG_RUNNING_ACTION','1'),
('SG_SFTP_KEY_FILE_PATH',''),
('SG_STORAGE_BACKUPS_FOLDER_NAME','sg_backups'),
('SG_STORAGE_CONNECTION_METHOD','ftp'),
('SG_STORAGE_FTP_CONNECTED','1');
/*!40000 ALTER TABLE `wpqk_sg_config` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_sg_schedule`
--

DROP TABLE IF EXISTS `wpqk_sg_schedule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_sg_schedule` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `label` varchar(255) NOT NULL,
  `status` tinyint(3) unsigned NOT NULL,
  `schedule_options` varchar(255) NOT NULL,
  `backup_options` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_sg_schedule`
--

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

--
-- Table structure for table `wpqk_term_relationships`
--

DROP TABLE IF EXISTS `wpqk_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_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=utf8mb3 COLLATE=utf8mb3_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_term_relationships`
--

LOCK TABLES `wpqk_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpqk_term_relationships` DISABLE KEYS */;
INSERT INTO `wpqk_term_relationships` VALUES
(1430,1,0),
(1430,3,0),
(1430,6,0),
(1430,7,0),
(1430,8,0),
(1430,9,0),
(1430,53,0),
(1432,1,0),
(1432,3,0),
(1432,10,0),
(1432,11,0),
(1432,12,0),
(1432,13,0),
(1442,2,0),
(1443,2,0),
(1444,2,0),
(1446,2,0),
(1448,2,0),
(1450,2,0),
(1500,2,0),
(1501,2,0),
(1502,2,0),
(1503,2,0),
(1504,2,0),
(1505,2,0),
(1517,1,0),
(1517,3,0),
(1517,15,0),
(1517,16,0),
(1517,17,0),
(1517,18,0),
(1519,1,0),
(1519,19,0),
(1519,20,0),
(1521,1,0),
(1521,3,0),
(1521,21,0),
(1521,22,0),
(1521,23,0),
(1521,24,0),
(1524,3,0),
(1524,25,0),
(1524,26,0),
(1526,1,0),
(1526,3,0),
(1526,27,0),
(1526,28,0),
(1526,29,0),
(1528,1,0),
(1528,3,0),
(1528,30,0),
(1528,31,0),
(1528,32,0),
(1530,3,0),
(1530,27,0),
(1530,34,0),
(1530,36,0),
(1530,37,0),
(1531,1,0),
(1531,3,0),
(1531,27,0),
(1531,33,0),
(1531,34,0),
(1531,35,0),
(1532,3,0),
(1532,38,0),
(1532,39,0),
(1532,40,0),
(1532,41,0),
(1532,53,0),
(1534,1,0),
(1534,3,0),
(1534,42,0),
(1534,43,0),
(1534,44,0),
(1534,45,0),
(1537,1,0),
(1537,3,0),
(1537,46,0),
(1537,47,0),
(1537,48,0),
(1594,2,0),
(1595,2,0),
(1596,2,0),
(1597,2,0),
(1598,2,0),
(1600,2,0),
(1672,3,0),
(1672,4,0),
(1672,49,0),
(1672,50,0),
(1672,51,0),
(1672,52,0),
(1691,3,0),
(1691,53,0),
(1692,3,0),
(1692,55,0),
(1694,3,0),
(1697,1,0),
(1700,5,0),
(1702,5,0),
(1742,4,0),
(1744,5,0),
(1780,5,0),
(1782,5,0),
(1786,1,0),
(1786,3,0),
(1801,2,0),
(1811,1,0),
(1811,5,0),
(1894,1,0),
(1894,4,0),
(1896,3,0),
(1917,2,0),
(1918,2,0),
(1919,2,0),
(1926,2,0),
(1927,2,0),
(1928,2,0),
(1932,2,0),
(1933,2,0),
(1935,2,0),
(1936,2,0),
(1940,3,0),
(1947,3,0),
(2061,3,0),
(2114,3,0),
(2125,3,0),
(2136,3,0),
(2164,2,0),
(2170,3,0),
(2248,3,0),
(2296,2,0),
(2405,3,0),
(2420,3,0),
(2664,2,0),
(2677,2,0),
(2691,3,0),
(2733,3,0),
(2819,2,0),
(2857,1,0),
(2857,56,0),
(2857,57,0),
(2865,2,0),
(2892,3,0),
(2901,3,0),
(2906,3,0),
(2913,3,0),
(2929,1,0),
(2929,58,0),
(3069,3,0),
(3070,3,0),
(3073,3,0),
(3073,5,0),
(3075,3,0),
(3077,3,0),
(3077,59,0),
(3077,60,0),
(3078,3,0),
(3078,61,0),
(3078,62,0),
(3078,63,0),
(3078,64,0),
(3080,3,0),
(3080,65,0),
(3080,66,0),
(3080,67,0),
(3082,3,0),
(3082,68,0),
(3082,69,0),
(3082,70,0),
(3084,3,0),
(3084,4,0),
(3084,71,0),
(3084,72,0),
(3084,73,0),
(3084,74,0),
(3087,3,0),
(3087,75,0),
(3087,76,0),
(3087,77,0),
(3087,78,0),
(3087,79,0),
(3089,3,0),
(3089,4,0),
(3089,80,0),
(3089,81,0),
(3089,82,0),
(3089,83,0),
(3089,84,0),
(3089,85,0),
(3102,3,0),
(3102,4,0),
(3102,86,0),
(3102,87,0),
(3102,88,0),
(3102,89,0),
(3102,90,0),
(3108,3,0),
(3108,114,0),
(3108,115,0),
(3108,116,0),
(3108,117,0),
(3113,3,0),
(3113,91,0),
(3113,92,0),
(3113,93,0),
(3117,3,0),
(3117,4,0),
(3117,94,0),
(3117,95,0),
(3117,96,0),
(3117,97,0),
(3117,98,0),
(3188,4,0),
(3188,63,0),
(3188,65,0),
(3188,84,0),
(3188,99,0),
(3188,100,0),
(3188,101,0),
(3188,102,0),
(3188,103,0),
(3188,104,0),
(3188,105,0),
(3188,106,0),
(3267,1,0),
(3267,3,0),
(3267,4,0),
(3267,87,0),
(3267,107,0),
(3267,108,0),
(3267,109,0),
(3267,110,0),
(3267,111,0),
(3267,112,0),
(3267,113,0),
(3409,2,0),
(3424,4,0),
(3424,100,0),
(3424,101,0),
(3424,118,0),
(3424,119,0),
(3426,3,0),
(3426,4,0),
(3426,106,0),
(3426,120,0),
(3426,121,0),
(3426,122,0),
(3426,123,0),
(3426,124,0),
(3426,125,0),
(3451,2,0),
(3454,3,0),
(3454,4,0),
(3454,100,0),
(3454,118,0),
(3454,126,0),
(3454,127,0),
(3455,3,0),
(3455,4,0),
(3455,60,0),
(3455,83,0),
(3455,84,0),
(3455,100,0),
(3455,105,0),
(3455,128,0),
(3455,129,0),
(3456,1,0),
(3456,3,0),
(3456,4,0),
(3456,60,0),
(3456,100,0),
(3456,114,0),
(3456,115,0),
(3456,116,0),
(3456,128,0),
(3456,130,0),
(3456,131,0),
(3456,132,0),
(3466,1,0),
(3466,3,0),
(3466,4,0),
(3466,60,0),
(3466,100,0),
(3466,115,0),
(3466,130,0),
(3466,132,0),
(3466,137,0),
(3466,138,0),
(3479,1,0),
(3479,3,0),
(3479,4,0),
(3479,60,0),
(3479,64,0),
(3479,106,0),
(3479,120,0),
(3479,122,0),
(3479,132,0),
(3479,140,0),
(3497,3,0),
(3497,4,0),
(3497,120,0),
(3497,122,0),
(3497,141,0),
(3497,142,0),
(3497,143,0),
(3497,144,0),
(3564,3,0),
(3564,4,0),
(3564,64,0),
(3564,120,0),
(3564,142,0),
(3564,145,0),
(3567,1,0),
(3567,3,0),
(3567,4,0),
(3567,76,0),
(3567,120,0),
(3567,146,0),
(3567,147,0),
(3567,148,0),
(3581,1,0),
(3581,3,0),
(3581,4,0),
(3581,5,0),
(3581,149,0),
(3581,150,0),
(3581,151,0),
(3600,3,0),
(3600,4,0),
(3600,5,0),
(3600,151,0),
(3600,152,0),
(3600,153,0),
(3600,154,0),
(3627,3,0),
(3631,3,0),
(3631,4,0),
(3652,1,0),
(3652,3,0),
(3659,3,0),
(3659,4,0),
(3659,151,0),
(3659,155,0),
(3661,1,0),
(3661,3,0),
(3661,4,0),
(3661,54,0),
(3661,100,0),
(3661,122,0),
(3661,129,0),
(3661,156,0),
(3671,3,0),
(3671,4,0),
(3673,3,0),
(3673,4,0),
(3679,3,0),
(3679,4,0),
(3679,158,0),
(3680,1,0),
(3680,3,0),
(3680,4,0),
(3680,159,0),
(3788,2,0),
(3842,1,0),
(3842,3,0),
(3851,1,0),
(3855,3,0),
(3860,3,0),
(3866,3,0),
(3873,3,0),
(3876,3,0),
(3884,3,0),
(3887,3,0),
(3891,3,0),
(3897,3,0),
(3902,3,0),
(3910,3,0),
(3916,3,0),
(3921,3,0),
(3924,3,0),
(3926,3,0),
(3937,3,0),
(3953,3,0),
(3961,3,0),
(3964,3,0),
(3971,3,0),
(3981,3,0),
(3994,3,0),
(3997,3,0),
(4005,3,0),
(4015,3,0),
(4019,3,0),
(4029,3,0),
(4037,3,0),
(4043,3,0),
(4050,3,0),
(4058,3,0),
(4080,3,0),
(4094,3,0),
(4108,3,0),
(4111,3,0),
(4114,3,0),
(4121,3,0),
(4123,3,0),
(4129,3,0),
(4140,3,0),
(4142,3,0),
(4147,3,0),
(4149,3,0),
(4151,3,0),
(4155,1,0),
(4155,4,0),
(4159,3,0),
(4163,3,0),
(4167,3,0),
(4169,1,0),
(4169,3,0),
(4173,1,0),
(4173,3,0),
(4178,1,0),
(4178,3,0),
(4180,1,0),
(4180,3,0),
(4190,175,0),
(4194,1,0),
(4194,3,0),
(4198,1,0),
(4198,3,0),
(4201,1,0),
(4201,3,0),
(4206,1,0),
(4206,3,0),
(4211,1,0),
(4211,3,0),
(4217,175,0),
(4221,1,0),
(4221,3,0),
(4225,175,0),
(4230,175,0),
(4230,176,0),
(4231,176,0),
(4236,4,0),
(4236,175,0),
(4239,1,0),
(4239,3,0),
(4239,174,0),
(4242,3,0),
(4243,1,0),
(4243,3,0),
(4249,176,0),
(4251,1,0),
(4251,3,0),
(4251,174,0),
(4253,1,0),
(4253,3,0),
(4253,174,0),
(4257,1,0),
(4257,3,0),
(4259,1,0),
(4259,3,0),
(4259,174,0),
(4262,1,0),
(4262,3,0),
(4262,174,0),
(4271,1,0),
(4271,3,0),
(4271,174,0),
(4274,1,0),
(4274,3,0),
(4274,174,0),
(4276,1,0),
(4276,3,0),
(4276,174,0),
(4281,1,0),
(4281,3,0),
(4281,174,0),
(4287,1,0),
(4287,3,0),
(4287,174,0),
(4287,176,0),
(4291,176,0),
(4297,1,0),
(4297,3,0),
(4297,174,0),
(4297,176,0),
(4300,1,0),
(4300,3,0),
(4300,174,0),
(4300,176,0),
(4303,1,0),
(4303,3,0),
(4303,174,0),
(4303,176,0),
(4306,1,0),
(4306,3,0),
(4306,174,0),
(4306,176,0),
(4310,1,0),
(4310,3,0),
(4310,174,0),
(4310,176,0),
(4313,1,0),
(4313,3,0),
(4313,174,0),
(4313,176,0),
(4314,1,0),
(4314,3,0),
(4314,174,0),
(4314,176,0),
(4317,1,0),
(4317,3,0),
(4317,174,0),
(4317,176,0),
(4319,175,0),
(4321,1,0),
(4321,3,0),
(4321,174,0),
(4321,176,0),
(4324,1,0),
(4324,3,0),
(4324,174,0),
(4324,176,0),
(4327,1,0),
(4327,3,0),
(4327,174,0),
(4327,176,0),
(4329,1,0),
(4329,3,0),
(4332,1,0),
(4332,3,0),
(4334,175,0),
(4337,1,0),
(4337,3,0),
(4341,1,0),
(4341,3,0),
(4341,174,0),
(4341,176,0),
(4343,175,0),
(4345,1,0),
(4345,3,0),
(4348,1,0),
(4348,3,0),
(4348,174,0),
(4348,176,0),
(4351,175,0),
(4353,1,0),
(4353,3,0),
(4353,174,0),
(4353,176,0),
(4354,1,0),
(4354,3,0),
(4357,1,0),
(4357,3,0),
(4361,1,0),
(4361,3,0),
(4361,174,0),
(4361,176,0),
(4363,1,0),
(4363,3,0),
(4365,1,0),
(4365,3,0),
(4365,174,0),
(4365,176,0);
/*!40000 ALTER TABLE `wpqk_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_term_taxonomy`
--

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

--
-- Dumping data for table `wpqk_term_taxonomy`
--

LOCK TABLES `wpqk_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpqk_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpqk_term_taxonomy` VALUES
(1,1,'category','',0,37),
(2,2,'nav_menu','',0,38),
(3,3,'category','',0,54),
(4,4,'category','',0,2),
(5,5,'category','',0,0),
(6,6,'post_tag','',0,0),
(7,7,'post_tag','',0,0),
(8,8,'post_tag','',0,0),
(9,9,'post_tag','',0,0),
(10,10,'post_tag','',0,0),
(11,11,'post_tag','',0,0),
(12,12,'post_tag','',0,0),
(13,13,'post_tag','',0,0),
(15,15,'post_tag','',0,0),
(16,16,'post_tag','',0,0),
(17,17,'post_tag','',0,0),
(18,18,'post_tag','',0,0),
(19,19,'post_tag','',0,0),
(20,20,'post_tag','',0,0),
(21,21,'post_tag','',0,0),
(22,22,'post_tag','',0,0),
(23,23,'post_tag','',0,0),
(24,24,'post_tag','',0,0),
(25,25,'post_tag','',0,0),
(26,26,'post_tag','',0,0),
(27,27,'post_tag','',0,0),
(28,28,'post_tag','',0,0),
(29,29,'post_tag','',0,0),
(30,30,'post_tag','',0,0),
(31,31,'post_tag','',0,0),
(32,32,'post_tag','',0,0),
(33,33,'post_tag','',0,0),
(34,34,'post_tag','',0,0),
(35,35,'post_tag','',0,0),
(36,36,'post_tag','',0,0),
(37,37,'post_tag','',0,0),
(38,38,'post_tag','',0,0),
(39,39,'post_tag','',0,0),
(40,40,'post_tag','',0,0),
(41,41,'post_tag','',0,0),
(42,42,'post_tag','',0,0),
(43,43,'post_tag','',0,0),
(44,44,'post_tag','',0,0),
(45,45,'post_tag','',0,0),
(46,46,'post_tag','',0,0),
(47,47,'post_tag','',0,0),
(48,48,'post_tag','',0,0),
(49,49,'post_tag','',0,0),
(50,50,'post_tag','',0,0),
(51,51,'post_tag','',0,0),
(52,52,'post_tag','',0,0),
(53,53,'post_format','',0,0),
(54,54,'post_format','',0,0),
(55,55,'post_tag','',0,0),
(56,56,'post_tag','',0,0),
(57,57,'post_tag','',0,0),
(58,58,'post_format','',0,0),
(59,59,'post_tag','',0,0),
(60,60,'post_tag','',0,0),
(61,61,'post_tag','',0,0),
(62,62,'post_tag','',0,0),
(63,63,'post_tag','',0,0),
(64,64,'post_tag','',0,0),
(65,65,'post_tag','',0,0),
(66,66,'post_tag','',0,0),
(67,67,'post_tag','',0,0),
(68,68,'post_tag','',0,0),
(69,69,'post_tag','',0,0),
(70,70,'post_tag','',0,0),
(71,71,'post_tag','',0,0),
(72,72,'post_tag','',0,0),
(73,73,'post_tag','',0,0),
(74,74,'post_tag','',0,0),
(75,75,'post_tag','',0,0),
(76,76,'post_tag','',0,0),
(77,77,'post_tag','',0,0),
(78,78,'post_tag','',0,0),
(79,79,'post_tag','',0,0),
(80,80,'post_tag','',0,0),
(81,81,'post_tag','',0,0),
(82,82,'post_tag','',0,0),
(83,83,'post_tag','',0,0),
(84,84,'post_tag','',0,0),
(85,85,'post_tag','',0,0),
(86,86,'post_tag','',0,0),
(87,87,'post_tag','',0,0),
(88,88,'post_tag','',0,0),
(89,89,'post_tag','',0,0),
(90,90,'post_tag','',0,0),
(91,91,'post_tag','',0,0),
(92,92,'post_tag','',0,0),
(93,93,'post_tag','',0,0),
(94,94,'post_tag','',0,0),
(95,95,'post_tag','',0,0),
(96,96,'post_tag','',0,0),
(97,97,'post_tag','',0,0),
(98,98,'post_tag','',0,0),
(99,99,'post_tag','',0,0),
(100,100,'post_tag','',0,0),
(101,101,'post_tag','',0,0),
(102,102,'post_tag','',0,0),
(103,103,'post_tag','',0,0),
(104,104,'post_tag','',0,0),
(105,105,'post_tag','',0,0),
(106,106,'post_tag','',0,0),
(107,107,'post_tag','',0,0),
(108,108,'post_tag','',0,0),
(109,109,'post_tag','',0,0),
(110,110,'post_tag','',0,0),
(111,111,'post_tag','',0,0),
(112,112,'post_tag','',0,0),
(113,113,'post_tag','',0,0),
(114,114,'post_tag','',0,0),
(115,115,'post_tag','',0,0),
(116,116,'post_tag','',0,0),
(117,117,'post_tag','',0,0),
(118,118,'post_tag','',0,0),
(119,119,'post_tag','',0,0),
(120,120,'post_tag','',0,0),
(121,121,'post_tag','',0,0),
(122,122,'post_tag','',0,0),
(123,123,'post_tag','',0,0),
(124,124,'post_tag','',0,0),
(125,125,'post_tag','',0,0),
(126,126,'post_tag','',0,0),
(127,127,'post_tag','',0,0),
(128,128,'post_tag','',0,0),
(129,129,'post_tag','',0,0),
(130,130,'post_tag','',0,0),
(131,131,'post_tag','',0,0),
(132,132,'post_tag','',0,0),
(133,133,'post_tag','',0,0),
(134,134,'post_tag','',0,0),
(135,135,'post_tag','',0,0),
(136,136,'post_tag','',0,0),
(137,137,'post_tag','',0,0),
(138,138,'post_tag','',0,0),
(139,139,'post_tag','',0,0),
(140,140,'post_tag','',0,0),
(141,141,'post_tag','',0,0),
(142,142,'post_tag','',0,0),
(143,143,'post_tag','',0,0),
(144,144,'post_tag','',0,0),
(145,145,'post_tag','',0,0),
(146,146,'post_tag','',0,0),
(147,147,'post_tag','',0,0),
(148,148,'post_tag','',0,0),
(149,149,'post_tag','',0,0),
(150,150,'post_tag','',0,0),
(151,151,'post_tag','',0,0),
(152,152,'post_tag','',0,0),
(153,153,'post_tag','',0,0),
(154,154,'post_tag','',0,0),
(155,155,'post_tag','',0,0),
(156,156,'post_tag','',0,0),
(157,157,'post_tag','',0,0),
(158,158,'post_tag','',0,0),
(159,159,'post_tag','',0,0),
(160,160,'product_type','',0,0),
(161,161,'product_type','',0,0),
(162,162,'product_type','',0,0),
(163,163,'product_type','',0,0),
(164,164,'product_visibility','',0,0),
(165,165,'product_visibility','',0,0),
(166,166,'product_visibility','',0,0),
(167,167,'product_visibility','',0,0),
(168,168,'product_visibility','',0,0),
(169,169,'product_visibility','',0,0),
(170,170,'product_visibility','',0,0),
(171,171,'product_visibility','',0,0),
(172,172,'product_visibility','',0,0),
(173,173,'product_cat','',0,0),
(174,174,'category','',3,19),
(175,175,'category','',4,8),
(176,176,'category','',0,12);
/*!40000 ALTER TABLE `wpqk_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_termmeta`
--

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

--
-- Dumping data for table `wpqk_termmeta`
--

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

--
-- Table structure for table `wpqk_terms`
--

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

--
-- Dumping data for table `wpqk_terms`
--

LOCK TABLES `wpqk_terms` WRITE;
/*!40000 ALTER TABLE `wpqk_terms` DISABLE KEYS */;
INSERT INTO `wpqk_terms` VALUES
(1,'Company News','active-club-solutions-news',0),
(2,'main-nav','main-nav',0),
(3,'New Features','new-features',0),
(4,'Useful Articles','useful-articles',0),
(5,'Shows &amp; Events','shows-events',0),
(6,'wine club software','wine-club-software',0),
(7,'vertical response','vertical-response',0),
(8,'constant contact','constant-contact',0),
(9,'integration','integration',0),
(10,'ipad','ipad',0),
(11,'app','app',0),
(12,'wine software app','wine-software-app',0),
(13,'tablet','tablet',0),
(15,'wine club shopping cart','wine-club-shopping-cart',0),
(16,'winery website shopping cart','winery-website-shopping-cart',0),
(17,'wines shopping cart','wines-shopping-cart',0),
(18,'winery e-commerce','winery-e-commerce',0),
(19,'dan nechemias','dan-nechemias',0),
(20,'sales manager','sales-manager',0),
(21,'wine club software for mac','wine-club-software-for-mac',0),
(22,'apple','apple',0),
(23,'mac','mac',0),
(24,'remote access','remote-access',0),
(25,'winemakers selection','winemakers-selection',0),
(26,'customized wine club selection','customized-wine-club-selection',0),
(27,'wine club management','wine-club-management',0),
(28,'wine club settings','wine-club-settings',0),
(29,'wine shopping cart settings','wine-shopping-cart-settings',0),
(30,'custom email','custom-email',0),
(31,'email templates','email-templates',0),
(32,'custom wine club email templates','custom-wine-club-email-templates',0),
(33,'multilocation','multilocation',0),
(34,'active club manager','active-club-manager',0),
(35,'inventory management','inventory-management',0),
(36,'automated emails','automated-emails',0),
(37,'birthday notes','birthday-notes',0),
(38,'quick search','quick-search',0),
(39,'active club manager search','active-club-manager-search',0),
(40,'wine club search','wine-club-search',0),
(41,'smart search','smart-search',0),
(42,'wine delivery','wine-delivery',0),
(43,'wine club delivery','wine-club-delivery',0),
(44,'shipping and fulfillment','shipping-and-fulfillment',0),
(45,'fedex','fedex',0),
(46,'wine club gift','wine-club-gift',0),
(47,'wine subscription gift','wine-subscription-gift',0),
(48,'personalized wine club gift','personalized-wine-club-gift',0),
(49,'paypros','paypros',0),
(50,'payment gateways','payment-gateways',0),
(51,'selling wine online','selling-wine-online',0),
(52,'winery ecommerce','winery-ecommerce',0),
(53,'post-format-video','post-format-video',0),
(54,'post-format-image','post-format-image',0),
(55,'UPS smart pickup','ups-smart-pickup',0),
(56,'active','active',0),
(57,'sales VP','sales-vp',0),
(58,'post-format-aside','post-format-aside',0),
(59,'#wineclubs','wineclubs',0),
(60,'#automation','automation',0),
(61,'#datamining','datamining',0),
(62,'#datacapture','datacapture',0),
(63,'#realtimedata','realtimedata',0),
(64,'#posdatamanagement','posdatamanagement',0),
(65,'#dataanalytics','dataanalytics',0),
(66,'#sellmorewine','sellmorewine',0),
(67,'#sellmorespirits','sellmorespirits',0),
(68,'#tippininawinery','tippininawinery',0),
(69,'#tippingmadeeasy','tippingmadeeasy',0),
(70,'#POStipping','postipping',0),
(71,'#cloudcomputing','cloudcomputing',0),
(72,'#securecomputing','securecomputing',0),
(73,'#speedycomputing','speedycomputing',0),
(74,'#mobilityinbusiness','mobilityinbusiness',0),
(75,'#set-upconcierge','set-upconcierge',0),
(76,'#posfunctionality','posfunctionality',0),
(77,'#addedvaluewithactive','addedvaluewithactive',0),
(78,'#handsontraining','handsontraining',0),
(79,'#customparsing','customparsing',0),
(80,'#nativeapp','nativeapp',0),
(81,'#webapp','webapp',0),
(82,'#efficiency. #pos','efficiency-pos',0),
(83,'#mobileapp','mobileapp',0),
(84,'#ecom','ecom',0),
(85,'#club. #software','club-software',0),
(86,'#setupconcierge','setupconcierge',0),
(87,'#mobileposclubecom','mobileposclubecom',0),
(88,'#nativeappallinone','nativeappallinone',0),
(89,'#valueaddedsupport','valueaddedsupport',0),
(90,'#librarytutorialvideos','librarytutorialvideos',0),
(91,'#POSKIOSK','poskiosk',0),
(92,'#CLUBECOMPOS','clubecompos',0),
(93,'#MOBILEALLINONEPOS','mobileallinonepos',0),
(94,'#streamline','streamline',0),
(95,'#efficientsystems','efficientsystems',0),
(96,'#POSsystems','possystems',0),
(97,'#allinonemobile','allinonemobile',0),
(98,'#customerexperience','customerexperience',0),
(99,'#salesreports','salesreports',0),
(100,'#POS','pos',0),
(101,'#datamanagement','datamanagement',0),
(102,'#emailmarketing','emailmarketing',0),
(103,'#forecasting','forecasting',0),
(104,'#tastingroompos','tastingroompos',0),
(105,'#club','club',0),
(106,'#inventorymanagement','inventorymanagement',0),
(107,'#webdesign','webdesign',0),
(108,'#webdesignerinhouse','webdesignerinhouse',0),
(109,'#ecommerceinhousedesign','ecommerceinhousedesign',0),
(110,'#software','software',0),
(111,'#softwaretechnology','softwaretechnology',0),
(112,'#salestechnology','salestechnology',0),
(113,'#killerwebdesign','killerwebdesign',0),
(114,'#loyaltycards','loyaltycards',0),
(115,'#giftcards','giftcards',0),
(116,'#loyaltyprograms','loyaltyprograms',0),
(117,'#kiosks','kiosks',0),
(118,'#CRM','crm',0),
(119,'#growsales','growsales',0),
(120,'#allinonepos','allinonepos',0),
(121,'#allinonedatabase','allinonedatabase',0),
(122,'#posecomclub','posecomclub',0),
(123,'#muliplelocations','muliplelocations',0),
(124,'#bestCRM','bestcrm',0),
(125,'#securedatabase','securedatabase',0),
(126,'#customerrelationshipmanagement','customerrelationshipmanagement',0),
(127,'#Softwaresalessystem','softwaresalessystem',0),
(128,'#inventory','inventory',0),
(129,'#salessoftware','salessoftware',0),
(130,'#Allinonesalessystem','allinonesalessystem',0),
(131,'#posclubecom','posclubecom',0),
(132,'#securedata','securedata',0),
(133,'#implementationspecialist','implementationspecialist',0),
(134,'#datamigration','datamigration',0),
(135,'#changingposystems','changingposystems',0),
(136,'#migrationplanning','migrationplanning',0),
(137,'#GIFTCARDSONCCART','giftcardsonccart',0),
(138,'#ALLINONEPOSECOMCLUB','allinoneposecomclub',0),
(139,'#','139',0),
(140,'#POSSALESTECHNOLOGY','possalestechnology',0),
(141,'#therightpos','therightpos',0),
(142,'#salessystem','salessystem',0),
(143,'#completesalessystem','completesalessystem',0),
(144,'#savetimeandmoney','savetimeandmoney',0),
(145,'#completesystem','completesystem',0),
(146,'#webtools','webtools',0),
(147,'#unsubscribetools','unsubscribetools',0),
(148,'#optoutoption','optoutoption',0),
(149,'#customerforgotpassword','customerforgotpassword',0),
(150,'#newwebtools','newwebtools',0),
(151,'#posallinone','posallinone',0),
(152,'#clubsignupsonkiosk','clubsignupsonkiosk',0),
(153,'#poswebtools','poswebtools',0),
(154,'#completepos','completepos',0),
(155,'#pos #salessoftware','pos-salessoftware',0),
(156,'#allinone','allinone',0),
(157,'#inventory #pos #multiplelocations #allinone #accuracy','inventory-pos-multiplelocations-allinone-accuracy',0),
(158,'#software #inventory #pos #multiplelocations #allinone #accuracy','software-inventory-pos-multiplelocations-allinone-accuracy',0),
(159,'#support #technicalengineer #POS #allinone #softwaresupport #posecomclub','support-technicalengineer-pos-allinone-softwaresupport-posecomclub',0),
(160,'simple','simple',0),
(161,'grouped','grouped',0),
(162,'variable','variable',0),
(163,'external','external',0),
(164,'exclude-from-search','exclude-from-search',0),
(165,'exclude-from-catalog','exclude-from-catalog',0),
(166,'featured','featured',0),
(167,'outofstock','outofstock',0),
(168,'rated-1','rated-1',0),
(169,'rated-2','rated-2',0),
(170,'rated-3','rated-3',0),
(171,'rated-4','rated-4',0),
(172,'rated-5','rated-5',0),
(173,'Uncategorized','uncategorized',0),
(174,'Activ8 Commerce News and Features','activ8system',0),
(175,'Tips','tips',0),
(176,'Documentation','documentation',0);
/*!40000 ALTER TABLE `wpqk_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_usermeta`
--

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

--
-- Dumping data for table `wpqk_usermeta`
--

LOCK TABLES `wpqk_usermeta` WRITE;
/*!40000 ALTER TABLE `wpqk_usermeta` DISABLE KEYS */;
INSERT INTO `wpqk_usermeta` VALUES
(1,4,'first_name',''),
(2,4,'last_name',''),
(3,4,'nickname','wpengine'),
(4,4,'description','This is the \"wpengine\" admin user that our staff uses to gain access to your admin area to provide support and troubleshooting. It can only be accessed by a button in our secure log that auto generates a password and dumps that password after the staff member has logged in. We have taken extreme measures to ensure that our own user is not going to be misused to harm any of our clients sites.'),
(5,4,'rich_editing','true'),
(6,4,'comment_shortcuts','false'),
(7,4,'admin_color','fresh'),
(8,4,'use_ssl','0'),
(9,4,'show_admin_bar_front','true'),
(10,4,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(11,4,'wpqk_user_level','10'),
(12,4,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,wp360_revisions,wp360_locks'),
(13,4,'show_welcome_panel','1'),
(14,2,'first_name',''),
(15,2,'last_name',''),
(16,2,'nickname','Active Club Solutions'),
(17,2,'description',''),
(18,2,'rich_editing','true'),
(19,2,'comment_shortcuts','false'),
(20,2,'admin_color','fresh'),
(21,2,'use_ssl','0'),
(22,2,'show_admin_bar_front','false'),
(23,2,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(24,2,'wpqk_user_level','10'),
(25,2,'wpqk_dashboard_quick_press_last_post_id','4368'),
(26,2,'dismissed_wp_pointers','wp330_toolbar,wp390_widgets,wp350_media,wprss_tracking_pointer,wp410_dfw,wp496_privacy,text_widget_custom_html'),
(27,2,'wpqk_user-settings','libraryContent=browse&ed_size=603&editor=html&hidetb=0&mfold=o&wplink=1&imgsize=NinzioHalf&urlbutton=none&align=center&posts_list_mode=list&advImgDetails=show&post_dfw=off&cats=pop'),
(28,2,'wpqk_user-settings-time','1660536373'),
(29,2,'tgmpa_dismissed_notice','1'),
(30,2,'managenav-menuscolumnshidden','a:3:{i:0;s:11:\"css-classes\";i:1;s:3:\"xfn\";i:2;s:11:\"description\";}'),
(31,2,'metaboxhidden_nav-menus','a:10:{i:0;s:8:\"add-post\";i:1;s:17:\"add-ninzio-slider\";i:2;s:13:\"add-portfolio\";i:3;s:7:\"add-faq\";i:4;s:12:\"add-post_tag\";i:5;s:15:\"add-post_format\";i:6;s:22:\"add-portfolio-category\";i:7;s:17:\"add-portfolio-tag\";i:8;s:16:\"add-faq-category\";i:9;s:11:\"add-faq-tag\";}'),
(32,2,'nav_menu_recently_edited','2'),
(33,2,'closedpostboxes_ninzio-slider','a:1:{i:0;s:10:\"wpseo_meta\";}'),
(34,2,'metaboxhidden_ninzio-slider','a:1:{i:0;s:7:\"slugdiv\";}'),
(35,3,'first_name','Graphics'),
(36,3,'last_name','Consulting'),
(37,3,'nickname','Graphics'),
(38,3,'description',''),
(39,3,'rich_editing','true'),
(40,3,'comment_shortcuts','false'),
(41,3,'admin_color','fresh'),
(42,3,'use_ssl','0'),
(43,3,'show_admin_bar_front','true'),
(44,3,'wpqk_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),
(45,3,'wpqk_user_level','0'),
(46,3,'dismissed_wp_pointers','wp350_media,wp360_revisions,wp360_locks,wp390_widgets'),
(47,2,'wpcf7_hide_welcome_panel_on','a:1:{i:0;s:5:\"3.9.3\";}'),
(49,2,'meta-box-order_page','a:3:{s:4:\"side\";s:49:\"submitdiv,pageparentdiv,postimagediv,sharing_meta\";s:6:\"normal\";s:100:\"ninzio-page-options,postexcerpt,wpseo_meta,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:13:\"page-links-to\";}'),
(50,2,'screen_layout_page','2'),
(52,2,'show_welcome_panel','0'),
(53,2,'closedpostboxes_post','a:0:{}'),
(54,2,'metaboxhidden_post','a:10:{i:0;s:20:\"post-feature-image-2\";i:1;s:20:\"post-feature-image-3\";i:2;s:20:\"post-feature-image-4\";i:3;s:20:\"post-feature-image-5\";i:4;s:11:\"postexcerpt\";i:5;s:13:\"trackbacksdiv\";i:6;s:10:\"postcustom\";i:7;s:16:\"commentstatusdiv\";i:8;s:7:\"slugdiv\";i:9;s:9:\"authordiv\";}'),
(55,2,'closedpostboxes_dashboard','a:1:{i:0;s:22:\"jetpack_summary_widget\";}'),
(56,2,'metaboxhidden_dashboard','a:0:{}'),
(57,2,'closedpostboxes_wprss_feed','a:0:{}'),
(58,2,'metaboxhidden_wprss_feed','a:1:{i:0;s:7:\"slugdiv\";}'),
(59,2,'closedpostboxes_page','a:0:{}'),
(60,2,'metaboxhidden_page','a:1:{i:0;s:19:\"wprss-editor-dialog\";}'),
(61,2,'edit_page_per_page','400'),
(62,2,'wpseo_ignore_tour','1'),
(63,2,'default_password_nag',''),
(64,2,'wpseo_seen_about_version','3.1.1'),
(65,2,'_yoast_wpseo_profile_updated','1467050733'),
(66,2,'wpseo_title',''),
(67,2,'wpseo_metadesc',''),
(68,2,'wpseo_metakey',''),
(69,2,'wpseo_noindex_author',''),
(70,2,'googleplus',''),
(71,2,'twitter',''),
(72,2,'facebook',''),
(74,5,'nickname','Arne_Haugland'),
(75,5,'first_name','Arne'),
(76,5,'last_name','Haugland'),
(77,5,'description',''),
(78,5,'rich_editing','true'),
(79,5,'comment_shortcuts','false'),
(80,5,'admin_color','ocean'),
(81,5,'use_ssl','0'),
(82,5,'show_admin_bar_front','true'),
(83,5,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(84,5,'wpqk_user_level','10'),
(85,5,'_yoast_wpseo_profile_updated','1586798529'),
(86,5,'dismissed_wp_pointers',''),
(87,5,'session_tokens','a:1:{s:64:\"f5824bd1157c12663b96215119bbeeaf40c85dddacc892e452b64725b7a2bbc5\";a:4:{s:10:\"expiration\";i:1467314258;s:2:\"ip\";s:14:\"67.102.226.226\";s:2:\"ua\";s:65:\"Mozilla/5.0 (Windows NT 6.0; rv:46.0) Gecko/20100101 Firefox/46.0\";s:5:\"login\";i:1467141458;}}'),
(88,5,'wpqk_dashboard_quick_press_last_post_id','1910'),
(90,2,'edit_post_per_page','10'),
(91,6,'nickname','dmw'),
(92,6,'first_name','David'),
(93,6,'last_name','Weeks'),
(94,6,'description',''),
(95,6,'rich_editing','true'),
(96,6,'comment_shortcuts','false'),
(97,6,'admin_color','fresh'),
(98,6,'use_ssl','0'),
(99,6,'show_admin_bar_front','true'),
(100,6,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(101,6,'wpqk_user_level','10'),
(102,6,'_yoast_wpseo_profile_updated','1625254126'),
(103,6,'dismissed_wp_pointers',''),
(105,6,'wpqk_dashboard_quick_press_last_post_id','4166'),
(107,6,'tgmpa_dismissed_notice','1'),
(108,6,'nav_menu_recently_edited','2'),
(109,6,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(110,6,'metaboxhidden_nav-menus','a:9:{i:0;s:27:\"add-post-type-ninzio-slider\";i:1;s:23:\"add-post-type-portfolio\";i:2;s:17:\"add-post-type-faq\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-post_format\";i:5;s:22:\"add-portfolio-category\";i:6;s:17:\"add-portfolio-tag\";i:7;s:16:\"add-faq-category\";i:8;s:11:\"add-faq-tag\";}'),
(111,6,'wpqk_user-settings','hidetb=0&ampampamppost_dfw=on&ampampampeditor=html&ampampampposts_list_mode=list&ampampampadvImgDetails=show&ampampeditor=html&ampeditor=html&editor=html'),
(112,6,'wpqk_user-settings-time','1667242212'),
(116,6,'closedpostboxes_page','a:1:{i:0;s:12:\"postimagediv\";}'),
(117,6,'metaboxhidden_page','a:7:{i:0;s:11:\"postexcerpt\";i:1;s:10:\"postcustom\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";i:6;s:19:\"wprss-editor-dialog\";}'),
(119,6,'wpqk_media_library_mode','list'),
(120,6,'closedpostboxes_ninzio-slider','a:1:{i:0;s:10:\"wpseo_meta\";}'),
(121,6,'metaboxhidden_ninzio-slider','a:3:{i:0;s:10:\"wpseo_meta\";i:1;s:7:\"slugdiv\";i:2;s:19:\"wprss-editor-dialog\";}'),
(123,2,'closedpostboxes_editcss','a:0:{}'),
(124,2,'metaboxhidden_editcss','a:0:{}'),
(125,2,'jetpack_tracks_wpcom_id','110522689'),
(127,6,'jetpack_tracks_anon_id','jetpack:JS9WlJJqGqzyoFnRLPXbAcTQ'),
(133,2,'edit_ninzio-slider_per_page','20'),
(134,2,'wpqk_media_library_mode','grid'),
(162,5,'wpseo_title',''),
(163,5,'wpseo_metadesc',''),
(164,5,'wpseo_metakey',''),
(165,5,'wpseo_noindex_author',''),
(166,5,'wpseo_content_analysis_disable',''),
(167,5,'wpseo_keyword_analysis_disable',''),
(168,5,'googleplus',''),
(169,5,'twitter',''),
(170,5,'facebook',''),
(191,3,'_yoast_wpseo_profile_updated','1496706093'),
(192,3,'wpseo_title',''),
(193,3,'wpseo_metadesc',''),
(194,3,'wpseo_metakey',''),
(195,3,'wpseo_noindex_author',''),
(196,3,'wpseo_content_analysis_disable',''),
(197,3,'wpseo_keyword_analysis_disable',''),
(198,3,'locale',''),
(199,3,'googleplus',''),
(200,3,'twitter',''),
(201,3,'facebook',''),
(205,5,'locale',''),
(206,2,'community-events-location','a:1:{s:2:\"ip\";s:11:\"77.87.159.0\";}'),
(207,9,'nickname','Robert_Caudle'),
(208,9,'first_name','Robert'),
(209,9,'last_name','Caudle'),
(210,9,'description',''),
(211,9,'rich_editing','true'),
(212,9,'comment_shortcuts','false'),
(213,9,'admin_color','fresh'),
(214,9,'use_ssl','0'),
(215,9,'show_admin_bar_front','true'),
(216,9,'locale',''),
(217,9,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(218,9,'wpqk_user_level','10'),
(219,9,'_yoast_wpseo_profile_updated','1504313409'),
(220,9,'dismissed_wp_pointers','wp496_privacy'),
(221,9,'wpseo_title',''),
(222,9,'wpseo_metadesc',''),
(223,9,'wpseo_metakey',''),
(224,9,'wpseo_noindex_author',''),
(225,9,'wpseo_content_analysis_disable',''),
(226,9,'wpseo_keyword_analysis_disable',''),
(227,9,'googleplus',''),
(228,9,'twitter',''),
(229,9,'facebook',''),
(230,9,'session_tokens','a:1:{s:64:\"6a32b9e47a33dc9de77521ba8c7a1b42e4f89e2ef2e78c76189daceeecd89356\";a:4:{s:10:\"expiration\";i:1560460219;s:2:\"ip\";s:14:\"107.77.234.204\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\";s:5:\"login\";i:1559250619;}}'),
(231,9,'wpqk_dashboard_quick_press_last_post_id','3690'),
(233,9,'community-events-location','a:1:{s:2:\"ip\";s:12:\"107.77.234.0\";}'),
(234,9,'wpqk_user-settings','mfold=o&editor=html'),
(235,9,'wpqk_user-settings-time','1558117741'),
(236,10,'nickname','Debbie_Klimeck'),
(237,10,'first_name','Debbie'),
(238,10,'last_name','Klimeck'),
(239,10,'description',''),
(240,10,'rich_editing','true'),
(241,10,'syntax_highlighting','true'),
(242,10,'comment_shortcuts','false'),
(243,10,'admin_color','fresh'),
(244,10,'use_ssl','0'),
(245,10,'show_admin_bar_front','true'),
(246,10,'locale',''),
(247,10,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(248,10,'wpqk_user_level','10'),
(249,10,'_yoast_wpseo_profile_updated','1513382738'),
(250,10,'dismissed_wp_pointers','wp496_privacy'),
(252,10,'wpqk_dashboard_quick_press_last_post_id','3678'),
(254,10,'community-events-location','a:1:{s:2:\"ip\";s:11:\"73.241.37.0\";}'),
(255,10,'wpqk_user-settings','editor=html&libraryContent=browse'),
(256,10,'wpqk_user-settings-time','1556743871'),
(257,10,'nav_menu_recently_edited','2'),
(258,10,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(259,10,'metaboxhidden_nav-menus','a:9:{i:0;s:27:\"add-post-type-ninzio-slider\";i:1;s:23:\"add-post-type-portfolio\";i:2;s:17:\"add-post-type-faq\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-post_format\";i:5;s:22:\"add-portfolio-category\";i:6;s:17:\"add-portfolio-tag\";i:7;s:16:\"add-faq-category\";i:8;s:11:\"add-faq-tag\";}'),
(260,2,'jetpack_tracks_anon_id','jetpack:d7Q7bfGn1ALnqLc4EK80meo2'),
(261,9,'jetpack_tracks_anon_id','jetpack:s1jh3h1dqP0ETJrZXRQcBC/k'),
(267,4,'_yoast_wpseo_profile_updated','1521067689'),
(268,4,'syntax_highlighting','true'),
(269,4,'locale',''),
(270,4,'googleplus',''),
(271,4,'twitter',''),
(272,4,'facebook',''),
(273,11,'nickname','Chris_Varga'),
(274,11,'first_name','Chris'),
(275,11,'last_name','Varga'),
(276,11,'description',''),
(277,11,'rich_editing','true'),
(278,11,'syntax_highlighting','true'),
(279,11,'comment_shortcuts','false'),
(280,11,'admin_color','fresh'),
(281,11,'use_ssl','0'),
(282,11,'show_admin_bar_front','true'),
(283,11,'locale',''),
(284,11,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(285,11,'wpqk_user_level','10'),
(286,11,'_yoast_wpseo_profile_updated','1597173449'),
(287,11,'dismissed_wp_pointers',''),
(288,11,'session_tokens','a:1:{s:64:\"afc5fc27e43f5af5be0681d543a6289f9ef448a410c591fa5c12a01c92f48bd8\";a:4:{s:10:\"expiration\";i:1590157823;s:2:\"ip\";s:13:\"208.46.30.115\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36\";s:5:\"login\";i:1589985023;}}'),
(289,11,'wpqk_dashboard_quick_press_last_post_id','3819'),
(291,11,'community-events-location','a:1:{s:2:\"ip\";s:11:\"208.46.30.0\";}'),
(292,11,'jetpack_tracks_anon_id','jetpack:I6kKqvHQ4RDMg24sZTcdEuAE'),
(293,11,'nav_menu_recently_edited','2'),
(294,11,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(295,11,'metaboxhidden_nav-menus','a:9:{i:0;s:27:\"add-post-type-ninzio-slider\";i:1;s:23:\"add-post-type-portfolio\";i:2;s:17:\"add-post-type-faq\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-post_format\";i:5;s:22:\"add-portfolio-category\";i:6;s:17:\"add-portfolio-tag\";i:7;s:16:\"add-faq-category\";i:8;s:11:\"add-faq-tag\";}'),
(311,13,'nickname','mobiloitte'),
(312,13,'first_name','Deepak'),
(313,13,'last_name','Singh'),
(314,13,'description',''),
(315,13,'rich_editing','true'),
(316,13,'syntax_highlighting','true'),
(317,13,'comment_shortcuts','false'),
(318,13,'admin_color','fresh'),
(319,13,'use_ssl','0'),
(320,13,'show_admin_bar_front','true'),
(321,13,'locale',''),
(322,13,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(323,13,'wpqk_user_level','10'),
(324,13,'_yoast_wpseo_profile_updated','1526193347'),
(325,13,'dismissed_wp_pointers',''),
(328,10,'jetpack_tracks_anon_id','jetpack:L6oLMFctmVoWZ4KcQKyPUxP5'),
(330,14,'nickname','Nicolai_Michelet'),
(331,14,'first_name','Nicolai'),
(332,14,'last_name','Michelet'),
(333,14,'description',''),
(334,14,'rich_editing','true'),
(335,14,'syntax_highlighting','true'),
(336,14,'comment_shortcuts','false'),
(337,14,'admin_color','fresh'),
(338,14,'use_ssl','0'),
(339,14,'show_admin_bar_front','true'),
(340,14,'locale',''),
(341,14,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(342,14,'wpqk_user_level','10'),
(343,14,'_yoast_wpseo_profile_updated','1529457123'),
(344,14,'dismissed_wp_pointers','wp496_privacy'),
(345,5,'syntax_highlighting','true'),
(346,14,'default_password_nag',''),
(347,14,'session_tokens','a:1:{s:64:\"4f0d53dacd32c38771923259c324152bdf7511e003ef5d298d49b8fef120e268\";a:4:{s:10:\"expiration\";i:1544826527;s:2:\"ip\";s:14:\"98.245.163.198\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\";s:5:\"login\";i:1544653727;}}'),
(348,14,'wpqk_dashboard_quick_press_last_post_id','3428'),
(350,14,'community-events-location','a:1:{s:2:\"ip\";s:12:\"98.245.163.0\";}'),
(351,14,'jetpack_tracks_anon_id','jetpack:C8tbObigt+s7ogf0mXVWuQEK'),
(352,14,'jetpack_tracks_anon_id','jetpack:CPSLDIIcTWV8ss+Zt+TBYzb9'),
(355,11,'wpseo_title',''),
(356,11,'wpseo_metadesc',''),
(357,11,'wpseo_noindex_author',''),
(358,11,'wpseo_content_analysis_disable',''),
(359,11,'wpseo_keyword_analysis_disable',''),
(360,11,'googleplus',''),
(361,11,'twitter',''),
(362,11,'facebook',''),
(365,15,'nickname','Molly_Gregg'),
(366,15,'first_name','Molly'),
(367,15,'last_name','Gregg'),
(368,15,'description',''),
(369,15,'rich_editing','true'),
(370,15,'syntax_highlighting','true'),
(371,15,'comment_shortcuts','false'),
(372,15,'admin_color','fresh'),
(373,15,'use_ssl','0'),
(374,15,'show_admin_bar_front','true'),
(375,15,'locale',''),
(376,15,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(377,15,'wpqk_user_level','10'),
(378,15,'_yoast_wpseo_profile_updated','1531516359'),
(379,15,'dismissed_wp_pointers','wp496_privacy'),
(381,15,'wpqk_dashboard_quick_press_last_post_id','3786'),
(383,15,'community-events-location','a:1:{s:2:\"ip\";s:13:\"108.194.255.0\";}'),
(384,15,'wpqk_user-settings','libraryContent=browse&editor=html&urlbutton=none&align=center&imgsize=full'),
(385,15,'wpqk_user-settings-time','1534359712'),
(387,15,'jetpack_tracks_anon_id','jetpack:u8KTS9P9Bz0G4BliQvTNye1V'),
(390,16,'nickname','softscripts'),
(391,16,'first_name','Sri'),
(392,16,'last_name','Nivas'),
(393,16,'description',''),
(394,16,'rich_editing','true'),
(395,16,'syntax_highlighting','true'),
(396,16,'comment_shortcuts','false'),
(397,16,'admin_color','fresh'),
(398,16,'use_ssl','0'),
(399,16,'show_admin_bar_front','true'),
(400,16,'locale',''),
(401,16,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(402,16,'wpqk_user_level','10'),
(403,16,'_yoast_wpseo_profile_updated','1532064026'),
(404,16,'dismissed_wp_pointers','wp496_privacy'),
(407,16,'wpqk_dashboard_quick_press_last_post_id','3478'),
(409,16,'community-events-location','a:1:{s:2:\"ip\";s:12:\"106.51.210.0\";}'),
(411,16,'default_password_nag',''),
(412,16,'jetpack_tracks_anon_id','jetpack:QynMr0kYik/2TGGbcXplR8WQ'),
(415,16,'session_tokens','a:1:{s:64:\"d2200d87438bd51cb5a713677f131011295857cba40b473624ec5a47992cf206\";a:4:{s:10:\"expiration\";i:1541155853;s:2:\"ip\";s:14:\"106.51.210.253\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:63.0) Gecko/20100101 Firefox/63.0\";s:5:\"login\";i:1540983053;}}'),
(417,15,'nav_menu_recently_edited','2'),
(418,15,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),
(419,15,'metaboxhidden_nav-menus','a:13:{i:0;s:28:\"add-post-type-qcpx_portfolio\";i:1;s:25:\"add-post-type-portfolio-x\";i:2;s:27:\"add-post-type-ninzio-slider\";i:3;s:23:\"add-post-type-portfolio\";i:4;s:17:\"add-post-type-faq\";i:5;s:12:\"add-post_tag\";i:6;s:15:\"add-post_format\";i:7;s:18:\"add-portfolio_type\";i:8;s:24:\"add-portfolio_technology\";i:9;s:22:\"add-portfolio-category\";i:10;s:17:\"add-portfolio-tag\";i:11;s:16:\"add-faq-category\";i:12;s:11:\"add-faq-tag\";}'),
(425,6,'community-events-location','a:1:{s:2:\"ip\";s:11:\"24.60.140.0\";}'),
(429,2,'wpqk_wpseo-upsell-notice','seen'),
(446,18,'nickname','Susan_Ostroski'),
(447,18,'first_name','Susan'),
(448,18,'last_name','Ostroski'),
(449,18,'description',''),
(450,18,'rich_editing','true'),
(451,18,'syntax_highlighting','true'),
(452,18,'comment_shortcuts','false'),
(453,18,'admin_color','fresh'),
(454,18,'use_ssl','0'),
(455,18,'show_admin_bar_front','true'),
(456,18,'locale',''),
(457,18,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(458,18,'wpqk_user_level','10'),
(459,18,'_yoast_wpseo_profile_updated','1545089801'),
(460,18,'dismissed_wp_pointers','wp496_privacy,text_widget_custom_html'),
(461,18,'session_tokens','a:1:{s:64:\"2e0b41ee9bb9f7ec8ddbd0f0681aa845fed0af6504b5d4bf0a62b3499d29f71a\";a:4:{s:10:\"expiration\";i:1547058504;s:2:\"ip\";s:11:\"24.7.122.40\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0\";s:5:\"login\";i:1546885704;}}'),
(462,18,'wpqk_dashboard_quick_press_last_post_id','3585'),
(464,18,'community-events-location','a:1:{s:2:\"ip\";s:10:\"24.7.122.0\";}'),
(465,18,'edit_page_per_page','500'),
(466,18,'wpqk_user-settings','editor=html'),
(467,18,'wpqk_user-settings-time','1545345299'),
(468,18,'default_password_nag',''),
(472,18,'jetpack_tracks_anon_id','jetpack:MiP0T6osO5VuKt2dC3uGUZxC'),
(482,15,'session_tokens','a:1:{s:64:\"ed2976124c5f0d5baa8ed6dfff65b98efc0210a11402c6e35f48325eba21e0e7\";a:4:{s:10:\"expiration\";i:1568335289;s:2:\"ip\";s:15:\"108.194.255.229\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:5:\"login\";i:1568162489;}}'),
(486,10,'closedpostboxes_post','a:1:{i:0;s:9:\"formatdiv\";}'),
(487,10,'metaboxhidden_post','a:12:{i:0;s:12:\"postimagediv\";i:1;s:20:\"post-feature-image-2\";i:2;s:20:\"post-feature-image-3\";i:3;s:20:\"post-feature-image-4\";i:4;s:20:\"post-feature-image-5\";i:5;s:11:\"postexcerpt\";i:6;s:13:\"trackbacksdiv\";i:7;s:10:\"postcustom\";i:8;s:16:\"commentstatusdiv\";i:9;s:11:\"commentsdiv\";i:10;s:7:\"slugdiv\";i:11;s:9:\"authordiv\";}'),
(489,9,'wpe_gutenberg_notice','1'),
(490,9,'meta-box-order_page','a:3:{s:4:\"side\";s:49:\"submitdiv,pageparentdiv,sharing_meta,postimagediv\";s:6:\"normal\";s:100:\"ninzio-page-options,wpseo_meta,postexcerpt,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:13:\"page-links-to\";}'),
(491,9,'screen_layout_page','2'),
(492,2,'wpe_gutenberg_notice','1'),
(493,4,'session_tokens','a:1:{s:64:\"1fda4cad5e153fb3b971134e78549a92d7dd1064c1272faa49fb84dce1d3eeb6\";a:4:{s:10:\"expiration\";i:1633298961;s:2:\"ip\";s:15:\"192.171.117.235\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36\";s:5:\"login\";i:1633126161;}}'),
(494,15,'edit_page_per_page','101'),
(495,2,'pys_free_current_promo_notices_set','1_from_pre_7x'),
(496,2,'pys_free_current_promo_notice_key','0'),
(497,2,'pys_core_optin_first_time_dismissed_at','1573265502'),
(498,2,'pys_ga_no_pixel_dismissed_at','1573265524'),
(500,4,'instagram',''),
(501,4,'linkedin',''),
(502,4,'myspace',''),
(503,4,'pinterest',''),
(504,4,'soundcloud',''),
(505,4,'tumblr',''),
(506,4,'youtube',''),
(507,4,'wikipedia',''),
(510,11,'instagram',''),
(511,11,'linkedin',''),
(512,11,'myspace',''),
(513,11,'pinterest',''),
(514,11,'soundcloud',''),
(515,11,'tumblr',''),
(516,11,'youtube',''),
(517,11,'wikipedia',''),
(518,5,'instagram',''),
(519,5,'linkedin',''),
(520,5,'myspace',''),
(521,5,'pinterest',''),
(522,5,'soundcloud',''),
(523,5,'tumblr',''),
(524,5,'youtube',''),
(525,5,'wikipedia',''),
(526,11,'default_password_nag',''),
(527,11,'pys_free_current_promo_notices_set','1_from_pre_7x'),
(528,11,'pys_free_current_promo_notice_key','0'),
(533,2,'_woocommerce_tracks_anon_id','woo:8H2ypP4Aei6SGx+KU7xHLHVJ'),
(534,2,'wc_last_active','1620172800'),
(537,2,'_order_count','0'),
(543,2,'pys_core_optin_second_time_dismissed_at','1604879971'),
(548,2,'pys_core_optin_third_time_dismissed_at','1612836552'),
(552,19,'nickname','Thomas_Crouch'),
(553,19,'first_name','Thomas'),
(554,19,'last_name','Crouch'),
(555,19,'description',''),
(556,19,'rich_editing','true'),
(557,19,'syntax_highlighting','true'),
(558,19,'comment_shortcuts','false'),
(559,19,'admin_color','fresh'),
(560,19,'use_ssl','0'),
(561,19,'show_admin_bar_front','true'),
(562,19,'locale',''),
(563,19,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(564,19,'wpqk_user_level','10'),
(565,19,'_yoast_wpseo_profile_updated','1613781402'),
(566,19,'dismissed_wp_pointers',''),
(567,19,'facebook',''),
(568,19,'instagram',''),
(569,19,'linkedin',''),
(570,19,'myspace',''),
(571,19,'pinterest',''),
(572,19,'soundcloud',''),
(573,19,'tumblr',''),
(574,19,'twitter',''),
(575,19,'youtube',''),
(576,19,'wikipedia',''),
(577,19,'last_update','1613781598'),
(578,19,'default_password_nag',''),
(580,19,'wc_last_active','1613779200'),
(582,19,'_woocommerce_tracks_anon_id','woo:c04pmrHLxReQRIVpUc3gz6R7'),
(583,19,'pys_free_current_promo_notices_set','1_from_pre_7x'),
(584,19,'pys_free_current_promo_notice_key','0'),
(585,19,'wpqk_dashboard_quick_press_last_post_id','3838'),
(586,19,'wpqk_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:430:\"Yoast SEO and WooCommerce can work together a lot better by adding a helper plugin. Please install Yoast WooCommerce SEO to make your life better. <a href=\"https://yoa.st/1o0?php_version=7.3&platform=wordpress&platform_version=5.5.3&software=free&software_version=12.4&days_active=30plus&user_language=en_US\" aria-label=\"More information about Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">More information</a>.\";s:7:\"options\";a:9:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:228:\"<strong>Huge SEO Issue: You\'re blocking access to robots.</strong> You must <a href=\"https://activeclubsolutions.net/wp-admin/options-reading.php\">go to your Reading Settings</a> and uncheck the box for Search Engine Visibility.\";s:7:\"options\";a:9:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:32:\"wpseo-dismiss-blog-public-notice\";s:5:\"nonce\";N;s:8:\"priority\";i:1;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),
(587,19,'community-events-location','a:1:{s:2:\"ip\";s:11:\"73.15.242.0\";}'),
(599,2,'meta-box-order_post','a:3:{s:4:\"side\";s:145:\"submitdiv,categorydiv,formatdiv,tagsdiv-post_tag,postimagediv,post-feature-image-2,post-feature-image-3,post-feature-image-4,post-feature-image-5\";s:6:\"normal\";s:153:\"sharing_meta,shfs_all_post_meta,ninzio-post-format-options,wpseo_meta,postexcerpt,trackbacksdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:29:\"pys-head-footer,page-links-to\";}'),
(600,2,'screen_layout_post','2'),
(601,6,'wpseo_title',''),
(602,6,'wpseo_metadesc',''),
(603,6,'wpseo_noindex_author',''),
(604,6,'wpseo_content_analysis_disable',''),
(605,6,'wpseo_keyword_analysis_disable',''),
(606,6,'syntax_highlighting','true'),
(607,6,'locale',''),
(608,6,'facebook',''),
(609,6,'instagram',''),
(610,6,'linkedin',''),
(611,6,'myspace',''),
(612,6,'pinterest',''),
(613,6,'soundcloud',''),
(614,6,'tumblr',''),
(615,6,'twitter',''),
(616,6,'youtube',''),
(617,6,'wikipedia',''),
(618,6,'pys_free_current_promo_notices_set','1_from_pre_7x'),
(619,6,'pys_free_current_promo_notice_key','0'),
(623,6,'pys_core_optin_first_time_dismissed_at','1626179041'),
(624,6,'pys_ga_no_pixel_dismissed_at','1626179043'),
(625,6,'gtm4wp_user_notices_dismisses','s:156:\"a:5:{s:14:\"enter-gtm-code\";b:1;s:20:\"wc-ga-plugin-warning\";b:0;s:25:\"wc-gayoast-plugin-warning\";b:0;s:13:\"php56-warning\";b:0;s:18:\"deprecated-warning\";b:0;}\";'),
(626,6,'closedpostboxes_post','a:1:{i:0;s:15:\"pys-head-footer\";}'),
(627,6,'metaboxhidden_post','a:14:{i:0;s:20:\"post-feature-image-2\";i:1;s:20:\"post-feature-image-3\";i:2;s:20:\"post-feature-image-4\";i:3;s:20:\"post-feature-image-5\";i:4;s:26:\"ninzio-post-format-options\";i:5;s:10:\"wpseo_meta\";i:6;s:11:\"postexcerpt\";i:7;s:13:\"trackbacksdiv\";i:8;s:10:\"postcustom\";i:9;s:16:\"commentstatusdiv\";i:10;s:11:\"commentsdiv\";i:11;s:7:\"slugdiv\";i:12;s:9:\"authordiv\";i:13;s:15:\"pys-head-footer\";}'),
(633,20,'nickname','elizabeth@activeclubsolutions.com'),
(634,20,'first_name','Elizabeth'),
(635,20,'last_name','Cole'),
(636,20,'description',''),
(637,20,'rich_editing','true'),
(638,20,'syntax_highlighting','true'),
(639,20,'comment_shortcuts','false'),
(640,20,'admin_color','fresh'),
(641,20,'use_ssl','0'),
(642,20,'show_admin_bar_front','true'),
(643,20,'locale',''),
(644,20,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(645,20,'wpqk_user_level','10'),
(646,20,'_yoast_wpseo_profile_updated','1627947170'),
(647,20,'dismissed_wp_pointers',''),
(648,20,'facebook',''),
(649,20,'instagram',''),
(650,20,'linkedin',''),
(651,20,'myspace',''),
(652,20,'pinterest',''),
(653,20,'soundcloud',''),
(654,20,'tumblr',''),
(655,20,'twitter',''),
(656,20,'youtube',''),
(657,20,'wikipedia',''),
(658,20,'session_tokens','a:1:{s:64:\"37b9dc32b83e3969b8c981feff07b5ca4cc897b1bc898e1ec5b42626121fb493\";a:4:{s:10:\"expiration\";i:1629156842;s:2:\"ip\";s:14:\"63.238.119.114\";s:2:\"ua\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36 Edg/92.0.902.62\";s:5:\"login\";i:1627947242;}}'),
(659,20,'pys_free_current_promo_notices_set','1_from_pre_7x'),
(660,20,'pys_free_current_promo_notice_key','0'),
(661,20,'wpqk_dashboard_quick_press_last_post_id','3906'),
(662,20,'wpqk_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:908:\"<strong>Upgrade WordPress to the most recent version</strong><br/>We’ve noticed that you’re not on the latest WordPress version, which might cause an issue soon. Yoast (for reasons of security and stability) only supports the current and previous version of WordPress. When the next version of WordPress comes out, that means that we will support WordPress 5.8 and 5.9. This means you will not get any updates to Yoast SEO until you update your WordPress, so please make sure to upgrade to the latest WordPress version soon!<br/><br/><br/><br/>Read <a href=\"https://yoa.st/old-wp-support?php_version=7.3&platform=wordpress&platform_version=5.7.1&software=free&software_version=12.4&days_active=30plus&user_language=en_US\" target=\"_blank\" rel=\"nofollow\">this post for more information about why we’re not supporting older versions.<span class=\"screen-reader-text\">(Opens in a new browser tab)</span></a>\";s:7:\"options\";a:9:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:31:\"wpseo-dismiss-wordpress-upgrade\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),
(663,20,'community-events-location','a:1:{s:2:\"ip\";s:12:\"63.238.119.0\";}'),
(664,20,'wpqk_user-settings','editor=html'),
(665,20,'wpqk_user-settings-time','1627947541'),
(666,6,'pys_core_optin_second_time_dismissed_at','1628603097'),
(669,6,'wpqk_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:228:\"<strong>Huge SEO Issue: You\'re blocking access to robots.</strong> You must <a href=\"https://activeclubsolutions.net/wp-admin/options-reading.php\">go to your Reading Settings</a> and uncheck the box for Search Engine Visibility.\";s:7:\"options\";a:9:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:32:\"wpseo-dismiss-blog-public-notice\";s:5:\"nonce\";N;s:8:\"priority\";i:1;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),
(670,4,'pys_free_current_promo_notices_set','1_from_pre_7x'),
(671,4,'pys_free_current_promo_notice_key','0'),
(672,4,'wpqk_dashboard_quick_press_last_post_id','3944'),
(673,4,'wpqk_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:228:\"<strong>Huge SEO Issue: You\'re blocking access to robots.</strong> You must <a href=\"https://activeclubsolutions.net/wp-admin/options-reading.php\">go to your Reading Settings</a> and uncheck the box for Search Engine Visibility.\";s:7:\"options\";a:9:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:32:\"wpseo-dismiss-blog-public-notice\";s:5:\"nonce\";N;s:8:\"priority\";i:1;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),
(674,4,'community-events-location','a:1:{s:2:\"ip\";s:13:\"192.171.117.0\";}'),
(675,4,'jetpack_tracks_anon_id','jetpack:MpQUfOQ9DL+64NHktu7qtNSY'),
(677,6,'pys_core_optin_third_time_dismissed_at','1633866915'),
(678,6,'closedpostboxes_dashboard','a:7:{i:0;s:21:\"dashboard_site_health\";i:1;s:19:\"dashboard_right_now\";i:2;s:18:\"dashboard_activity\";i:3;s:18:\"wpe_dify_news_feed\";i:4;s:12:\"gadwp-widget\";i:5;s:24:\"wpseo-dashboard-overview\";i:6;s:17:\"dashboard_primary\";}'),
(679,6,'metaboxhidden_dashboard','a:0:{}'),
(680,19,'session_tokens','a:1:{s:64:\"0f6f5efaee53a37c2c5e4cdede7e51b1aefee3e0881dff6c5492cfdaf2d8ad08\";a:4:{s:10:\"expiration\";i:1635955354;s:2:\"ip\";s:13:\"71.63.202.247\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36\";s:5:\"login\";i:1635782554;}}'),
(682,6,'manageedit-postcolumnshidden','a:6:{i:0;s:4:\"tags\";i:1;s:11:\"gadwp_stats\";i:2;s:11:\"wpseo-score\";i:3;s:11:\"wpseo-title\";i:4;s:14:\"wpseo-metadesc\";i:5;s:13:\"wpseo-focuskw\";}'),
(683,6,'edit_post_per_page','10'),
(684,6,'meta-box-order_post','a:3:{s:4:\"side\";s:145:\"submitdiv,formatdiv,categorydiv,tagsdiv-post_tag,postimagediv,post-feature-image-2,post-feature-image-3,post-feature-image-4,post-feature-image-5\";s:6:\"normal\";s:140:\"shfs_all_post_meta,ninzio-post-format-options,wpseo_meta,postexcerpt,trackbacksdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:29:\"pys-head-footer,page-links-to\";}'),
(685,6,'screen_layout_post','1'),
(686,2,'gtm4wp_user_notices_dismisses','s:156:\"a:5:{s:14:\"enter-gtm-code\";b:1;s:20:\"wc-ga-plugin-warning\";b:0;s:25:\"wc-gayoast-plugin-warning\";b:0;s:13:\"php56-warning\";b:0;s:18:\"deprecated-warning\";b:0;}\";'),
(688,21,'nickname','helene@activeclubsolutions.com'),
(689,21,'first_name','Helene'),
(690,21,'last_name','Champ'),
(691,21,'description',''),
(692,21,'rich_editing','true'),
(693,21,'syntax_highlighting','true'),
(694,21,'comment_shortcuts','false'),
(695,21,'admin_color','fresh'),
(696,21,'use_ssl','0'),
(697,21,'show_admin_bar_front','true'),
(698,21,'locale',''),
(699,21,'wpqk_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(700,21,'wpqk_user_level','10'),
(701,21,'_yoast_wpseo_profile_updated','1684441886'),
(702,21,'dismissed_wp_pointers',''),
(703,21,'facebook',''),
(704,21,'instagram',''),
(705,21,'linkedin',''),
(706,21,'myspace',''),
(707,21,'pinterest',''),
(708,21,'soundcloud',''),
(709,21,'tumblr',''),
(710,21,'twitter',''),
(711,21,'youtube',''),
(712,21,'wikipedia',''),
(714,21,'pys_free_current_promo_notices_set','1_from_pre_7x'),
(715,21,'pys_free_current_promo_notice_key','0'),
(716,21,'wpqk_dashboard_quick_press_last_post_id','4139'),
(717,21,'wpqk_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:228:\"<strong>Huge SEO Issue: You\'re blocking access to robots.</strong> You must <a href=\"https://activeclubsolutions.net/wp-admin/options-reading.php\">go to your Reading Settings</a> and uncheck the box for Search Engine Visibility.\";s:7:\"options\";a:9:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:32:\"wpseo-dismiss-blog-public-notice\";s:5:\"nonce\";N;s:8:\"priority\";i:1;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:908:\"<strong>Upgrade WordPress to the most recent version</strong><br/>We’ve noticed that you’re not on the latest WordPress version, which might cause an issue soon. Yoast (for reasons of security and stability) only supports the current and previous version of WordPress. When the next version of WordPress comes out, that means that we will support WordPress 6.8 and 6.9. This means you will not get any updates to Yoast SEO until you update your WordPress, so please make sure to upgrade to the latest WordPress version soon!<br/><br/><br/><br/>Read <a href=\"https://yoa.st/old-wp-support?php_version=7.4&platform=wordpress&platform_version=6.5.3&software=free&software_version=12.4&days_active=30plus&user_language=en_US\" target=\"_blank\" rel=\"nofollow\">this post for more information about why we’re not supporting older versions.<span class=\"screen-reader-text\">(Opens in a new browser tab)</span></a>\";s:7:\"options\";a:9:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:31:\"wpseo-dismiss-wordpress-upgrade\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),
(718,21,'community-events-location','a:1:{s:2:\"ip\";s:11:\"76.138.37.0\";}'),
(719,21,'wpqk_user-settings','editor=tinymce&advImgDetails=show&libraryContent=browse&editor_plain_text_paste_warning=1'),
(720,21,'wpqk_user-settings-time','1746639570'),
(722,21,'meta-box-order_post','a:3:{s:4:\"side\";s:145:\"formatdiv,submitdiv,categorydiv,tagsdiv-post_tag,postimagediv,post-feature-image-2,post-feature-image-3,post-feature-image-4,post-feature-image-5\";s:6:\"normal\";s:128:\"shfs_all_post_meta,ninzio-post-format-options,wpseo_meta,postexcerpt,trackbacksdiv,postcustom,commentstatusdiv,slugdiv,authordiv\";s:8:\"advanced\";s:29:\"pys-head-footer,page-links-to\";}'),
(723,21,'screen_layout_post','2'),
(724,21,'pys_core_optin_first_time_dismissed_at','1709926750'),
(725,21,'pys_ga_no_pixel_dismissed_at','1709926752'),
(726,21,'gtm4wp_user_notices_dismisses','s:156:\"a:5:{s:14:\"enter-gtm-code\";b:1;s:20:\"wc-ga-plugin-warning\";b:0;s:25:\"wc-gayoast-plugin-warning\";b:0;s:13:\"php56-warning\";b:0;s:18:\"deprecated-warning\";b:0;}\";'),
(727,21,'session_tokens','a:2:{s:64:\"ef5bd017b897bb6079b228c80a1cf3008d1a8755679778ca19410a394ef56b2b\";a:4:{s:10:\"expiration\";i:1763150202;s:2:\"ip\";s:13:\"212.15.84.228\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36\";s:5:\"login\";i:1762977402;}s:64:\"03a4a5be3ff25554c7186eed6b45453ef7d749c33dd9b2ef96bdc27665252adb\";a:4:{s:10:\"expiration\";i:1763164769;s:2:\"ip\";s:12:\"98.239.4.123\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36\";s:5:\"login\";i:1762991969;}}'),
(728,21,'pys_core_optin_second_time_dismissed_at','1723580499'),
(729,2,'session_tokens','a:4:{s:64:\"cbe9b46f9cc68fc1dda7236a35d20e64ac589a031df054cef1892c7d4bd89f84\";a:4:{s:10:\"expiration\";i:1763259156;s:2:\"ip\";s:13:\"77.87.159.181\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36\";s:5:\"login\";i:1763086356;}s:64:\"8972cc129e683165c24deb3961553af1673222365f9812602682a870460a855a\";a:4:{s:10:\"expiration\";i:1763353375;s:2:\"ip\";s:13:\"77.87.159.181\";s:2:\"ua\";s:78:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/113.0\";s:5:\"login\";i:1763180575;}s:64:\"8386624b8916696cf7298d8b054ab713858b3a7fd089c1ff59059658fd1d511c\";a:4:{s:10:\"expiration\";i:1763357140;s:2:\"ip\";s:13:\"77.87.159.181\";s:2:\"ua\";s:78:\"Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/113.0\";s:5:\"login\";i:1763184340;}s:64:\"b2b817d6168f4f69f05fc0ef34a8b99a269c29b82f2f3adb7f9bfa5f0a3655d4\";a:4:{s:10:\"expiration\";i:1763357402;s:2:\"ip\";s:13:\"77.87.159.181\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36\";s:5:\"login\";i:1763184602;}}'),
(730,2,'wpqk_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:228:\"<strong>Huge SEO Issue: You\'re blocking access to robots.</strong> You must <a href=\"https://activeclubsolutions.net/wp-admin/options-reading.php\">go to your Reading Settings</a> and uncheck the box for Search Engine Visibility.\";s:7:\"options\";a:9:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:32:\"wpseo-dismiss-blog-public-notice\";s:5:\"nonce\";N;s:8:\"priority\";i:1;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}');
/*!40000 ALTER TABLE `wpqk_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_users`
--

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

--
-- Dumping data for table `wpqk_users`
--

LOCK TABLES `wpqk_users` WRITE;
/*!40000 ALTER TABLE `wpqk_users` DISABLE KEYS */;
INSERT INTO `wpqk_users` VALUES
(2,'activeclub','$wp$2y$10$X4YZW6kbLlxbX8pXCfbDb.sy6wiFWxmZRh6ixwAxkLT7EZ5KJyW12','activeclub','info@activeclubsolutions.net','https://activeclubsolutions.net','2014-04-12 00:37:48','',0,'Active Club Solutions'),
(3,'Graphics','$P$BTPKhyHchRWS.Fy6eWPLMdegAxJq.7.','graphics','training@activeclubsolutions.net','https://activeclubsolutions.net','2014-09-09 17:24:53','',0,'Graphics Consulting'),
(4,'wpengine','$P$BHW6poYkCzymwtLCvD8fseu7bs1FFl0','wpengine','bitbucket@wpengine.com','http://wpengine.com','2014-01-23 21:54:49','',0,'wpengine'),
(5,'Arne_Haugland','$P$BZbKyEviBmD.pTyiNJsJwYwcKg3BSQ/','arne_haugland','arne@activeclubsolutions.com','','2016-06-27 19:07:33','',0,'Arne Haugland'),
(6,'dmw','$P$Bl9U5dbsX4yY2UWrJV6Lp0xiaE23CO0','dmw','david@activeclubsolutions.com','','2016-07-06 16:50:04','',0,'David Weeks'),
(9,'Robert_Caudle','$P$BHsbjXLPFUC9Xl5zfbtIA6O500sRGL1','robert_caudle','robert@activeclubsolutions.net','https://activeclubsolutions.net','2017-09-02 00:48:52','1504313332:$P$BWhmt000/JsYRVfzAZ0nP9M2UWlwzE.',0,'Robert Caudle'),
(10,'Debbie_Klimeck','$P$BZtVOIpt44fJmnlKVtMl/VnYMF3gtK.','debbie_klimeck','debbie@activeclubsolutions.net','https://activeclubsolutions.net','2017-12-16 00:05:38','1513382738:$P$Br2ZNeijdxpx0kpK.1yIo9umYMLszl1',0,'Debbie Klimeck'),
(11,'Chris_Varga','$P$BvZlxqpeQsbwl3x1uY1is60QnSyq151','chris_varga','Chris@activeclubsolutions.com','','2018-03-23 20:00:44','',0,'Chris Varga'),
(13,'mobiloitte','$P$BMHtn/1Zi9k4G0oI.E1KbEkjadheSG.','mobiloitte','deepak.singh@mobiloitte.com','http://www.mobiloitte.com','2018-05-13 06:35:47','',0,'Deepak Singh'),
(14,'Nicolai_Michelet','$P$BCUXz.eCQj2HIljd.qppSFBN2mwWsA/','nicolai_michelet','nicolai_m404@hotmail.com','https://activeclubsolutions.net','2018-06-20 01:12:03','',0,'Nicolai Michelet'),
(15,'Molly_Gregg','$P$B2ULLm5MUC8wn7lXYpb1G6kknW/Rd4.','molly_gregg','mollyagregg@gmail.com','https://activeclubsolutions.net','2018-07-13 21:12:39','1531516359:$P$BrjfIl3ci1SZvouY5fqNER4u7p4wSa1',0,'Molly Gregg'),
(16,'softscripts','$P$B6N1vyKNLpnvbKNAkccUirz0KRj/.I1','softscripts','sai@softscripts.net','http://www.softscripts.net','2018-07-20 05:20:26','',0,'Sri Nivas'),
(18,'Susan_Ostroski','$P$BGejy9ouuvH8VLqDmE8jcySLMUZ4Vs0','susan_ostroski','susan@activeclubsolutions.net','https://activeclubsolutions.net','2018-12-17 23:36:41','',0,'Susan Ostroski'),
(19,'Thomas_Crouch','$P$Bn6Maj3KKOFA7h9h6KaZTWvWI4oQ8C/','thomas_crouch','thomas@activeclubsolutions.com','http://activeclubsolutions.net','2021-02-20 00:36:42','',0,'Thomas Crouch'),
(20,'elizabeth@activeclubsolutions.com','$P$BHNxnWQuQ5bumb4/5626s.SavHTYdn0','elizabethactiveclubsolutions-com','elizabeth@activeclubsolutions.com','','2021-08-02 23:32:50','1627947171:$P$BEvtRECCaCxwzdoyK5F0om5/kbtlEM/',0,'Elizabeth Cole'),
(21,'helene@activeclubsolutions.com','$P$B2r2bloIVGHKOdfSSQvqJfR6nOu3kA1','heleneactiveclubsolutions-com','helene@activeclubsolutions.com','http://activeclubsolutions.com','2023-05-18 20:31:26','1684441887:$P$BJhhYSBzzFWDl/y2ywMbUWq7IF45Lb0',0,'Helene Champ');
/*!40000 ALTER TABLE `wpqk_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_wc_admin_note_actions`
--

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

--
-- Dumping data for table `wpqk_wc_admin_note_actions`
--

LOCK TABLES `wpqk_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wpqk_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wpqk_wc_admin_note_actions` VALUES
(1,1,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin','actioned',0),
(2,2,'open-marketing-hub','Open marketing hub','https://activeclubsolutions.net/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0),
(3,3,'connect','Connect','?page=wc-addons&section=helper','unactioned',0),
(4,4,'continue-profiler','Continue Store Setup','https://activeclubsolutions.net/wp-admin/admin.php?page=wc-admin&enable_onboarding=1','unactioned',1),
(5,4,'skip-profiler','Skip Setup','https://activeclubsolutions.net/wp-admin/admin.php?page=wc-admin&reset_profiler=0','actioned',0),
(6,5,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0),
(7,6,'tracking-opt-in','Activate usage tracking','','actioned',1),
(8,7,'share-feedback','Share feedback','https://automattic.survey.fm/new-onboarding-survey','actioned',0),
(9,8,'home-screen-feedback-share-feedback','Share feedback','https://automattic.survey.fm/home-screen-survey','actioned',0),
(10,9,'learn-more','Learn more','https://woocommerce.com/payments/','unactioned',0),
(11,9,'install-now','Install now','','actioned',1),
(12,10,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0);
/*!40000 ALTER TABLE `wpqk_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_wc_admin_notes`
--

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

--
-- Dumping data for table `wpqk_wc_admin_notes`
--

LOCK TABLES `wpqk_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wpqk_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wpqk_wc_admin_notes` VALUES
(1,'wc-admin-onboarding-email-marketing','info','en_US','Tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','[]','unactioned','woocommerce-admin','2020-08-11 19:19:35',NULL,0,'plain','',0,'info'),
(2,'wc-admin-marketing-intro','info','en_US','Connect with your audience','Grow your customer base and increase your sales with marketing tools built for WooCommerce.','[]','unactioned','woocommerce-admin','2020-08-11 19:19:35',NULL,0,'plain','',0,'info'),
(3,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','[]','unactioned','woocommerce-admin','2020-08-11 19:19:35',NULL,0,'plain','',0,'info'),
(4,'wc-admin-onboarding-profiler-reminder','update','en_US','Welcome to WooCommerce! Set up your store and start selling','We\'re here to help you going through the most important steps to get your store up and running.','[]','actioned','woocommerce-admin','2020-08-12 09:19:51',NULL,0,'plain','',0,'info'),
(5,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','[]','unactioned','woocommerce-admin','2020-08-13 19:28:45',NULL,0,'plain','',0,'info'),
(6,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"https://activeclubsolutions.net/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.','[]','unactioned','woocommerce-admin','2020-08-18 19:24:41',NULL,0,'plain','',0,'info'),
(7,'wc-admin-store-notice-giving-feedback-2','info','en_US','Give feedback','Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.','[]','unactioned','woocommerce-admin','2020-08-19 19:29:36',NULL,0,'plain','',0,'info'),
(8,'wc-admin-home-screen-feedback','info','en_US','Help us improve the WooCommerce Home screen','We\'d love your input to shape the future of the WooCommerce Home screen together. Feel free to share any feedback, ideas or suggestions that you have.','[]','unactioned','woocommerce-admin','2020-08-23 19:21:51',NULL,0,'plain','',0,'info'),
(9,'wc-admin-woocommerce-payments','marketing','en_US','Try the new way to get paid','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with WooCommerce Payments.','[]','unactioned','woocommerce-admin','2020-11-09 19:23:28',NULL,0,'plain','',0,'info'),
(10,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','[]','unactioned','woocommerce-admin','2020-11-09 19:23:28',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wpqk_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_wc_category_lookup`
--

DROP TABLE IF EXISTS `wpqk_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_wc_category_lookup`
--

LOCK TABLES `wpqk_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wpqk_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wpqk_wc_category_lookup` VALUES
(173,173);
/*!40000 ALTER TABLE `wpqk_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_wc_customer_lookup`
--

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

--
-- Dumping data for table `wpqk_wc_customer_lookup`
--

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

--
-- Table structure for table `wpqk_wc_download_log`
--

DROP TABLE IF EXISTS `wpqk_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`),
  CONSTRAINT `fk_wpqk_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `wpqk_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_wc_download_log`
--

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

--
-- Table structure for table `wpqk_wc_order_coupon_lookup`
--

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

--
-- Dumping data for table `wpqk_wc_order_coupon_lookup`
--

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

--
-- Table structure for table `wpqk_wc_order_product_lookup`
--

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

--
-- Dumping data for table `wpqk_wc_order_product_lookup`
--

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

--
-- Table structure for table `wpqk_wc_order_stats`
--

DROP TABLE IF EXISTS `wpqk_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT 0,
  `total_sales` double NOT NULL DEFAULT 0,
  `tax_total` double NOT NULL DEFAULT 0,
  `shipping_total` double NOT NULL DEFAULT 0,
  `net_total` double NOT NULL DEFAULT 0,
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_wc_order_stats`
--

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

--
-- Table structure for table `wpqk_wc_order_tax_lookup`
--

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

--
-- Dumping data for table `wpqk_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wpqk_wc_product_meta_lookup`
--

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

--
-- Dumping data for table `wpqk_wc_product_meta_lookup`
--

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

--
-- Table structure for table `wpqk_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wpqk_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_wc_reserved_stock` (
  `order_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT 0,
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_wc_reserved_stock`
--

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

--
-- Table structure for table `wpqk_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wpqk_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_wc_tax_rate_classes`
--

LOCK TABLES `wpqk_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wpqk_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wpqk_wc_tax_rate_classes` VALUES
(1,'Reduced rate','reduced-rate'),
(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wpqk_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_wc_webhooks`
--

DROP TABLE IF EXISTS `wpqk_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) NOT NULL,
  `name` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text NOT NULL,
  `secret` text NOT NULL,
  `topic` varchar(200) NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(6) NOT NULL,
  `failure_count` smallint(6) NOT NULL DEFAULT 0,
  `pending_delivery` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_wc_webhooks`
--

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

--
-- Table structure for table `wpqk_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext DEFAULT NULL,
  `truncated_key` char(7) NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_api_keys`
--

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

--
-- Table structure for table `wpqk_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_label` varchar(200) DEFAULT NULL,
  `attribute_type` varchar(20) NOT NULL,
  `attribute_orderby` varchar(20) NOT NULL,
  `attribute_public` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wpqk_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) NOT NULL,
  `user_email` varchar(200) NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wpqk_woocommerce_log`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(6) NOT NULL,
  `source` varchar(200) NOT NULL,
  `message` longtext NOT NULL,
  `context` longtext DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_log`
--

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

--
-- Table structure for table `wpqk_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wpqk_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wpqk_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text NOT NULL,
  `order_item_type` varchar(200) NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_order_items`
--

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

--
-- Table structure for table `wpqk_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wpqk_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wpqk_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) NOT NULL,
  `token` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wpqk_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) NOT NULL,
  `session_value` longtext NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_sessions`
--

LOCK TABLES `wpqk_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wpqk_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wpqk_woocommerce_sessions` VALUES
(9,'2','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:720:\"a:26:{s:2:\"id\";s:1:\"2\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:28:\"info@activeclubsolutions.net\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1620419552);
/*!40000 ALTER TABLE `wpqk_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wpqk_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wpqk_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wpqk_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wpqk_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wpqk_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) NOT NULL DEFAULT '',
  `tax_rate` varchar(8) NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(11) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(11) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_woocommerce_tax_rates`
--

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

--
-- Table structure for table `wpqk_wpeditor_settings`
--

DROP TABLE IF EXISTS `wpqk_wpeditor_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_wpeditor_settings` (
  `key` varchar(50) NOT NULL,
  `value` text NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_wpeditor_settings`
--

LOCK TABLES `wpqk_wpeditor_settings` WRITE;
/*!40000 ALTER TABLE `wpqk_wpeditor_settings` DISABLE KEYS */;
INSERT INTO `wpqk_wpeditor_settings` VALUES
('admin_page_roles','a:3:{s:8:\"settings\";s:14:\"manage_options\";s:12:\"theme-editor\";s:11:\"edit_themes\";s:13:\"plugin-editor\";s:12:\"edit_plugins\";}'),
('enable_plugin_active_line','1'),
('enable_plugin_line_numbers','1'),
('enable_plugin_line_wrapping','1'),
('enable_post_active_line','1'),
('enable_post_editor','1'),
('enable_post_line_numbers','1'),
('enable_post_line_wrapping','1'),
('enable_theme_active_line','1'),
('enable_theme_line_numbers','1'),
('enable_theme_line_wrapping','1'),
('hide_default_plugin_editor','1'),
('hide_default_theme_editor','1'),
('plugin_editor_allowed_extensions','php~js~css~txt~htm~html~jpg~jpeg~png~gif~sql~po~less~xml'),
('plugin_file_upload','1'),
('plugin_indent_unit','2'),
('post_indent_unit','2'),
('replace_plugin_edit_links','1'),
('run_overview','1'),
('theme_editor_allowed_extensions','php~js~css~txt~htm~html~jpg~jpeg~png~gif~sql~po~less~xml'),
('theme_file_upload','1'),
('theme_indent_unit','2'),
('upgrade','1'),
('version','1.2.6.3');
/*!40000 ALTER TABLE `wpqk_wpeditor_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_wprss_logs`
--

DROP TABLE IF EXISTS `wpqk_wprss_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_wprss_logs` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `level` varchar(30) NOT NULL,
  `message` text NOT NULL,
  `feed_id` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=839782 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_wprss_logs`
--

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

--
-- Table structure for table `wpqk_yoast_seo_links`
--

DROP TABLE IF EXISTS `wpqk_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpqk_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) NOT NULL,
  `post_id` bigint(20) unsigned NOT NULL,
  `target_post_id` bigint(20) unsigned NOT NULL,
  `type` varchar(8) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=14871 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpqk_yoast_seo_links`
--

LOCK TABLES `wpqk_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wpqk_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wpqk_yoast_seo_links` VALUES
(1501,'/video-demonstration-placeholder-club/video-placeholders-winter-selections/',2959,0,'internal'),
(1502,'/video-demonstration-placeholder-club/video-placeholders-spring-selections/',2959,2971,'internal'),
(1503,'/video-demonstration-placeholder-club/video-placeholders-summer-selections/',2959,2974,'internal'),
(1504,'/video-demonstration-placeholder-club/video-placeholders-autumn-selections/',2959,2976,'internal'),
(1505,'/winery-pos-features/ipad-winery-pos/',2959,1796,'internal'),
(1506,'/winery-pos-features/wine-club-management/',2959,1493,'internal'),
(1507,'/wine-club-software-features/free-expert-technical-support/',2959,0,'internal'),
(1508,'/wine-club-software-features/integrated-certified/',2959,0,'internal'),
(1509,'/wine-club-software-features/accounting/',2959,0,'internal'),
(1510,'/wine-club-software-features/marketing-crm-customer-service/',2959,0,'internal'),
(1511,'/wine-club-software-features/mobile-dashboards/',2959,0,'internal'),
(1512,'/winery-pos-features/winery-software-technology/',2959,1498,'internal'),
(1547,'/video-demonstration-placeholder-club/video-placeholders-winter-selections/',2957,2964,'internal'),
(1548,'/video-demonstration-placeholder-club/video-placeholders-spring-selections/',2957,2971,'internal'),
(1549,'/video-demonstration-placeholder-club/video-placeholders-summer-selections/',2957,2974,'internal'),
(1550,'/video-demonstration-placeholder-club/video-placeholders-autumn-selections/',2957,2976,'internal'),
(1551,'/winery-pos-features/ipad-winery-pos/',2957,1796,'internal'),
(1552,'/winery-pos-features/wine-club-management/',2957,1493,'internal'),
(1553,'/wine-club-software-features/free-expert-technical-support/',2957,0,'internal'),
(1554,'/wine-club-software-features/integrated-certified/',2957,0,'internal'),
(1555,'/wine-club-software-features/accounting/',2957,0,'internal'),
(1556,'/wine-club-software-features/marketing-crm-customer-service/',2957,0,'internal'),
(1557,'/wine-club-software-features/mobile-dashboards/',2957,0,'internal'),
(1558,'/winery-pos-features/winery-software-technology/',2957,1498,'internal'),
(1720,'/winery-pos-features/ipad-winery-pos/',2964,1796,'internal'),
(1721,'/winery-pos-features/wine-club-management/',2964,1493,'internal'),
(1722,'/wine-club-software-features/free-expert-technical-support/',2964,0,'internal'),
(1723,'/wine-club-software-features/integrated-certified/',2964,0,'internal'),
(1724,'/wine-club-software-features/accounting/',2964,0,'internal'),
(1725,'/wine-club-software-features/marketing-crm-customer-service/',2964,0,'internal'),
(1726,'/wine-club-software-features/mobile-dashboards/',2964,0,'internal'),
(1727,'/winery-pos-features/winery-software-technology/',2964,1498,'internal'),
(1728,'/video-demonstration-placeholder-club/',2964,2959,'internal'),
(1729,'/winery-pos-features/ipad-winery-pos/',2974,1796,'internal'),
(1730,'/winery-pos-features/wine-club-management/',2974,1493,'internal'),
(1731,'/wine-club-software-features/free-expert-technical-support/',2974,0,'internal'),
(1732,'/wine-club-software-features/integrated-certified/',2974,0,'internal'),
(1733,'/wine-club-software-features/accounting/',2974,0,'internal'),
(1734,'/wine-club-software-features/marketing-crm-customer-service/',2974,0,'internal'),
(1735,'/wine-club-software-features/mobile-dashboards/',2974,0,'internal'),
(1736,'/winery-pos-features/winery-software-technology/',2974,1498,'internal'),
(1737,'/video-demonstration-placeholder-club/',2974,2959,'internal'),
(1738,'/winery-pos-features/ipad-winery-pos/',2971,1796,'internal'),
(1739,'/winery-pos-features/wine-club-management/',2971,1493,'internal'),
(1740,'/wine-club-software-features/free-expert-technical-support/',2971,0,'internal'),
(1741,'/wine-club-software-features/integrated-certified/',2971,0,'internal'),
(1742,'/wine-club-software-features/accounting/',2971,0,'internal'),
(1743,'/wine-club-software-features/marketing-crm-customer-service/',2971,0,'internal'),
(1744,'/wine-club-software-features/mobile-dashboards/',2971,0,'internal'),
(1745,'/winery-pos-features/winery-software-technology/',2971,1498,'internal'),
(1746,'/video-demonstration-placeholder-club/',2971,2959,'internal'),
(1747,'/winery-pos-features/ipad-winery-pos/',2976,1796,'internal'),
(1748,'/winery-pos-features/wine-club-management/',2976,1493,'internal'),
(1749,'/wine-club-software-features/free-expert-technical-support/',2976,0,'internal'),
(1750,'/wine-club-software-features/integrated-certified/',2976,0,'internal'),
(1751,'/wine-club-software-features/accounting/',2976,0,'internal'),
(1752,'/wine-club-software-features/marketing-crm-customer-service/',2976,0,'internal'),
(1753,'/wine-club-software-features/mobile-dashboards/',2976,0,'internal'),
(1754,'/winery-pos-features/winery-software-technology/',2976,1498,'internal'),
(1755,'/video-demonstration-placeholder-club/',2976,2959,'internal'),
(2638,'http://www.bremerfamilywinery.com/wine',3006,0,'external'),
(2639,'http://nottinghamcellars.com/shop/',3006,0,'external'),
(2640,'http://www.stonehauswinery.com/shop/',3006,0,'external'),
(2641,'http://www.quailsgate.com/store/',3006,0,'external'),
(2642,'http://jigarwines.com/wine-shop/',3006,0,'external'),
(2643,'http://www.palousewinery.com/active-club-shopping-cart/',3006,0,'external'),
(2644,'http://www.dustedvalley.com/shop/',3006,0,'external'),
(2645,'http://rubyhillwinery.net/shop/',3006,0,'external'),
(2646,'http://www.rubinoestateswinery.com/shop/',3006,0,'external'),
(2647,'http://augustbriggswinery.com/wines/',3006,0,'external'),
(2648,'http://saffronfields.com/shop/',3006,0,'external'),
(2649,'http://heringerestates.com/wines/',3006,0,'external'),
(2650,'http://www3.cleverconcepts.net/wildcoyote.biz/shop/index.php',3006,0,'external'),
(2651,'http://http://ccwinery.com/wine-store/',3006,0,'external'),
(2652,'http://www.secureclub.net/RedCarWine/catalog_mp.aspx',3006,0,'external'),
(2653,'http://fenestrawinery.com/fw.php?p=fenestra-eStore',3006,0,'external'),
(2654,'http://gordonwines.com/shopping-cart.html',3006,0,'external'),
(2655,'http://huntcellars.com/shop-2/',3006,0,'external'),
(2656,'http://sharrottwinery.com/shop-online/',3006,0,'external'),
(2657,'http://helvetiawinery.com/shop',3006,0,'external'),
(2658,'http://ericross.com/catalogue-wine-selection/',3006,0,'external'),
(2659,'http://www.secureclubva.net/TreleavenWines/catalog_mp.aspx',3006,0,'external'),
(2660,'http://dueragazze.com/shoppingcart/',3006,0,'external'),
(2661,'http://wildgoosewinery.com/wine-shop/',3006,0,'external'),
(2982,'/winery-pos-features/ipad-winery-pos/',1493,1796,'internal'),
(2983,'/wine-club-software-features/free-expert-technical-support/',1493,0,'internal'),
(2984,'/wine-club-software-features/integrated-certified/',1493,0,'internal'),
(2985,'/wine-club-software-features/accounting/',1493,0,'internal'),
(2986,'/wine-club-software-features/marketing-crm-customer-service/',1493,0,'internal'),
(2987,'/wine-club-software-features/mobile-dashboards/',1493,0,'internal'),
(2988,'/winery-pos-features/winery-ecommerce/',1493,1497,'internal'),
(2989,'/winery-pos-features/winery-software-technology/',1493,1498,'internal'),
(3088,'https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/',2157,1796,'internal'),
(3089,'https://activeclubsolutions.net/winery-pos-features/wine-club-management/',2157,1493,'internal'),
(3090,'https://activeclubsolutions.net/winery-pos-features/winery-ecommerce/',2157,1497,'internal'),
(3091,'http://secureclub.net/demodb_6/dashboard.aspx',2157,0,'external'),
(3092,'/winery-pos-features/ipad-winery-pos/',2157,1796,'internal'),
(3093,'/winery-pos-features/wine-club-management/',2157,1493,'internal'),
(3094,'/wine-club-software-features/free-expert-technical-support/',2157,0,'internal'),
(3095,'/wine-club-software-features/integrated-certified/',2157,0,'internal'),
(3096,'/wine-club-software-features/accounting/',2157,0,'internal'),
(3097,'/wine-club-software-features/marketing-crm-customer-service/',2157,0,'internal'),
(3098,'/winery-pos-features/winery-ecommerce/',2157,1497,'internal'),
(3099,'/winery-pos-features/winery-software-technology/',2157,1498,'internal'),
(4020,'#',3345,0,'internal'),
(4021,'https://activeclubsolutions.net/wp-content/uploads/2018/07/my-vine-feature-1024x569.jpg',3345,0,'internal'),
(4022,'#',3345,0,'internal'),
(4023,'#',3345,0,'internal'),
(4024,'https://activeclubsolutions.net/wp-content/uploads/2018/07/port-thumb-7-1024x714.jpg',3345,0,'internal'),
(4025,'#',3345,0,'internal'),
(7896,'https://activeclubsolutions.net/winery-pos-wine-club-software-demo/',1796,1438,'internal'),
(7897,'https://activeclubsolutions.net/winery-pos-wine-club-software-demo/',1796,1438,'internal'),
(7898,'https://activeclubsolutions.net/winery-pos-wine-club-software-demo/',1796,1438,'internal'),
(7899,'https://activeclubsolutions.net/winery-pos-wine-club-software-demo/',1796,1438,'internal'),
(7900,'https://activeclubsolutions.net/winery-pos-wine-club-software-demo/',1796,1438,'internal'),
(7901,'https://activeclubsolutions.net/winery-pos-wine-club-software-demo/',1796,1438,'internal'),
(7902,'https://activeclubsolutions.net/winery-pos-wine-club-software-demo/',1796,1438,'internal'),
(7903,'http://anywherecommerce.com/products/card-reader-chip-sign-walker-2',1796,0,'external'),
(7904,'/winery-pos-features/club-management/',1796,0,'internal'),
(7905,'/club-software-features/free-expert-technical-support/',1796,0,'internal'),
(7906,'/club-software-features/integrated-certified/',1796,0,'internal'),
(7907,'/club-software-features/accounting/',1796,0,'internal'),
(7908,'/club-software-features/marketing-crm-customer-service/',1796,0,'internal'),
(7909,'/club-software-features/mobile-dashboards/',1796,0,'internal'),
(7910,'/winery-pos-features/winery-ecommerce/',1796,1497,'internal'),
(7911,'/winery-pos-features/winery-software-technology/',1796,1498,'internal'),
(7912,'/wp-content/uploads/2017/04/ACSvsVin65-POS_2.png',1796,0,'internal'),
(7913,'/wp-content/uploads/2017/04/ACSvsVinSuite-POS.png',1796,0,'internal'),
(7914,'/wp-content/uploads/2017/04/ACSvsOrderPort-POS.png',1796,0,'internal'),
(7915,'/wp-content/uploads/2017/04/ACSvsRevel-POS.png',1796,0,'internal'),
(7916,'/wp-content/uploads/2017/01/POSNewOrder.png',1796,0,'internal'),
(7917,'/wp-content/uploads/2017/01/POSCheckout.png',1796,0,'internal'),
(7918,'/wp-content/uploads/2017/01/POSOrderHistory.png',1796,0,'internal'),
(7919,'/wp-content/uploads/2017/01/POSPending.png',1796,0,'internal'),
(7920,'/wp-content/uploads/2017/01/POSCustomer.png',1796,0,'internal'),
(7921,'/wp-content/uploads/2017/01/POSWholesale.png',1796,0,'internal'),
(7922,'/wp-content/uploads/2017/04/POSTransfer.png',1796,0,'internal'),
(7923,'/wp-content/uploads/2017/04/POSAddInventory.png',1796,0,'internal'),
(7924,'/wp-content/uploads/2017/04/POSLocation.png',1796,0,'internal'),
(8069,'mailto:info@shipcompliant.com',1591,0,'external'),
(8070,'http://www.shipcompliant.com/',1591,0,'external'),
(8071,'mailto:info@complianceservice.com',1591,0,'external'),
(8072,'http://www.complianceservice.com/',1591,0,'external'),
(8073,'mailto:info@winecompliancepro.com',1591,0,'external'),
(8074,'mailto:info@shipcompliant.com',1591,0,'external'),
(8075,'mailto:support@winecompliancepro.com',1591,0,'external'),
(8076,'http://www.winecompliancepro.com',1591,0,'external'),
(8077,'mailto:info@compli-beverage.com',1591,0,'external'),
(8078,'http://info@compli-beverage.com',1591,0,'external'),
(8079,'/winery-pos-features/accounting',1591,1590,'internal'),
(8080,'/active-club-solutions-partners/misc-integrated-services',1591,1593,'internal'),
(8081,'/active-club-solutions-partners/payment-processing-partners',1591,1589,'internal'),
(8082,'/active-club-solutions-partners/shipping-fulfillment-partners',1591,1587,'internal'),
(8083,'/active-club-solutions-partners/website-marketing-media',1591,1592,'internal'),
(8084,'http://cardintegrators.com/',3447,0,'external'),
(8085,'/winery-pos-features/accounting',3447,1590,'internal'),
(8086,'/active-club-solutions-partners/compliance-providers',3447,1591,'internal'),
(8087,'/active-club-solutions-partners/payment-processing-partners',3447,1589,'internal'),
(8088,'/active-club-solutions-partners/shipping-fulfillment-partners',3447,1587,'internal'),
(8089,'/active-club-solutions-partners/website-marketing-media',3447,1592,'internal'),
(8090,'mailto:sales@solutrix.com',1593,0,'external'),
(8091,'http://www.solutrix.com',1593,0,'external'),
(8092,'http://www.noaa.gov/',1593,0,'external'),
(8093,'http://www.zebra.com/',1593,0,'external'),
(8094,'/winery-pos-features/accounting',1593,1590,'internal'),
(8095,'/active-club-solutions-partners/compliance-providers',1593,1591,'internal'),
(8096,'/active-club-solutions-partners/loyalty-gift-card-printing',1593,0,'internal'),
(8097,'/active-club-solutions-partners/payment-processing-partners',1593,1589,'internal'),
(8098,'/active-club-solutions-partners/shipping-fulfillment-partners',1593,1587,'internal'),
(8099,'/active-club-solutions-partners/website-marketing-media',1593,1592,'internal'),
(8112,'http://www.fedex.com/us/international/wine-shipping/get-started/index.html',1587,0,'external'),
(8113,'http://www.ups.com/',1587,0,'external'),
(8114,'mailto:truffing@gso.com',1587,0,'external'),
(8115,'http://www.gso.com/',1587,0,'external'),
(8116,'http://www.alexandervalleycellars.com',1587,0,'external'),
(8117,'http://www.bacchusfulfillment.com',1587,0,'external'),
(8118,'http://www.copperpeaklogistics.com',1587,0,'external'),
(8119,'http://www.oregonwineservices.com',1587,0,'external'),
(8120,'http://www.winedirect.com',1587,0,'external'),
(8121,'http://www.vynapse.com',1587,0,'external'),
(8122,'http://wineshipping.com',1587,0,'external'),
(8123,'http://www.winecollc.com',1587,0,'external'),
(8124,'www.winecountryshipping.com',1587,0,'internal'),
(8125,'/winery-pos-features/accounting',1587,1590,'internal'),
(8126,'/active-club-solutions-partners/compliance-providers',1587,1591,'internal'),
(8127,'/active-club-solutions-partners/misc-integrated-services',1587,1593,'internal'),
(8128,'/active-club-solutions-partners/payment-processing-partners',1587,1589,'internal'),
(8129,'/active-club-solutions-partners/website-marketing-media',1587,1592,'internal'),
(8130,'http://www.constantcontact.com/',1592,0,'external'),
(8131,'http://www.mailchimp.com/',1592,0,'external'),
(8132,'http://www.socketlabs.com/',1592,0,'external'),
(8133,'http://www.verticalresponse.com/',1592,0,'external'),
(8134,'/winery-pos-features/accounting',1592,1590,'internal'),
(8135,'/active-club-solutions-partners/compliance-providers',1592,1591,'internal'),
(8136,'/active-club-solutions-partners/misc-integrated-services',1592,1593,'internal'),
(8137,'/active-club-solutions-partners/payment-processing-partners',1592,1589,'internal'),
(8138,'/active-club-solutions-partners/shipping-fulfillment-partners',1592,1587,'internal'),
(8183,'mailto:info@activeclubsolutions.net',508,0,'external'),
(8184,'https://activeclubsolutions.net',508,848,'internal'),
(8185,'/feed',508,0,'internal'),
(8186,'http://facebook.com/activeclubsolutions',508,0,'external'),
(8187,'http://youtube.com/activeclubsolutions',508,0,'external'),
(8228,'https://activeclubsolutions.net/winery-pos-features',1495,1435,'internal'),
(8229,'/active-club-solutions-partners/',1495,1436,'internal'),
(8230,'/winery-pos-features/ipad-winery-pos/',1495,1796,'internal'),
(8231,'/winery-pos-features/wine-club-management/',1495,1493,'internal'),
(8232,'/wine-club-software-features/free-expert-technical-support/',1495,0,'internal'),
(8233,'/wine-club-software-features/accounting/',1495,0,'internal'),
(8234,'/wine-club-software-features/marketing-crm-customer-service/',1495,0,'internal'),
(8235,'/wine-club-software-features/mobile-dashboards/',1495,0,'internal'),
(8236,'/winery-pos-features/winery-ecommerce/',1495,1497,'internal'),
(8237,'/winery-pos-features/winery-software-technology/',1495,1498,'internal'),
(8470,'/winery-pos-features/ipad-winery-pos/',3587,1796,'internal'),
(8471,'/winery-pos-features/wine-club-management/',3587,1493,'internal'),
(8472,'/sample-ecommerce/signup-kiosk',3587,3593,'internal'),
(8473,'/sample-ecommerce/account-management',3587,3591,'internal'),
(8474,'/sample-ecommerce/member-choice',3587,3594,'internal'),
(8475,'/sample-ecommerce/shopping-cart',3587,3589,'internal'),
(8476,'/winery-pos-features/ipad-winery-pos/',3587,1796,'internal'),
(8477,'/winery-pos-features/wine-club-management/',3587,1493,'internal'),
(8478,'/wine-club-software-features/free-expert-technical-support/',3587,0,'internal'),
(8479,'/wine-club-software-features/integrated-certified/',3587,0,'internal'),
(8480,'/wine-club-software-features/accounting/',3587,0,'internal'),
(8481,'/wine-club-software-features/marketing-crm-customer-service/',3587,0,'internal'),
(8482,'/wine-club-software-features/mobile-dashboards/',3587,0,'internal'),
(8483,'/winery-pos-features/platform/web-design-portfolio/',3587,3275,'internal'),
(8484,'/winery-pos-features/winery-software-technology/',3587,1498,'internal'),
(8678,'http://secureclub.net/help/train/ACM_LG.pdf',3655,0,'external'),
(8679,'http://secureclub.net/help/acm/index.html',3655,0,'external'),
(8680,'http://secureclub.net/help/acm/ACM_User\'s_Guide.pdf',3655,0,'external'),
(8681,'http://secureclub.net/help/acm/UG/ug_RDC.htm',3655,0,'external'),
(8682,'http://secureclub.net/help/acm/UG/ug_ftp.htm',3655,0,'external'),
(8683,'http://secureclub.net/help/acm/UG/ug_Job_list.htm',3655,0,'external'),
(8684,'http://secureclub.net/help/acm/UG/ug_Ccard_gateway.htm#vaults',3655,0,'external'),
(8685,'http://secureclub.net/help/acm/UG/ug_Reports_dash.htm',3655,0,'external'),
(8686,'http://secureclub.net/help/acm/UG/ug_Mail.htm',3655,0,'external'),
(8687,'http://secureclub.net/help/technotes/index.html',3655,0,'external'),
(8688,'http://secureclub.net/help/acm/cklst/cklst_pkgclub.html',3655,0,'external'),
(8689,'http://secureclub.net/help/acm/cklst/cklst_selclub.html',3655,0,'external'),
(8690,'http://secureclub.net/help/qba/qba_setup.htm',3655,0,'external'),
(8691,'http://secureclub.net/help/acctg/support/acctg_setup.pdf',3655,0,'external'),
(8692,'http://secureclub.net/help/qba/index.html',3655,0,'external'),
(8693,'http://secureclub.net/help/acctg/qba/acctg_QBA.pdf',3655,0,'external'),
(8694,'http://secureclub.net/help/qba/qba_faq.htm',3655,0,'external'),
(8695,'http://secureclub.net/help/http://www.youtube.com/watch?v=LI5G157f4lM',3655,0,'external'),
(8696,'http://secureclub.net/help/pos/Hardware_setup.html',3655,0,'external'),
(8697,'http://secureclub.net/help/pos/index.html',3655,0,'external'),
(8698,'http://secureclub.net/help/pos/pos_trouble.html',3655,0,'external'),
(8699,'http://secureclub.net/help/pos/Release_notes.html',3655,0,'external'),
(8700,'http://secureclub.net/help/https://activeclubsolutions.net/videotutorials/',3655,0,'external'),
(8701,'http://secureclub.net/help/http://www.secureclub.net/webservices/customerservice.asmx',3655,0,'external'),
(8702,'http://secureclub.net/help/http://www.secureclub.net/Help/cart/cart_setup.html',3655,0,'external'),
(8703,'http://secureclub.net/help/ftp://ActiveClub:Olivia15@12.199.164.12/Help%20Documents/',3655,0,'external'),
(9163,'http://i0.wp.com/activeclubsolutions.net/wp-content/uploads/2015/01/POS-portal.jpg',1777,0,'external'),
(9164,'http://partner.posportal.com/activeclubsolutions/acs/',1777,0,'external'),
(9165,'/winery-pos-features/accounting',1777,1590,'internal'),
(9166,'/active-club-solutions-partners/compliance-providers',1777,1591,'internal'),
(9167,'/active-club-solutions-partners/misc-integrated-services',1777,1593,'internal'),
(9168,'/active-club-solutions-partners/payment-processing-partners',1777,1589,'internal'),
(9169,'/active-club-solutions-partners/shipping-fulfillment-partners',1777,1587,'internal'),
(9170,'/active-club-solutions-partners/web-design-agencies',1777,0,'internal'),
(9171,'/active-club-solutions-partners/website-marketing-media',1777,1592,'internal'),
(10528,'/winery-pos-features/ipad-winery-pos/',1868,1796,'internal'),
(10529,'/winery-pos-features/winery-software-technology/',1868,1498,'internal'),
(10530,'/winery-pos-features/winery-ecommerce/',1868,1497,'internal'),
(10531,'/winery-pos-features/winery-ecommerce/',1868,1497,'internal'),
(11812,'https://activeclubsolutions.net/winery-pos-features',3676,1435,'internal'),
(11813,'http://www.amazon.com/gp/product/B01HRJRXZQ/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01HRJRXZQ&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=7dd3f106ca73637e9066b4a65032035f',3676,0,'external'),
(11814,'http://www.amazon.com/gp/product/B01HRJRXZQ/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01HRJRXZQ&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=6e7729722f62e690f859d04788c0603c',3676,0,'external'),
(11815,'http://www.amazon.com/gp/product/B018SPFE72/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B018SPFE72&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=2800e34908c1c20921e0960878878d66',3676,0,'external'),
(11816,'http://www.amazon.com/gp/product/B018SPH7WM/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B018SPH7WM&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=4d6b46c25b0a69aef1a75517d650aec9',3676,0,'external'),
(11817,'http://www.amazon.com/gp/product/B07CZMMQPM/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07CZMMQPM&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=fdf888ef9f81b07b8a5e27feb1af1a30',3676,0,'external'),
(11818,'http://www.amazon.com/gp/product/B07CZMMQPM/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07CZMMQPM&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=975b6d94c0b14222d6edc9c44219fda2',3676,0,'external'),
(11819,'http://www.starmicronics.com/pages/All-Products',3676,0,'external'),
(11820,'http://www.amazon.com/gp/product/B01IK7LVDY/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01IK7LVDY&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=ac6ad219bdecfd4bad767d34e7873507',3676,0,'external'),
(11821,'http://www.amazon.com/gp/product/B01IK7LVDY/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01IK7LVDY&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=164814e7ff63fa1aa789f6427931fb54',3676,0,'external'),
(11822,'http://www.socketmobile.com/products',3676,0,'external'),
(11823,'http://www.amazon.com/gp/product/B07GC9F2X9/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07GC9F2X9&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=27e4479f8cdfd2cc1b9897632f06f6a7',3676,0,'external'),
(11824,'http://www.amazon.com/gp/product/B07GC9F2X9/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07GC9F2X9&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=4518848b6391ff9859494425df7b6868',3676,0,'external'),
(11825,'http://www.amazon.com/gp/product/B07GC95B6V/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07GC95B6V&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=301332d0c232fe2cecdfb63120420e86',3676,0,'external'),
(11826,'http://www.amazon.com/gp/product/B07GC95B6V/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B07GC95B6V&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=4950d0a28a10efebbdfbb4b90c55f559',3676,0,'external'),
(11827,'http://www.amazon.com/gp/product/B01K1JTCNU/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01K1JTCNU&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=f7c9b0e84a881edf243567cd018f3eaa',3676,0,'external'),
(11828,'http://www.amazon.com/gp/product/B01K1JTCNU/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B01K1JTCNU&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=a2c5456a6a6547b4e848d9c9f05ebbfe',3676,0,'external'),
(11829,'http://www.amazon.com/gp/product/B06VY6FXMM/ref=as_li_tl?ie=UTF8&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B06VY6FXMM&amp;linkCode=as2&amp;tag=active80c-20&amp;linkId=6b02563d5a8f55ff8454830ea8c1fae1',3676,0,'external'),
(11830,'http://www.amazon.com/tryAB?ref_=assoc_tag_ph_1524210604088&amp;_encoding=UTF8&amp;camp=1789&amp;creative=9325&amp;linkCode=pf4&amp;tag=active80c-20&amp;linkId=2cbc536d3e31e8ffe2ecff211c89fdac',3676,0,'external'),
(11831,'/winery-pos-features/ipad-winery-pos/',3676,1796,'internal'),
(12035,'/winery-pos-features/winery-ecommerce/shopping-cart-7',3762,3158,'internal'),
(12036,'/winery-pos-features/winery-ecommerce/online-example-store-columbia',3762,3748,'internal'),
(12037,'/winery-pos-features/winery-ecommerce/shopping-cart-5',3762,3024,'internal'),
(12038,'/winery-pos-features/winery-ecommerce/shopping-cart-2',3762,2084,'internal'),
(12039,'/winery-pos-features/winery-ecommerce/online-example-store-finger-lakes',3762,3756,'internal'),
(12040,'/winery-pos-features/winery-ecommerce/shopping-cart-1',3762,2066,'internal'),
(12041,'/winery-pos-features/winery-ecommerce/shopping-cart-6',3762,3056,'internal'),
(12042,'/winery-pos-features/winery-ecommerce/shopping-cart-8',3762,3162,'internal'),
(12043,'/winery-pos-features/winery-ecommerce/shopping-cart-9',3762,3199,'internal'),
(12044,'/winery-pos-features/winery-ecommerce/online-example-store-urban',3762,3736,'internal'),
(12045,'/winery-pos-features/winery-ecommerce/shopping-cart-4',3762,2485,'internal'),
(12286,'http://quickbooks.intuit.com/',1590,0,'external'),
(12287,'/active-club-solutions-partners/compliance-providers',1590,1591,'internal'),
(12288,'/active-club-solutions-partners/misc-integrated-services',1590,1593,'internal'),
(12289,'/active-club-solutions-partners/pos-portal',1590,1777,'internal'),
(12290,'/active-club-solutions-partners/payment-processing-partners',1590,1589,'internal'),
(12291,'/active-club-solutions-partners/shipping-fulfillment-partners',1590,1587,'internal'),
(12292,'/active-club-solutions-partners/web-design-agencies',1590,0,'internal'),
(12293,'/active-club-solutions-partners/website-marketing-media',1590,1592,'internal'),
(12366,'/wine-club-software-features/winery-ecommerce/',1498,0,'internal'),
(12367,'/active-club-solutions-is-proud-to-present-remote-active-club-manager/',1498,0,'internal'),
(12368,'/winery-pos-features/ipad-winery-pos/',1498,1796,'internal'),
(12369,'/winery-pos-features/wine-club-management/',1498,1493,'internal'),
(12370,'/wine-club-software-features/free-expert-technical-support/',1498,0,'internal'),
(12371,'/wine-club-software-features/integrated-certified/',1498,0,'internal'),
(12372,'/wine-club-software-features/accounting/',1498,0,'internal'),
(12373,'/wine-club-software-features/marketing-crm-customer-service/',1498,0,'internal'),
(12374,'/wine-club-software-features/mobile-dashboards/',1498,0,'internal'),
(12375,'/winery-pos-features/winery-ecommerce/',1498,1497,'internal'),
(12377,'/winery-pos-features/ipad-winery-pos/',1753,1796,'internal'),
(12378,'/winery-pos-features/ipad-winery-pos/',1753,1796,'internal'),
(12379,'/winery-pos-features/ipad-winery-pos/',1753,1796,'internal'),
(12380,'/winery-pos-features/accounting/',1753,1590,'internal'),
(12397,'/winery-software-pricing/all-in-one-tasting-room-solution-pricing/',1867,1868,'internal'),
(12398,'/winery-software-pricing/wine-club-software-pricing',1867,1870,'internal'),
(12399,'/winery-software-pricing/activeclub-winery-pos/',1867,1753,'internal'),
(12400,'/winery-software-pricing/winery-website-shopping-cart/',1867,1459,'internal'),
(12494,'http://www.bbpos.com/',2738,0,'external'),
(12495,'http://www.bbpos.com/',2738,0,'external'),
(12655,'/winery-pos-features/ipad-winery-pos/',1494,1796,'internal'),
(12656,'/winery-pos-features/wine-club-management/',1494,1493,'internal'),
(12657,'/wine-club-software-features/free-expert-technical-support/',1494,0,'internal'),
(12658,'/wine-club-software-features/integrated-certified/',1494,0,'internal'),
(12659,'/wine-club-software-features/accounting/',1494,0,'internal'),
(12660,'/wine-club-software-features/mobile-dashboards/',1494,0,'internal'),
(12661,'/winery-pos-features/winery-ecommerce/',1494,1497,'internal'),
(12662,'/winery-pos-features/winery-software-technology/',1494,1498,'internal'),
(12694,'https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/',1497,1796,'internal'),
(12695,'https://activeclubsolutions.net/winery-pos-features/wine-club-management/',1497,1493,'internal'),
(12696,'/winery-pos-features/winery-ecommerce/shopping-cart-7',1497,3158,'internal'),
(12697,'/winery-pos-features/winery-ecommerce/online-example-store-columbia',1497,3748,'internal'),
(12698,'/winery-pos-features/winery-ecommerce/shopping-cart-5',1497,3024,'internal'),
(12699,'/winery-pos-features/winery-ecommerce/shopping-cart-2',1497,2084,'internal'),
(12700,'/winery-pos-features/winery-ecommerce/online-example-store-finger-lakes',1497,3756,'internal'),
(12701,'/winery-pos-features/winery-ecommerce/shopping-cart-1',1497,2066,'internal'),
(12702,'/winery-pos-features/winery-ecommerce/shopping-cart-6',1497,3056,'internal'),
(12703,'/winery-pos-features/winery-ecommerce/shopping-cart-8',1497,3162,'internal'),
(12704,'/winery-pos-features/winery-ecommerce/shopping-cart-9',1497,3199,'internal'),
(12705,'/winery-pos-features/winery-ecommerce/online-example-store-urban',1497,3736,'internal'),
(12706,'/winery-pos-features/winery-ecommerce/shopping-cart-4',1497,2485,'internal'),
(12707,'/wine-club-software-pricing/winery-website-shopping-cart/',1497,0,'internal'),
(12708,'/winery-pos-features/winery-ecommerce/club-signup/',1497,2122,'internal'),
(12709,'/winery-pos-features/winery-ecommerce/manage-account/',1497,2194,'internal'),
(12710,'/winery-pos-features/winery-ecommerce/member-choice/',1497,2407,'internal'),
(12711,'/winery-pos-features/winery-ecommerce/wholesale/',1497,0,'internal'),
(12712,'http://www.facebook.com/activeclubsolutions',1497,0,'external'),
(12713,'/winery-pos-features/winery-ecommerce/account-memberchoice/',1497,2424,'internal'),
(12714,'/winery-pos-features/winery-ecommerce/cart-manage/',1497,2450,'internal'),
(12715,'/winery-pos-features/winery-ecommerce/manage-cart/',1497,2454,'internal'),
(12716,'/winery-pos-features/ipad-winery-pos/',1497,1796,'internal'),
(12717,'/winery-pos-features/wine-club-management/',1497,1493,'internal'),
(12718,'/wine-club-software-features/free-expert-technical-support/',1497,0,'internal'),
(12719,'/wine-club-software-features/integrated-certified/',1497,0,'internal'),
(12720,'/wine-club-software-features/accounting/',1497,0,'internal'),
(12721,'/wine-club-software-features/marketing-crm-customer-service/',1497,0,'internal'),
(12722,'/wine-club-software-features/mobile-dashboards/',1497,0,'internal'),
(12723,'/winery-pos-features/platform/web-design-portfolio/',1497,3275,'internal'),
(12724,'/winery-pos-features/winery-software-technology/',1497,1498,'internal'),
(12741,'https://UserWay.org',3817,0,'external'),
(12742,'mailto:info@activeclubsolutions.com',3817,0,'external'),
(12807,'mailto:Channelsupport@worldpay.com',1589,0,'external'),
(12808,'http://www.worldpay.com',1589,0,'external'),
(12809,'mailto:startnow@openedgepay.com',1589,0,'external'),
(12810,'http://www.openedgepayment.com',1589,0,'external'),
(12811,'/winery-pos-features/accounting',1589,1590,'internal'),
(12812,'/active-club-solutions-partners/compliance-providers',1589,1591,'internal'),
(12813,'/active-club-solutions-partners/misc-integrated-services',1589,1593,'internal'),
(12814,'/active-club-solutions-partners/shipping-fulfillment-partners',1589,1587,'internal'),
(12815,'/active-club-solutions-partners/website-marketing-media',1589,1592,'internal'),
(13405,'http://shareasale.com/r.cfm?b=742056&amp;u=1835062&amp;m=41388&amp;urllink=&amp;afftrack=',3275,0,'external'),
(13406,'/contact-active-club-solutions/',3275,508,'internal'),
(13407,'https://activeclubsolutions.net/wp-content/uploads/2018/07/feature-image-Q.jpg',3275,0,'internal'),
(13408,'#',3275,0,'internal'),
(13409,'https://activeclubsolutions.net/wp-content/uploads/2018/07/feature-image-5by10-4.jpg',3275,0,'internal'),
(13410,'#',3275,0,'internal'),
(13411,'https://activeclubsolutions.net/wp-content/uploads/2018/07/feature-image-byron-1.jpg',3275,0,'internal'),
(13412,'#',3275,0,'internal'),
(13413,'https://activeclubsolutions.net/wp-content/uploads/2018/07/feature-image-my-vine-1.jpg',3275,0,'internal'),
(13414,'#',3275,0,'internal'),
(13415,'https://activeclubsolutions.net/wp-content/uploads/2018/08/feature-image-the-bench.jpg',3275,0,'internal'),
(13416,'#',3275,0,'internal'),
(13417,'https://activeclubsolutions.net/wp-content/uploads/2018/08/feature-image-cambria.jpg',3275,0,'internal'),
(13418,'#',3275,0,'internal'),
(13419,'https://activeclubsolutions.net/wp-content/uploads/2018/08/feature-image-le-crema.jpg',3275,0,'internal'),
(13420,'#',3275,0,'internal'),
(13421,'http://shareasale.com/r.cfm?b=742056&amp;u=1835062&amp;m=41388&amp;urllink=&amp;afftrack=',3275,0,'external'),
(13529,'https://www.secureclub.net/Help/amo/?ml_ImagesList.html#template_resize',4019,0,'external'),
(13530,'https://player.vimeo.com/video/669275646',4019,0,'external'),
(13531,'https://www.secureclub.net/Help/amo/ml_Editor.html#sms',3902,0,'external'),
(13532,'https://player.vimeo.com/video/578594330',3902,0,'external'),
(13533,'https://player.vimeo.com/video/578594330',3902,0,'external'),
(13534,'https://www.secureclub.net/Help/amo/?ml_ImagesList.html#template_resize',3997,0,'external'),
(13535,'https://www.secureclub.net/Help/amo/?ml_TemplateData.html#content',3997,0,'external'),
(13536,'https://www.secureclub.net/Help/qba/?qba_acm_ifset2.htm#unearned',3981,0,'external'),
(13537,'https://www.secureclub.net/Help/amo/?ml_ClubData.html#defaults',3964,0,'external'),
(13538,'https://secureclub.net/Help/amo/?ml_ImagesList.html',3971,0,'external'),
(13539,'https://www.secureclub.net/Help/amo/?ml_AdminList.html',3961,0,'external'),
(13540,'https://www.secureclub.net/Help/amo/?ml_AdminList-Locations.html',3961,0,'external'),
(13541,'https://www.secureclub.net/Help/amo/?ml_AdminList-Drawer.html',3961,0,'external'),
(13542,'https://www.secureclub.net/Help/amo/?ml_AdminList-Ship.html',3961,0,'external'),
(13543,'https://www.secureclub.net/Help/amo/?ml_AdminList-Tax.html',3961,0,'external'),
(13544,'https://www.secureclub.net/Help/amo/?ml_AdminList.html',3953,0,'external'),
(13545,'https://www.secureclub.net/Help/amo/?ml_AdminList-Email.html',3953,0,'external'),
(13546,'https://www.secureclub.net/Help/amo/?ml_AdminList-POS.html',3953,0,'external'),
(13547,'https://www.secureclub.net/Help/amo/?ml_AdminList-Disc.html',3953,0,'external'),
(13548,'https://www.secureclub.net/Help/amo/?ml_AdminList-Headings.html',3937,0,'external'),
(13549,'https://www.secureclub.net/Help/amo/?ml_Views-texted.html',3926,0,'external'),
(13550,'http://www.secureclub.net/Help/amo/?ml_StoreList-Actions-labels.html',3924,0,'external'),
(13551,'https://www.secureclub.net/Help/amo/?ml_ReportsList.html',3921,0,'external'),
(13552,'https://www.secureclub.net/Help/amo/ml_CustList-Account.html#loyalty',3910,0,'external'),
(13553,'https://www.secureclub.net/Help/amo/?ml_StoreList-Reports.html',3897,0,'external'),
(13554,'https://www.secureclub.net/Help/amo/?ml_AdminList-Users.html#actions',3887,0,'external'),
(13556,'https://activeclubsolutions.net/wp-content/uploads/2019/05/SNAyliffe-2-237-x-316.jpg',3680,0,'internal'),
(13557,'https://activeclubsolutions.net/wp-content/uploads/2019/03/emailstatistics.png',3661,0,'internal'),
(13558,'https://activeclubsolutions.net/wp-content/uploads/2019/04/digi-know-website-design-email-campaign-2-002-600-x-345.jpg',3673,0,'internal'),
(13559,'https://activeclubsolutions.net/wp-content/uploads/2018/10/black-gift-card.jpg',3466,0,'internal'),
(13560,'https://activeclubsolutions.net/wp-content/uploads/2014/07/news8.jpg',3426,0,'internal'),
(13561,'https://activeclubsolutions.net/wp-content/uploads/2018/08/No-DUPS_pic.png',3424,0,'internal'),
(13562,'https://activeclubsolutions.net/wp-content/uploads/2018/07/MollyGregg-Apelgren1-368-x-358.jpg',3267,0,'internal'),
(13563,'https://activeclubsolutions.net/wp-content/uploads/2018/07/RED-CAR-TR-600-x-400.jpg',3188,0,'internal'),
(13564,'https://activeclubsolutions.net/wp-content/uploads/2018/06/Dusted-Valley-TR_woodinville.jpg',3117,0,'internal'),
(13565,'https://activeclubsolutions.net/wp-content/uploads/2018/06/online-shopping-cart-software.jpg',3113,0,'internal'),
(13566,'https://activeclubsolutions.net/wp-content/uploads/2018/06/loyalty-card-pic.jpg',3108,0,'internal'),
(13567,'https://activeclubsolutions.net/wp-content/uploads/2018/05/treasure-chest.jpg',3102,0,'internal'),
(13568,'https://activeclubsolutions.net/wp-content/uploads/2018/05/is.jpg',3089,0,'internal'),
(13569,'https://activeclubsolutions.net/wp-content/uploads/2018/05/duskhomepagex380.png',3087,0,'internal'),
(13570,'https://activeclubsolutions.net/wp-content/uploads/2018/05/Cloud-computing.jpg',3084,0,'internal'),
(13571,'https://activeclubsolutions.net/wp-content/uploads/2018/05/tipping.jpg',3082,0,'internal'),
(13572,'https://activeclubsolutions.net/wp-content/uploads/2018/05/ruby-hill-winery-outdoor.jpg',3080,0,'internal'),
(13573,'https://activeclubsolutions.net/wp-content/uploads/2018/05/BIG-DATA-pic_ACS.png',3078,0,'internal'),
(13574,'https://activeclubsolutions.net/wp-content/uploads/2017/01/wizard160x160.png',3077,0,'internal'),
(13575,'https://activeclubsolutions.net/wp-content/uploads/2018/05/th_robot.jpg',3075,0,'internal'),
(13576,'https://activeclubsolutions.net/wp-content/uploads/2018/05/Dan-at-Unified-2018.jpg',3073,0,'internal'),
(13577,'https://activeclubsolutions.net/wp-content/uploads/2018/05/shutterstock_486675022_People-wine-sunset.jpg',3070,0,'internal'),
(13578,'https://activeclubsolutions.net/wp-content/uploads/2018/01/Debbie-Klimeck.jpg',2929,0,'internal'),
(13579,'http://secureclub.net/demodb_6/dashboard.aspx',2061,0,'external'),
(13580,'http://youtu.be/JECRXli-yM8',1896,0,'external'),
(13581,'http://www.facebook.com/ActiveClubSolutions/posts/1024342094270015#',1896,0,'external'),
(13582,'http://www.facebook.com/ActiveClubSolutions/posts/1024342094270015#',1896,0,'external'),
(13583,'mailto:info@activeclubsolutions.net',1811,0,'external'),
(13584,'mailto:&quot;info@activeclubsolutions.net&quot;',1786,0,'external'),
(13585,'https://activeclubsolutions.net/wp-content/uploads/2015/01/iPad-screenshot.png',1786,0,'internal'),
(13586,'http://www.registrationboss.com/accounts/login/?next=/midwest-grape-and-wine-craft-brew-2015',1782,0,'external'),
(13587,'http://www.google.com/maps/place/St.+Charles+Convention+Center/@38.76979,-90.502853,17z/data=!3m1!4b1!4m2!3m1!1s0x87df2ee681ccb085:0x1031c683ef729bd6',1782,0,'external'),
(13588,'http://www.registrationboss.com/accounts/login/?next=/craft-beverages-unlimited-2015',1780,0,'external'),
(13589,'http://www.google.com/maps/place/Greater+Richmond+Convention+Center/@37.545124,-77.436664,17z/data=!3m1!4b1!4m2!3m1!1s0x89b1113b6edba73d:0xbd961feff3048a15',1780,0,'external'),
(13590,'http://www.easternwineryexposition.com/registration/',1744,0,'external'),
(13591,'mailto:info@activeclubsolutions.net',1702,0,'external'),
(13592,'http://wineindustryexpo.us5.list-manage.com/track/click?u=4514823c73394431c2c9a58f3&amp;id=7de8323af7&amp;e=9b3389cc15',1700,0,'external'),
(13593,'mailto:Dan@activeclubsolutions.net',1672,0,'external'),
(13594,'mailto:Solutions@OpenEdgePay.com',1672,0,'external'),
(13595,'/active-club-solutions-partners/',1534,1436,'internal'),
(13596,'/contact-active-club-solutions/',1528,508,'internal'),
(13597,'/wine-club-software-pricing/pro-wine-club-software-pricing/',1521,0,'internal'),
(13598,'/wine-club-software-pricing/enterprise-wine-club-software-pricing/',1521,0,'internal'),
(13599,'/contact-active-club-solutions/',1521,508,'internal'),
(13600,'mailto:dan@activeclubsolutions.net',1519,0,'external'),
(13601,'/contact-active-club-solutions/',1517,508,'internal'),
(13708,'https://player.vimeo.com/video/771885896',4094,0,'external'),
(13709,'https://player.vimeo.com/video/771885896',4094,0,'external'),
(13710,'https://www.secureclub.net/Help/amo/index.html',4094,0,'external'),
(13711,'https://player.vimeo.com/video/707078503',4050,0,'external'),
(13712,'https://player.vimeo.com/video/707078503',4050,0,'external'),
(13713,'https://www.secureclub.net/Help/amo/index.html',4050,0,'external'),
(13744,'https://www.secureclub.net/Help/amo/index.html?ml_MktgList-Sked.html',4121,0,'external'),
(13745,'https://www.secureclub.net/Help/amo/index.html?ml_MktgList-SkedTxt.html',4129,0,'external'),
(13748,'https://www.secureclub.net/Help/amo/index.html?ml_ClubList-Alloc.html',4080,0,'external'),
(13749,'https://player.vimeo.com/video/770095795',4080,0,'external'),
(13750,'https://player.vimeo.com/video/770095795',4080,0,'external'),
(13751,'https://www.secureclub.net/Help/amo/index.html',4080,0,'external'),
(13752,'https://www.secureclub.net/Help/amo/index.html?ml_Templates-Custom.html#add',4043,0,'external'),
(13753,'https://player.vimeo.com/video/702255574',4043,0,'external'),
(13754,'https://player.vimeo.com/video/702255574',4043,0,'external'),
(13755,'https://www.secureclub.net/Help/amo/index.html?ml_ClubList-Choice.html#xactn',4114,0,'external'),
(13756,'https://www.secureclub.net/Help/amo/index.html?ml_PkgList.html#xactn',4111,0,'external'),
(13765,'https://www.secureclub.net/Help/webpos/index.html?wpos_tools.html#reader',4140,0,'external'),
(13767,'https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png',4151,0,'internal'),
(13770,'https://activeclubsolutions.net/wp-content/uploads/2023/08/Referral-campaign-300-px.png',4155,0,'internal'),
(13771,'mailto:sales@activeclubsolutions.com?subject=Customer%20referral',4155,0,'external'),
(13777,'https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png',4159,0,'internal'),
(13778,'https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png',4159,0,'internal'),
(13783,'https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png',4163,0,'internal'),
(13784,'https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png',4163,0,'internal'),
(13789,'https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png',4167,0,'internal'),
(13790,'https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png',4167,0,'internal'),
(13801,'https://activeclubsolutions.net/wp-content/uploads/2023/10/Tock-blue.png',4169,0,'internal'),
(13802,'https://activeclubsolutions.net/wp-content/uploads/2023/07/Done.png',4169,0,'internal'),
(13816,'https://activeclubsolutions.net/wp-content/uploads/2023/11/Untitled-design-7.png',4173,0,'internal'),
(13822,'https://activeclubsolutions.net/wp-content/uploads/2023/08/Release-notes.png',4178,0,'internal'),
(13852,'https://activeclubsolutions.net/wp-content/uploads/2024/02/Tock-Integration.png',4194,0,'internal'),
(13853,'https://player.vimeo.com/video/914938333',4194,0,'external'),
(13854,'mailto:support@activeclubsolutions.com',4194,0,'external'),
(13861,'https://activeclubsolutions.net/wp-content/uploads/2024/03/GLS-Integration.png',4198,0,'internal'),
(13865,'https://activeclubsolutions.net/wp-content/uploads/2024/03/Cloud-login.gif',4201,0,'internal'),
(13897,'https://activeclubsolutions.net/wp-content/uploads/2024/03/Feed-pics-3.gif',4206,0,'internal'),
(13898,'https://secureclubut.net/help/amo/ml_login.html',4206,0,'external'),
(13908,'https://activeclubsolutions.net/wp-content/uploads/2024/04/Feed-pics-2.gif',4211,0,'internal'),
(13909,'https://try.clearent.com/activeclubsolutions/',4211,0,'external'),
(13913,'https://activeclubsolutions.net/wp-content/uploads/2024/05/Feed-pics-4.gif',4221,0,'internal'),
(13933,'https://activeclubsolutions.net/wp-content/uploads/2024/05/smiling-waitress-using-a8-system-less-blur-scaled.jpg',4225,0,'internal'),
(13934,'http://https//try.clearent.com/activeclubsolutions/',4225,0,'external'),
(13935,'http://https//go.worldpay.com/activeclub.html',4225,0,'external'),
(13936,'https://activeclubsolutions.net/wp-content/uploads/2024/04/Feed-pics.png',4217,0,'internal'),
(13937,'mailto:support@activeclubsolutions.com',4217,0,'external'),
(13940,'https://activeclubsolutions.net/wp-content/uploads/2023/12/Timeclock2.png',4180,0,'internal'),
(14243,'/winery-pos-features/ipad-winery-pos',848,1796,'internal'),
(14244,'/winery-pos-features/wine-club-management',848,1493,'internal'),
(14245,'/winery-pos-features/winery-ecommerce',848,1497,'internal'),
(14246,'/winery-pos-features/marketing-crm-customer-service',848,1494,'internal'),
(14247,'/winery-pos-features/ipad-winery-pos/',848,1796,'internal'),
(14248,'/winery-pos-features/wine-club-management/',848,1493,'internal'),
(14249,'/winery-pos-features/winery-ecommerce/',848,1497,'internal'),
(14250,'/winery-pos-features/winery-software-technology/',848,1498,'internal'),
(14251,'/winery-pos-features/marketing-crm-customer-service/',848,1494,'internal'),
(14252,'/winery-pos-features/winery-software-technology/',848,1498,'internal'),
(14253,'/winery-pos-features/platform/web-design-portfolio/',848,3275,'internal'),
(14254,'/winery-pos-features/free-expert-technical-support/',848,1496,'internal'),
(14255,'/winery-pos-features/integrated-certified/',848,1495,'internal'),
(14256,'/winery-pos-features/ipad-winery-pos',848,1796,'internal'),
(14257,'/wp-content/uploads/2017/04/mpopandipad-blue.png',992,0,'internal'),
(14258,'https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/',2766,1796,'internal'),
(14259,'https://activeclubsolutions.net/winery-pos-features/wine-club-management/',2766,1493,'internal'),
(14260,'/wine-club-software-pricing/winery-website-shopping-cart/',2766,0,'internal'),
(14261,'https://www.secureclub.net/demodb_6/scenario.aspx?scenario=1',2766,0,'external'),
(14262,'https://www.secureclub.net/demodb_6/scenario.aspx?scenario=4',2766,0,'external'),
(14263,'https://www.secureclub.net/demodb_6/scenario.aspx?scenario=7',2766,0,'external'),
(14264,'https://www.secureclub.net/demodb_6/scenario.aspx?scenario=5',2766,0,'external'),
(14265,'https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/',1435,1796,'internal'),
(14266,'https://activeclubsolutions.net/winery-pos-features/wine-club-management/',1435,1493,'internal'),
(14267,'https://activeclubsolutions.net/winery-pos-features/winery-ecommerce/',1435,1497,'internal'),
(14268,'https://activeclubsolutions.net/winery-pos-features/ipad-winery-pos/',1435,1796,'internal'),
(14269,'https://activeclubsolutions.net/winery-pos-features/wine-club-management/',1435,1493,'internal'),
(14270,'https://activeclubsolutions.net/winery-pos-features/winery-ecommerce/',1435,1497,'internal'),
(14271,'/winery-pos-features/ipad-winery-pos/',1435,1796,'internal'),
(14272,'/winery-pos-features/wine-club-management/',1435,1493,'internal'),
(14273,'/wine-club-software-features/free-expert-technical-support/',1435,0,'internal'),
(14274,'/wine-club-software-features/integrated-certified/',1435,0,'internal'),
(14275,'/wine-club-software-features/accounting/',1435,0,'internal'),
(14276,'/wine-club-software-features/marketing-crm-customer-service/',1435,0,'internal'),
(14277,'/wine-club-software-features/mobile-dashboards/',1435,0,'internal'),
(14278,'/winery-pos-features/winery-ecommerce/',1435,1497,'internal'),
(14279,'/winery-pos-features/winery-software-technology/',1435,1498,'internal'),
(14280,'/active-club-solutions-partners/shipping-fulfillment-partners/',1436,1587,'internal'),
(14281,'/active-club-solutions-partners/shipping-fulfillment-partners/',1436,1587,'internal'),
(14282,'/active-club-solutions-partners/shipping-fulfillment-partners/',1436,1587,'internal'),
(14283,'/active-club-solutions-partners/payment-processing-partners/',1436,1589,'internal'),
(14284,'/active-club-solutions-partners/payment-processing-partners/',1436,1589,'internal'),
(14285,'/winery-pos-features/accounting/',1436,1590,'internal'),
(14286,'/active-club-solutions-partners/compliance-providers/',1436,1591,'internal'),
(14287,'/active-club-solutions-partners/website-marketing-media/',1436,1592,'internal'),
(14288,'/active-club-solutions-partners/website-marketing-media/',1436,1592,'internal'),
(14289,'/active-club-solutions-partners/website-marketing-media/',1436,1592,'internal'),
(14290,'/active-club-solutions-partners/website-marketing-media/',1436,1592,'internal'),
(14291,'/active-club-solutions-partners/misc-integrated-services/',1436,1593,'internal'),
(14292,'/winery-pos-features/accounting',1436,1590,'internal'),
(14293,'/active-club-solutions-partners/compliance-providers',1436,1591,'internal'),
(14294,'/active-club-solutions-partners/misc-integrated-services',1436,1593,'internal'),
(14295,'/active-club-solutions-partners/payment-processing-partners',1436,1589,'internal'),
(14296,'/active-club-solutions-partners/shipping-fulfillment-partners',1436,1587,'internal'),
(14297,'/active-club-solutions-partners/website-marketing-media',1436,1592,'internal'),
(14298,'https://www.secureclub.net/Help/webpos/index.html?wpos_start.html#browser',4231,0,'external'),
(14299,'https://www.secureclub.net/Help/webpos/index.html?wpos_tools.html#reader',4231,0,'external'),
(14300,'https://ingenico.com/us-en/products-services/payment-terminals/link2500-series',4231,0,'external'),
(14301,'https://ingenico.com/us-en/products-services/payment-terminals/lane3000',4231,0,'external'),
(14302,'https://ingenico.com/us-en/products-services/payment-terminals/lane7000-8000',4231,0,'external'),
(14303,'https://ingenico.com/us-en/products-services/payment-terminals/move5000',4231,0,'external'),
(14304,'https://www.verifone.com/en/us/devices/portables-transportables/v400m',4231,0,'external'),
(14305,'https://www.verifone.com/en/us/devices/mpos/e285',4231,0,'external'),
(14306,'https://www.verifone.com/en/us/devices/multilane/m400',4231,0,'external'),
(14307,'https://www.verifone.com/en/uk/devices/countertops-pinpads/p400',4231,0,'external'),
(14308,'https://www.dejavoosystems.com/',4231,0,'external'),
(14309,'https://www.pax.us/products/pin-pads/a35/',4231,0,'external'),
(14310,'https://www.pax.us/products/countertop/a80/',4231,0,'external'),
(14311,'https://www.pax.us/products/mobile/a920/',4231,0,'external'),
(14312,'https://www.pax.us/products/countertop-pin-pads/s300/',4231,0,'external'),
(14313,'https://www.pax.us/products/unattended-self-service/im30/',4231,0,'external'),
(14314,'https://www.secureclub.net/Help/webpos/index.html?wpos_tools.html#printer',4231,0,'external'),
(14315,'https://activeclubsolutions.net/wp-content/uploads/2024/06/printer.png',4231,0,'internal'),
(14316,'https://star-emea.com/pos-printers/',4231,0,'external'),
(14317,'https://www.secureclub.net/Help/webpos/wpos_tools.html#webprint',4231,0,'external'),
(14318,'https://www.secureclub.net/Help/webpos/index.html?wpos_tools.html#drawer',4231,0,'external'),
(14319,'https://activeclubsolutions.net/wp-content/uploads/2024/06/cash.png',4231,0,'internal'),
(14320,'https://www.starmicronics.com/pages/SMD2-1317',4231,0,'external'),
(14321,'https://www.secureclub.net/Help/amo/index.html?ml_StoreList-Actions-labels.html',4231,0,'external'),
(14322,'https://www.zebra.com/us/en/support-downloads/printers/desktop/zp450.html',4231,0,'external'),
(14323,'https://activeclubsolutions.net/wp-content/uploads/2024/06/label.png',4231,0,'internal'),
(14324,'https://www.zebra.com/us/en/support-downloads/printers/desktop/zp500.html',4231,0,'external'),
(14325,'https://www.zebra.com/us/en/products/spec-sheets/printers/desktop/zd420.html',4231,0,'external'),
(14326,'https://www.zebra.com/us/en/products/spec-sheets/printers/desktop/zd421-series.html',4231,0,'external'),
(14327,'https://www.zebra.com/us/en/products/spec-sheets/printers/desktop/zd220.html',4231,0,'external'),
(14328,'https://www.zebra.com/gb/en/products/spec-sheets/printers/desktop/zd230.html',4231,0,'external'),
(14329,'https://activeclubsolutions.net/wp-content/uploads/2024/06/barcode.png',4231,0,'internal'),
(14341,'https://activeclubsolutions.net/wp-content/uploads/2024/06/Feed-pics-5.gif',4236,0,'internal'),
(14342,'https://activeclubsolutions.net/wp-content/uploads/2024/06/tips.gif',4239,0,'internal'),
(14348,'https://activ8commerce.com/',4242,0,'external'),
(14349,'https://player.vimeo.com/video/749028821?h=886bbd9d97',4242,0,'external'),
(14350,'https://activ8commerce.com',4242,0,'external'),
(14351,'https://www.facebook.com/ActiveClubSolutions/',4242,0,'external'),
(14352,'https://www.linkedin.com/company/activ8-commerce/',4242,0,'external'),
(14356,'https://activeclubsolutions.net/wp-content/uploads/2024/07/Feed-pics-6.gif',4243,0,'internal'),
(14417,'https://activeclubsolutions.net/wp-content/uploads/2024/07/Feed-pics-6.gif',4251,0,'internal'),
(14419,'https://activeclubsolutions.net/wp-content/uploads/2024/07/Feed-pics-6.gif',4253,0,'internal'),
(14420,'https://activeclubsolutions.net/wp-content/uploads/2024/08/inventory-location-1.png',4253,0,'internal'),
(14421,'https://activeclubsolutions.net/wp-content/uploads/2024/07/ACTIV-POS-CLOUD.png',4230,0,'internal'),
(14462,'https://activeclubsolutions.net/wp-content/uploads/2024/07/ACTIV-POS-CLOUD.png',4257,0,'internal'),
(14463,'https://activeclubsolutions.net/wp-content/uploads/2024/10/Feed-pics-7.gif',4262,0,'internal'),
(14464,'https://activeclubsolutions.net/wp-content/uploads/2024/10/Cloudprint.png',4262,0,'internal'),
(14465,'https://activeclubsolutions.net/wp-content/uploads/2024/10/cat.png',4262,0,'internal'),
(14466,'https://activeclubsolutions.net/wp-content/uploads/2024/10/Dog.png',4262,0,'internal'),
(14467,'https://activeclubsolutions.net/wp-content/uploads/2024/10/club-type.png',4262,0,'internal'),
(14468,'https://activeclubsolutions.net/wp-content/uploads/2024/10/Images.gif',4259,0,'internal'),
(14469,'https://activeclubsolutions.net/wp-content/uploads/2024/10/image-library-product.png',4259,0,'internal'),
(14481,'https://activeclubsolutions.net/wp-content/uploads/2024/10/Feed-pics-1.png',4271,0,'internal'),
(14486,'https://activeclubsolutions.net/wp-content/uploads/2024/10/chipper.png',4274,0,'internal'),
(14498,'https://activeclubsolutions.net/wp-content/uploads/2024/11/where.gif',4276,0,'internal'),
(14499,'https://activeclubsolutions.net/wp-content/uploads/2024/11/videos-1.png',4276,0,'internal'),
(14500,'https://www.secureclub.net/Help/videos/index.html',4276,0,'external'),
(14511,'https://activeclubsolutions.net/wp-content/uploads/2024/11/Feed-pics-2.png',4281,0,'internal'),
(14512,'https://activeclubsolutions.net/wp-content/uploads/2024/11/Merge-two-customers-together-to-create-one-record.png',4281,0,'internal'),
(14531,'mailto:support@activeclubsolutions.com',4287,0,'external'),
(14565,'https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.gif',4300,0,'internal'),
(14566,'https://player.vimeo.com/video/1040822761',4300,0,'external'),
(14567,'https://player.vimeo.com/video/1040930215',4300,0,'external'),
(14580,'https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics-8.gif',4291,0,'internal'),
(14581,'https://activeclubsolutions.net/wp-content/uploads/2024/12/open-tab-1.png',4291,0,'internal'),
(14582,'https://activeclubsolutions.net/wp-content/uploads/2024/12/Table-seating.png',4291,0,'internal'),
(14598,'https://activeclubsolutions.net/wp-content/uploads/2024/12/profile.png',4297,0,'internal'),
(14599,'https://activ8commerce.com/activ8-commerce-client-updates/',4297,0,'external'),
(14600,'https://activ8commerce.com/activ8-commerce-client-updates/',4297,0,'external'),
(14601,'https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.png',4303,0,'internal'),
(14602,'mailto:Brandy@activeclubsolutions.com',4303,0,'external'),
(14624,'https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.png',4310,0,'internal'),
(14632,'https://activeclubsolutions.net/wp-content/uploads/2025/02/Feed-pics.png',4313,0,'internal'),
(14633,'https://activeclubsolutions.net/wp-content/uploads/2025/02/Feed-pics.png',4306,0,'internal'),
(14634,'mailto:Brandy@activeclubsolutions.com',4306,0,'external'),
(14658,'https://activeclubsolutions.net/wp-content/uploads/2025/03/Feed-pics.png',4314,0,'internal'),
(14659,'mailto:Brandy@activeclubsolutions.com',4314,0,'external'),
(14660,'https://activeclubsolutions.net/wp-content/uploads/2024/02/10877677.jpg',4190,0,'internal'),
(14661,'https://player.vimeo.com/video/908801765',4190,0,'external'),
(14665,'https://activeclubsolutions.net/wp-content/uploads/2025/03/Feed-pics.png',4317,0,'internal'),
(14680,'https://activeclubsolutions.net/wp-content/uploads/2025/04/Feed-pics-1.png',4324,0,'internal'),
(14681,'mailto:brandy@activeclubsolutions.com',4324,0,'external'),
(14687,'https://activeclubsolutions.net/wp-content/uploads/2025/04/Feed-pics-1.png',4327,0,'internal'),
(14692,'https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics.png',4329,0,'internal'),
(14696,'https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics-1.png',4332,0,'internal'),
(14702,'https://activeclubsolutions.net/wp-content/uploads/2025/05/Feed-pics.gif',4334,0,'internal'),
(14707,'https://activeclubsolutions.net/wp-content/uploads/2025/06/26.png',4337,0,'internal'),
(14708,'https://activeclubsolutions.net/wp-content/uploads/2024/02/10877677.jpg',4319,0,'internal'),
(14709,'https://player.vimeo.com/video/908801765',4319,0,'external'),
(14728,'https://activeclubsolutions.net/wp-content/uploads/2025/04/Feed-pics.gif',4321,0,'internal'),
(14729,'https://activ8commerce.com/submit-your-referral/',4321,0,'external'),
(14734,'https://activeclubsolutions.net/wp-content/uploads/2025/08/Feed-pics.gif',4341,0,'internal'),
(14735,'https://activ8commerce.com/submit-your-referral/',4341,0,'external'),
(14736,'https://activeclubsolutions.net/wp-content/uploads/2025/03/Feed-pics.png',4343,0,'internal'),
(14737,'https://player.vimeo.com/video/1070434390',4343,0,'external'),
(14795,'https://activeclubsolutions.net/wp-content/uploads/2024/12/Feed-pics.png',4351,0,'internal'),
(14796,'https://player.vimeo.com/video/1045537937',4351,0,'external'),
(14797,'https://player.vimeo.com/video/1058791357',4351,0,'external'),
(14798,'https://player.vimeo.com/video/1070434390',4351,0,'external'),
(14799,'https://player.vimeo.com/video/1082254641',4351,0,'external'),
(14800,'https://player.vimeo.com/video/1115988196',4351,0,'external'),
(14803,'https://activeclubsolutions.net/wp-content/uploads/2025/08/webinar-news.png',4353,0,'internal'),
(14804,'https://player.vimeo.com/video/1115988196',4353,0,'external'),
(14805,'https://activeclubsolutions.net/wp-content/uploads/2025/08/webinar-news.png',4348,0,'internal'),
(14807,'https://activeclubsolutions.net/wp-content/uploads/2025/08/SHopify-feed.png',4345,0,'internal'),
(14812,'https://activeclubsolutions.net/wp-content/uploads/2025/09/New-Shopify-Feed.png',4354,0,'internal'),
(14837,'https://activeclubsolutions.net/wp-content/uploads/2025/10/Feed-pics.gif',4357,0,'internal'),
(14838,'https://activeclubsolutions.net/wp-content/uploads/2025/10/filters.png',4357,0,'internal'),
(14857,'https://activeclubsolutions.net/wp-content/uploads/2025/11/Feed-pics-1.gif',4363,0,'internal'),
(14858,'https://v.ringcentral.com/join/632623601',4363,0,'external'),
(14859,'https://activeclubsolutions.net/wp-content/uploads/2025/10/Feed-pics-1.gif',4361,0,'internal'),
(14860,'https://v.ringcentral.com/join/632623601',4361,0,'external'),
(14869,'https://activeclubsolutions.net/wp-content/uploads/2025/11/Feed-pics-1.png',4365,0,'internal'),
(14870,'https://v.ringcentral.com/join/632623601',4365,0,'external');
/*!40000 ALTER TABLE `wpqk_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpqk_yoast_seo_meta`
--

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

--
-- Dumping data for table `wpqk_yoast_seo_meta`
--

LOCK TABLES `wpqk_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wpqk_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wpqk_yoast_seo_meta` VALUES
(508,2,4),
(848,14,1),
(992,1,0),
(1430,0,0),
(1432,0,0),
(1435,15,2),
(1436,18,2),
(1438,0,7),
(1459,0,1),
(1493,8,21),
(1494,8,2),
(1495,10,1),
(1496,NULL,1),
(1497,30,14),
(1498,10,17),
(1517,1,0),
(1519,0,0),
(1521,3,0),
(1524,0,0),
(1526,0,0),
(1528,1,0),
(1530,0,0),
(1531,0,0),
(1532,0,0),
(1534,1,0),
(1537,0,0),
(1587,6,11),
(1589,5,10),
(1590,7,10),
(1591,5,9),
(1592,5,12),
(1593,6,8),
(1621,0,0),
(1628,0,0),
(1634,0,0),
(1636,0,0),
(1639,0,0),
(1640,0,0),
(1672,0,0),
(1691,0,0),
(1692,0,0),
(1694,0,0),
(1697,0,0),
(1700,0,0),
(1702,0,0),
(1742,0,0),
(1744,0,0),
(1753,4,1),
(1772,0,0),
(1777,7,1),
(1780,0,0),
(1782,0,0),
(1786,1,0),
(1796,28,28),
(1811,0,0),
(1832,0,0),
(1867,4,0),
(1868,4,1),
(1870,0,1),
(1872,0,0),
(1873,0,0),
(1874,0,0),
(1879,0,0),
(1882,0,0),
(1894,0,0),
(1896,0,0),
(1920,0,0),
(1929,0,0),
(1930,0,0),
(1940,0,0),
(1947,0,0),
(2061,0,0),
(2066,0,2),
(2084,0,2),
(2108,0,0),
(2114,0,0),
(2122,0,1),
(2125,0,0),
(2136,0,0),
(2157,11,0),
(2170,0,0),
(2194,0,1),
(2248,0,0),
(2268,0,0),
(2300,0,0),
(2325,0,0),
(2352,0,0),
(2360,0,0),
(2361,0,0),
(2382,0,0),
(2387,0,0),
(2405,0,0),
(2407,0,1),
(2416,0,0),
(2420,0,0),
(2424,0,1),
(2450,0,1),
(2454,0,1),
(2462,0,0),
(2485,0,2),
(2499,0,0),
(2501,0,0),
(2538,0,0),
(2571,0,0),
(2588,0,0),
(2670,0,0),
(2691,0,0),
(2722,0,0),
(2733,0,0),
(2738,0,0),
(2744,0,0),
(2766,3,0),
(2772,0,0),
(2774,0,0),
(2776,0,0),
(2795,0,0),
(2816,0,0),
(2857,0,0),
(2860,0,0),
(2892,0,0),
(2901,0,0),
(2906,0,0),
(2913,0,0),
(2917,0,0),
(2929,1,0),
(2945,0,0),
(2948,0,0),
(2949,0,0),
(2950,0,0),
(2952,0,0),
(2957,12,0),
(2959,12,4),
(2964,9,1),
(2971,9,2),
(2974,9,2),
(2976,9,2),
(2991,0,0),
(2994,0,0),
(3006,0,0),
(3011,0,0),
(3012,0,0),
(3013,0,0),
(3014,0,0),
(3016,0,0),
(3017,0,0),
(3018,0,0),
(3019,0,0),
(3020,0,0),
(3021,0,0),
(3023,0,0),
(3024,0,2),
(3025,0,0),
(3026,0,0),
(3027,0,0),
(3028,0,0),
(3029,0,0),
(3030,0,0),
(3031,0,0),
(3033,0,0),
(3035,0,0),
(3036,0,0),
(3039,0,0),
(3041,0,0),
(3042,0,0),
(3043,0,0),
(3045,0,0),
(3046,0,0),
(3047,0,0),
(3049,0,0),
(3050,0,0),
(3051,0,0),
(3052,0,0),
(3053,0,0),
(3055,0,0),
(3056,0,2),
(3057,0,0),
(3058,0,0),
(3059,0,0),
(3060,0,0),
(3061,0,0),
(3062,0,0),
(3063,0,0),
(3064,0,0),
(3065,0,0),
(3066,0,0),
(3067,0,0),
(3068,0,0),
(3069,0,0),
(3070,1,0),
(3073,1,0),
(3075,1,0),
(3077,1,0),
(3078,1,0),
(3080,1,0),
(3082,1,0),
(3084,1,0),
(3085,0,0),
(3087,1,0),
(3089,1,0),
(3091,0,0),
(3092,0,0),
(3093,0,0),
(3094,0,0),
(3095,0,0),
(3096,0,0),
(3097,0,0),
(3098,0,0),
(3100,0,0),
(3101,0,0),
(3102,1,0),
(3105,0,0),
(3106,0,0),
(3107,0,0),
(3108,1,0),
(3110,0,0),
(3111,0,0),
(3112,0,0),
(3113,1,0),
(3115,0,0),
(3116,0,0),
(3117,1,0),
(3119,0,0),
(3120,0,0),
(3121,0,0),
(3122,0,0),
(3123,0,0),
(3125,0,0),
(3126,0,0),
(3127,0,0),
(3128,0,0),
(3130,0,0),
(3131,0,0),
(3132,0,0),
(3133,0,0),
(3134,0,0),
(3135,0,0),
(3136,0,0),
(3137,0,0),
(3138,0,0),
(3139,0,0),
(3140,0,0),
(3141,0,0),
(3142,0,0),
(3143,0,0),
(3144,0,0),
(3145,0,0),
(3146,0,0),
(3147,0,0),
(3148,0,0),
(3149,0,0),
(3150,0,0),
(3151,0,0),
(3152,0,0),
(3153,0,0),
(3154,0,0),
(3155,0,0),
(3156,0,0),
(3157,0,0),
(3158,0,2),
(3159,0,0),
(3160,0,0),
(3161,0,0),
(3162,0,2),
(3163,0,0),
(3164,0,0),
(3165,0,0),
(3166,0,0),
(3167,0,0),
(3168,0,0),
(3169,0,0),
(3170,0,0),
(3171,0,0),
(3172,0,0),
(3173,0,0),
(3174,0,0),
(3175,0,0),
(3176,0,0),
(3177,0,0),
(3179,0,0),
(3180,0,0),
(3183,0,0),
(3185,0,0),
(3186,0,0),
(3187,0,0),
(3188,1,0),
(3190,0,0),
(3191,0,0),
(3192,0,0),
(3193,0,0),
(3194,0,0),
(3195,0,0),
(3196,0,0),
(3197,0,0),
(3198,0,0),
(3199,0,2),
(3200,0,0),
(3201,0,0),
(3202,0,0),
(3203,0,0),
(3204,0,0),
(3205,0,0),
(3206,0,0),
(3207,0,0),
(3208,0,0),
(3209,0,0),
(3210,0,0),
(3211,0,0),
(3212,0,0),
(3213,0,0),
(3223,0,0),
(3224,0,0),
(3226,0,0),
(3227,0,0),
(3228,0,0),
(3229,0,0),
(3230,0,0),
(3231,0,0),
(3232,0,0),
(3233,0,0),
(3235,0,0),
(3236,0,0),
(3238,0,0),
(3239,0,0),
(3240,0,0),
(3241,0,0),
(3242,0,0),
(3243,0,0),
(3244,0,0),
(3245,0,0),
(3246,0,0),
(3247,0,0),
(3248,0,0),
(3249,0,0),
(3250,0,0),
(3251,0,0),
(3252,0,0),
(3253,0,0),
(3254,0,0),
(3255,0,0),
(3256,0,0),
(3257,0,0),
(3258,0,0),
(3259,0,0),
(3260,0,0),
(3261,0,0),
(3262,0,0),
(3263,0,0),
(3264,0,0),
(3265,0,0),
(3266,0,0),
(3267,1,0),
(3270,0,0),
(3272,0,0),
(3274,0,0),
(3275,15,3),
(3276,0,0),
(3277,0,0),
(3278,0,0),
(3279,0,0),
(3282,0,0),
(3283,0,0),
(3284,0,0),
(3285,0,0),
(3286,0,0),
(3287,0,0),
(3292,0,0),
(3293,0,0),
(3294,0,0),
(3295,0,0),
(3297,0,0),
(3299,0,0),
(3301,0,0),
(3302,0,0),
(3303,0,0),
(3304,0,0),
(3305,0,0),
(3306,0,0),
(3307,0,0),
(3308,0,0),
(3309,0,0),
(3311,0,0),
(3312,0,0),
(3313,0,0),
(3314,0,0),
(3315,0,0),
(3316,0,0),
(3317,0,0),
(3318,0,0),
(3319,0,0),
(3320,0,0),
(3321,0,0),
(3323,0,0),
(3325,0,0),
(3328,0,0),
(3329,0,0),
(3332,0,0),
(3333,0,0),
(3334,0,0),
(3335,0,0),
(3336,0,0),
(3337,0,0),
(3338,0,0),
(3339,0,0),
(3340,0,0),
(3341,0,0),
(3342,0,0),
(3343,0,0),
(3344,0,0),
(3345,6,0),
(3346,0,0),
(3347,0,0),
(3348,0,0),
(3349,0,0),
(3350,0,0),
(3352,0,0),
(3353,0,0),
(3354,0,0),
(3355,0,0),
(3356,0,0),
(3357,0,0),
(3358,0,0),
(3359,0,0),
(3360,0,0),
(3361,0,0),
(3362,0,0),
(3363,0,0),
(3365,0,0),
(3367,0,0),
(3368,0,0),
(3369,0,0),
(3370,0,0),
(3371,0,0),
(3373,0,0),
(3377,0,0),
(3379,0,0),
(3386,0,0),
(3390,0,0),
(3391,0,0),
(3393,0,0),
(3396,0,0),
(3402,0,0),
(3403,0,0),
(3404,0,0),
(3406,0,0),
(3415,0,0),
(3416,0,0),
(3417,0,0),
(3421,0,0),
(3422,0,0),
(3423,0,0),
(3424,1,0),
(3426,1,0),
(3427,0,0),
(3428,0,0),
(3429,0,0),
(3430,0,0),
(3431,0,0),
(3432,0,0),
(3433,0,0),
(3434,0,0),
(3436,0,0),
(3437,0,0),
(3438,0,0),
(3439,0,0),
(3440,0,0),
(3441,0,0),
(3443,0,0),
(3444,0,0),
(3445,0,0),
(3447,5,0),
(3448,0,0),
(3450,0,0),
(3453,0,0),
(3454,0,0),
(3455,0,0),
(3456,0,0),
(3457,0,0),
(3458,0,0),
(3459,0,0),
(3460,0,0),
(3461,0,0),
(3463,0,0),
(3465,0,0),
(3466,1,0),
(3467,0,0),
(3469,0,0),
(3470,0,0),
(3471,0,0),
(3472,0,0),
(3473,0,0),
(3474,0,0),
(3475,0,0),
(3476,0,0),
(3477,0,0),
(3478,0,0),
(3479,0,0),
(3480,0,0),
(3483,0,0),
(3491,0,0),
(3492,0,0),
(3493,0,0),
(3496,0,0),
(3497,0,0),
(3498,0,0),
(3499,0,0),
(3500,0,0),
(3501,0,0),
(3502,0,0),
(3503,0,0),
(3504,0,0),
(3505,0,0),
(3506,0,0),
(3507,0,0),
(3508,0,0),
(3510,0,0),
(3511,0,0),
(3512,0,0),
(3513,0,0),
(3514,0,0),
(3516,0,0),
(3517,0,0),
(3518,0,0),
(3519,0,0),
(3520,0,0),
(3521,0,0),
(3522,0,0),
(3523,0,0),
(3524,0,0),
(3525,0,0),
(3526,0,0),
(3527,0,0),
(3528,0,0),
(3529,0,0),
(3530,0,0),
(3531,0,0),
(3532,0,0),
(3533,0,0),
(3534,0,0),
(3535,0,0),
(3536,0,0),
(3537,0,0),
(3538,0,0),
(3539,0,0),
(3540,0,0),
(3541,0,0),
(3542,0,0),
(3543,0,0),
(3544,0,0),
(3545,0,0),
(3546,0,0),
(3547,0,0),
(3548,0,0),
(3549,0,0),
(3550,0,0),
(3552,0,0),
(3554,0,0),
(3556,0,0),
(3557,0,0),
(3558,0,0),
(3559,0,0),
(3560,0,0),
(3561,0,0),
(3562,0,0),
(3563,0,0),
(3564,0,0),
(3566,0,0),
(3567,0,0),
(3569,0,0),
(3570,0,0),
(3571,0,0),
(3572,0,0),
(3573,0,0),
(3574,0,0),
(3575,0,0),
(3576,0,0),
(3577,0,0),
(3578,0,0),
(3580,0,0),
(3581,0,0),
(3582,0,0),
(3584,0,0),
(3585,0,0),
(3586,0,0),
(3587,15,0),
(3588,0,0),
(3589,0,1),
(3590,0,0),
(3591,0,1),
(3592,0,0),
(3593,0,1),
(3594,0,1),
(3595,0,0),
(3596,0,0),
(3597,0,0),
(3598,0,0),
(3599,0,0),
(3600,0,0),
(3601,0,0),
(3602,0,0),
(3603,0,0),
(3604,0,0),
(3605,0,0),
(3607,0,0),
(3608,0,0),
(3609,0,0),
(3610,0,0),
(3612,0,0),
(3613,0,0),
(3614,0,0),
(3615,0,0),
(3616,0,0),
(3617,0,0),
(3618,0,0),
(3619,0,0),
(3621,0,0),
(3622,0,0),
(3624,0,0),
(3625,0,0),
(3626,0,0),
(3627,0,0),
(3628,0,0),
(3629,0,0),
(3630,0,0),
(3631,0,0),
(3632,0,0),
(3633,0,0),
(3634,0,0),
(3637,0,0),
(3639,0,0),
(3640,0,0),
(3641,0,0),
(3642,0,0),
(3644,0,0),
(3645,0,0),
(3646,0,0),
(3647,0,0),
(3648,0,0),
(3649,0,0),
(3650,0,0),
(3651,0,0),
(3652,0,0),
(3654,0,0),
(3655,0,0),
(3657,0,0),
(3658,0,0),
(3659,0,0),
(3660,0,0),
(3661,1,0),
(3663,0,0),
(3664,0,0),
(3665,0,0),
(3666,0,0),
(3667,0,0),
(3668,0,0),
(3669,0,0),
(3670,0,0),
(3671,0,0),
(3672,0,0),
(3673,1,0),
(3675,0,0),
(3676,2,0),
(3677,0,0),
(3678,0,0),
(3679,0,0),
(3680,1,0),
(3682,0,0),
(3683,0,0),
(3684,0,0),
(3686,0,0),
(3687,0,0),
(3688,0,0),
(3689,0,0),
(3690,0,0),
(3691,0,0),
(3692,0,0),
(3693,0,0),
(3694,0,0),
(3695,0,0),
(3696,0,0),
(3697,0,0),
(3698,0,0),
(3699,0,0),
(3700,0,0),
(3701,0,0),
(3702,0,0),
(3703,0,0),
(3704,0,0),
(3705,0,0),
(3706,0,0),
(3707,0,0),
(3708,0,0),
(3709,0,0),
(3710,0,0),
(3711,0,0),
(3712,0,0),
(3713,0,0),
(3714,0,0),
(3715,0,0),
(3716,0,0),
(3717,0,0),
(3718,0,0),
(3719,0,0),
(3721,0,0),
(3722,0,0),
(3727,0,0),
(3729,0,0),
(3733,0,0),
(3734,0,0),
(3736,0,2),
(3737,0,0),
(3738,0,0),
(3740,0,0),
(3743,0,0),
(3744,0,0),
(3745,0,0),
(3747,0,0),
(3748,0,2),
(3749,0,0),
(3751,0,0),
(3752,0,0),
(3754,0,0),
(3755,0,0),
(3756,0,2),
(3757,0,0),
(3759,0,0),
(3761,0,0),
(3762,11,0),
(3765,0,0),
(3766,0,0),
(3767,0,0),
(3768,0,0),
(3769,0,0),
(3770,0,0),
(3771,0,0),
(3777,0,0),
(3778,0,0),
(3786,0,0),
(3787,0,0),
(3789,0,0),
(3790,0,0),
(3801,0,0),
(3802,0,0),
(3803,0,0),
(3804,0,0),
(3805,0,0),
(3806,0,0),
(3807,0,0),
(3810,0,0),
(3811,0,0),
(3812,0,0),
(3814,0,0),
(3815,0,0),
(3816,0,0),
(3817,0,0),
(3818,0,0),
(3819,0,0),
(3820,0,0),
(3821,0,0),
(3822,0,0),
(3823,0,0),
(3824,0,0),
(3825,0,0),
(3827,0,0),
(3828,0,0),
(3829,0,0),
(3830,0,0),
(3831,0,0),
(3833,0,0),
(3834,0,0),
(3835,0,0),
(3836,0,0),
(3837,0,0),
(3838,0,0),
(3839,0,0),
(3840,0,0),
(3841,0,0),
(3842,0,0),
(3844,0,0),
(3847,0,0),
(3848,0,0),
(3849,0,0),
(3851,0,0),
(3854,0,0),
(3855,0,0),
(3857,0,0),
(3858,0,0),
(3860,0,0),
(3861,0,0),
(3862,0,0),
(3864,0,0),
(3865,0,0),
(3866,0,0),
(3868,0,0),
(3870,0,0),
(3871,0,0),
(3872,0,0),
(3873,0,0),
(3875,0,0),
(3876,0,0),
(3877,0,0),
(3879,0,0),
(3881,0,0),
(3882,0,0),
(3883,0,0),
(3884,0,0),
(3886,0,0),
(3887,0,0),
(3890,0,0),
(3891,0,0),
(3894,0,0),
(3895,0,0),
(3896,0,0),
(3897,0,0),
(3900,0,0),
(3901,0,0),
(3902,0,0),
(3905,0,0),
(3906,0,0),
(3907,0,0),
(3909,0,0),
(3910,0,0),
(3913,0,0),
(3914,0,0),
(3916,0,0),
(3919,0,0),
(3920,0,0),
(3921,0,0),
(3924,0,0),
(3926,0,0),
(3930,0,0),
(3932,0,0),
(3933,0,0),
(3934,0,0),
(3936,0,0),
(3937,0,0),
(3939,0,0),
(3940,0,0),
(3941,0,0),
(3942,0,0),
(3943,0,0),
(3944,0,0),
(3945,0,0),
(3950,0,0),
(3952,0,0),
(3953,0,0),
(3955,0,0),
(3957,0,0),
(3959,0,0),
(3960,0,0),
(3961,0,0),
(3963,0,0),
(3964,0,0),
(3968,0,0),
(3969,0,0),
(3971,0,0),
(3974,0,0),
(3975,0,0),
(3976,0,0),
(3979,0,0),
(3981,0,0),
(3984,0,0),
(3986,0,0),
(3987,0,0),
(3988,0,0),
(3989,0,0),
(3991,0,0),
(3992,0,0),
(3994,0,0),
(3996,0,0),
(3997,0,0),
(3999,0,0),
(4005,0,0),
(4006,0,0),
(4009,0,0),
(4010,0,0),
(4011,0,0),
(4013,0,0),
(4015,0,0),
(4018,0,0),
(4019,0,0),
(4020,0,0),
(4022,0,0),
(4023,0,0),
(4025,0,0),
(4026,0,0),
(4028,0,0),
(4029,0,0),
(4031,0,0),
(4032,0,0),
(4036,0,0),
(4037,0,0),
(4041,0,0),
(4043,0,0),
(4044,0,0),
(4047,0,0),
(4049,0,0),
(4050,0,0),
(4051,0,0),
(4053,0,0),
(4057,0,0),
(4058,0,0),
(4059,0,0),
(4062,0,0),
(4069,0,0),
(4071,0,0),
(4072,0,0),
(4073,0,0),
(4075,0,0),
(4076,0,0),
(4077,0,0),
(4078,0,0),
(4079,0,0),
(4080,0,0),
(4081,0,0),
(4082,0,0),
(4085,0,0),
(4088,0,0),
(4089,0,0),
(4090,0,0),
(4093,0,0),
(4094,0,0),
(4095,0,0),
(4096,0,0),
(4097,0,0),
(4101,0,0),
(4102,0,0),
(4104,0,0),
(4106,0,0),
(4107,0,0),
(4108,0,0),
(4111,0,0),
(4114,0,0),
(4116,0,0),
(4120,0,0),
(4121,0,0),
(4123,0,0),
(4126,0,0),
(4129,0,0),
(4134,0,0),
(4135,0,0),
(4138,0,0),
(4139,0,0),
(4140,0,0),
(4142,0,0),
(4145,0,0),
(4147,0,0),
(4149,0,0),
(4151,1,0),
(4155,1,0),
(4159,2,0),
(4163,2,0),
(4166,0,0),
(4167,2,0),
(4169,2,0),
(4173,1,0),
(4178,1,0),
(4180,1,0),
(4187,0,0),
(4190,1,0),
(4194,1,0),
(4198,1,0),
(4201,1,0),
(4206,1,0),
(4211,1,0),
(4217,1,0),
(4221,1,0),
(4225,1,0),
(4229,0,0),
(4230,1,0),
(4231,4,0),
(4236,1,0),
(4239,1,0),
(4242,0,0),
(4243,1,0),
(4246,0,0),
(4248,0,0),
(4249,0,0),
(4251,1,0),
(4253,2,0),
(4257,1,0),
(4259,2,0),
(4261,0,0),
(4262,5,0),
(4271,1,0),
(4274,1,0),
(4276,2,0),
(4281,2,0),
(4287,0,0),
(4290,0,0),
(4291,3,0),
(4297,1,0),
(4300,1,0),
(4303,1,0),
(4305,0,0),
(4306,1,0),
(4310,1,0),
(4312,0,0),
(4313,1,0),
(4314,1,0),
(4317,1,0),
(4319,1,0),
(4321,1,0),
(4324,1,0),
(4327,1,0),
(4329,1,0),
(4332,1,0),
(4334,1,0),
(4337,1,0),
(4341,1,0),
(4343,1,0),
(4345,1,0),
(4348,1,0),
(4351,1,0),
(4353,1,0),
(4354,1,0),
(4357,2,0),
(4360,0,0),
(4361,1,0),
(4363,1,0),
(4365,1,0);
/*!40000 ALTER TABLE `wpqk_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */;

-- Dump completed on 2025-11-15  5:31:48
